mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 10:50:07 +00:00
Update.
1998-09-06 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * libio/stdio.h: Fix comment. * stdio/stdio.h: Make vfscanf, vscanf and vsscanf available if __USE_ISOC9X.
This commit is contained in:
parent
6796bc807a
commit
2b33e5b0ff
@ -1,3 +1,10 @@
|
||||
1998-09-06 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
|
||||
|
||||
* libio/stdio.h: Fix comment.
|
||||
|
||||
* stdio/stdio.h: Make vfscanf, vscanf and vsscanf available if
|
||||
__USE_ISOC9X.
|
||||
|
||||
1998-09-06 09:53 -0400 Zack Weinberg <zack@rabi.phys.columbia.edu>
|
||||
|
||||
* Makeconfig (+gccwarn): Remove -Wno-parentheses.
|
||||
|
@ -350,7 +350,7 @@ extern int vsscanf __P ((__const char *__restrict __s,
|
||||
__const char *__restrict __format,
|
||||
_G_va_list __arg))
|
||||
__attribute__ ((__format__ (__scanf__, 2, 0)));
|
||||
#endif /* Use GNU. */
|
||||
#endif /* Use ISO C9x. */
|
||||
|
||||
|
||||
/* Read a character from STREAM. */
|
||||
|
@ -480,7 +480,7 @@ extern int scanf __P ((__const char *__restrict __format, ...));
|
||||
extern int sscanf __P ((__const char *__restrict __s,
|
||||
__const char *__restrict __format, ...));
|
||||
|
||||
#ifdef __USE_GNU
|
||||
#ifdef __USE_ISOC9X
|
||||
/* Read formatted input from S into argument list ARG. */
|
||||
extern int __vfscanf __P ((FILE *__s, __const char *__format,
|
||||
__gnuc_va_list __arg));
|
||||
@ -515,7 +515,7 @@ vsscanf (const char *__s, const char *__fmt, __gnuc_va_list __arg)
|
||||
return __vsscanf (__s, __fmt, __arg);
|
||||
}
|
||||
#endif /* Optimizing. */
|
||||
#endif /* Use GNU. */
|
||||
#endif /* Use ISO C9x. */
|
||||
|
||||
|
||||
/* This does actual reading when necessary, filling STREAM's
|
||||
|
Loading…
Reference in New Issue
Block a user