OSDN Git Service

2002-10-30 Guido Serassio <serassio@libero.it>
authordannysmith <dannysmith>
Wed, 30 Oct 2002 01:07:53 +0000 (01:07 +0000)
committerdannysmith <dannysmith>
Wed, 30 Oct 2002 01:07:53 +0000 (01:07 +0000)
         * include/stdio.h (_getnaxstdio): Add prototype.
         (_setmaxstdio): Likewise.

winsup/mingw/ChangeLog
winsup/mingw/include/stdio.h

index 9eb37b3..0e187ad 100644 (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.
index c2917f3..6196cc0 100644 (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);