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