libCom/osi: fix recent epicsStdio.h change for gcc 2.x

This commit is contained in:
Ralph Lange
2018-10-08 15:46:50 +02:00
parent 62929fcbd1
commit 9943796f7f

View File

@@ -91,6 +91,7 @@ epicsShareFunc int epicsShareAPI epicsStdoutPutchar(int c);
}
/* Also pull functions into the std namespace (see lp:1786927) */
#if !defined(__GNUC__) || (__GNUC__ > 2)
namespace std {
using ::epicsGetStdin;
using ::epicsGetStdout;
@@ -99,6 +100,7 @@ using ::epicsStdoutPrintf;
using ::epicsStdoutPuts;
using ::epicsStdoutPutchar;
}
#endif /* __GNUC__ > 2 */
#endif /* __cplusplus */