Update csdtio too

This commit is contained in:
Gregory Nutt 2014-11-06 07:11:23 -06:00
parent ee22104762
commit fecad1027c

View File

@ -53,11 +53,14 @@ namespace std
using ::fpos_t; using ::fpos_t;
using ::size_t; using ::size_t;
// Operations on streams (FILE)
using ::clearerr; using ::clearerr;
using ::fclose; using ::fclose;
using ::fflush; using ::fflush;
using ::feof; using ::feof;
using ::ferror; using ::ferror;
using ::fileno;
using ::fgetc; using ::fgetc;
using ::fgetpos; using ::fgetpos;
using ::fgets; using ::fgets;
@ -71,8 +74,11 @@ namespace std
using ::ftell; using ::ftell;
using ::fwrite; using ::fwrite;
using ::gets; using ::gets;
using ::gets_s;
using ::ungetc; using ::ungetc;
// Operations on the stdout stream, buffers, paths, and the whole printf-family
using ::printf; using ::printf;
using ::puts; using ::puts;
using ::rename; using ::rename;
@ -89,9 +95,17 @@ namespace std
using ::vsnprintf; using ::vsnprintf;
using ::vsscanf; using ::vsscanf;
// Operations on file descriptors including:
using ::fdopen; using ::fdopen;
using ::dprintf;
using ::vdprintf;
// Operations on paths
using ::statfs; using ::statfs;
using ::tmpnam;
using ::tempnam;
} }
#endif // __INCLUDE_CXX_CSTDIO #endif // __INCLUDE_CXX_CSTDIO