2002-10-30 Guido Serassio <serassio@libero.it>

* include/stdio.h (_getnaxstdio): Add prototype.
         (_setmaxstdio): Likewise.
This commit is contained in:
Danny Smith 2002-10-30 01:07:54 +00:00
parent aaa7b02155
commit 4c8eba2cf3
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-10-30 Guido Serassio <serassio@libero.it>
* include/stdio.h (_getnaxstdio): Add prototype.
(_setmaxstdio): Likewise.
2002-10-19 Kang Li <rubylith@users.sourceforge.net>
* include/fcntl.h (O_SEQUENTIAL): Correct typo.

View File

@ -323,7 +323,11 @@ int _fgetchar (void);
int _fputchar (int);
FILE* _fdopen (int, const char*);
int _fileno (FILE*);
int _fcloseall(void);
int _fcloseall(void);
#ifdef __MSVCRT__
int _getmaxstdio(void);
int _setmaxstdio(int);
#endif
#ifndef _NO_OLDNAMES
int fgetchar (void);