* libc/stdio/vfprintf.c [_WANT_IO_LONG_LONG]: Allow non-gcc
compilers. * libc/stdio/vfscanf.c: Likewise.
This commit is contained in:
parent
b2250c70bd
commit
8aab2bc260
|
@ -1,3 +1,9 @@
|
||||||
|
2007-05-18 Eric Blake <ebb9@byu.net>
|
||||||
|
|
||||||
|
* libc/stdio/vfprintf.c [_WANT_IO_LONG_LONG]: Allow non-gcc
|
||||||
|
compilers.
|
||||||
|
* libc/stdio/vfscanf.c: Likewise.
|
||||||
|
|
||||||
2007-05-17 Cary R. <cygcary <at> yahoo.com>
|
2007-05-17 Cary R. <cygcary <at> yahoo.com>
|
||||||
|
|
||||||
* libm/math/w_atan2.c: Fix atan2 to be consistent with glibc
|
* libm/math/w_atan2.c: Fix atan2 to be consistent with glibc
|
||||||
|
|
|
@ -153,7 +153,8 @@ static char *rcsid = "$Id$";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define _NO_LONGLONG
|
#define _NO_LONGLONG
|
||||||
#if defined _WANT_IO_LONG_LONG && defined __GNUC__
|
#if defined _WANT_IO_LONG_LONG \
|
||||||
|
&& (defined __GNUC__ || __STDC_VERSION__ >= 199901L)
|
||||||
# undef _NO_LONGLONG
|
# undef _NO_LONGLONG
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -164,7 +164,8 @@ extern _LONG_DOUBLE _strtold _PARAMS((char *s, char **sptr));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define _NO_LONGLONG
|
#define _NO_LONGLONG
|
||||||
#if defined _WANT_IO_LONG_LONG && defined __GNUC__
|
#if defined _WANT_IO_LONG_LONG \
|
||||||
|
&& (defined __GNUC__ || __STDC_VERSION__ >= 199901L)
|
||||||
# undef _NO_LONGLONG
|
# undef _NO_LONGLONG
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue