summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-06 07:11:23 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-06 07:11:23 -0600
commitb50cd425f73164a4e4d88dc783d623faa7ae8b6d (patch)
treed127796b1aaace65490d1a24f9999d7f9f77a1dc
parentd7adf70524254769f6e5a004d78ccf90965f70f6 (diff)
downloadnuttx-b50cd425f73164a4e4d88dc783d623faa7ae8b6d.tar.gz
nuttx-b50cd425f73164a4e4d88dc783d623faa7ae8b6d.tar.bz2
nuttx-b50cd425f73164a4e4d88dc783d623faa7ae8b6d.zip
Update csdtio too
-rw-r--r--nuttx/include/cxx/cstdio16
1 files changed, 15 insertions, 1 deletions
diff --git a/nuttx/include/cxx/cstdio b/nuttx/include/cxx/cstdio
index 1b31adb2b..3fb78ed80 100644
--- a/nuttx/include/cxx/cstdio
+++ b/nuttx/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
-