* 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,10 +1,16 @@
|
|||
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>
|
||||
|
||||
* libm/math/w_atan2.c: Fix atan2 to be consistent with glibc
|
||||
(atan2(+0,-0), atan2(-0,-0) and atan(-0,+0))
|
||||
* libm/math/wf_atan2.c: Ditto.
|
||||
|
||||
2007-05-17 Yaakov Selkowitz <yselkowitz <at> users.sourceforge.net>
|
||||
2007-05-17 Yaakov Selkowitz <yselkowitz <at> users.sourceforge.net>
|
||||
|
||||
* libm/common/Makefile.am: Add support for exp10, exp10f,
|
||||
pow10, and pow10f functions.
|
||||
|
|
|
@ -153,7 +153,8 @@ static char *rcsid = "$Id$";
|
|||
#endif
|
||||
|
||||
#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
|
||||
#endif
|
||||
|
||||
|
|
|
@ -164,7 +164,8 @@ extern _LONG_DOUBLE _strtold _PARAMS((char *s, char **sptr));
|
|||
#endif
|
||||
|
||||
#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
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue