diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-01-08 01:18:40 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-01-08 01:18:40 +0000 |
commit | 4e3be9d6516dc645e183228aca43ef9b0a3e95e5 (patch) | |
tree | 082c175edae672d540e95f975323d71dd4315d2d | |
parent | 0fbfe2f7d86586aaba6e9e37c2dd081fba7a09dd (diff) | |
download | glibc-4e3be9d6516dc645e183228aca43ef9b0a3e95e5.tar glibc-4e3be9d6516dc645e183228aca43ef9b0a3e95e5.tar.gz glibc-4e3be9d6516dc645e183228aca43ef9b0a3e95e5.tar.bz2 glibc-4e3be9d6516dc645e183228aca43ef9b0a3e95e5.zip |
(vscanf): Fix definition for loser compilers.
-rw-r--r-- | libio/stdio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/stdio.h b/libio/stdio.h index 47c6cb0a90..1cbe9204ba 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -1,5 +1,5 @@ /* Define ISO C stdio on top of C++ iostreams. - Copyright (C) 1991,1994-2004,2005,2006,2007 Free Software Foundation, Inc. + Copyright (C) 1991, 1994-2007, 2008 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -492,7 +492,7 @@ extern int __isoc99_vsscanf (__const char *__restrict __s, __const char *__restrict __format, _G_va_list __arg) __THROW; # define vfscanf __isoc99_vfscanf -# define vscanf __isoc99_vsscanf +# define vscanf __isoc99_vscanf # define vsscanf __isoc99_vsscanf # endif # endif |