Add setbuf and setvbuf to cstdio.

This commit is contained in:
Gregory Nutt 2017-02-17 10:06:30 -06:00
parent 7a4d498b42
commit acf020c649
2 changed files with 3 additions and 1 deletions

View file

@ -76,6 +76,8 @@ namespace std
using ::fwrite;
using ::gets;
using ::gets_s;
using ::setbuf;
using ::setvbuf;
using ::ungetc;
// Operations on the stdout stream, buffers, paths, and the whole printf-family

View file

@ -92,8 +92,8 @@ namespace std
// Operations on file paths
using ::access;
using ::unlink;
using ::rmdir;
using ::unlink;
#ifdef CONFIG_PSEUDOFS_SOFTLINKS
using ::link;
using ::readlink;