From ec751a23c0989ae9665ef268f6ef44b99fd1939f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 31 Oct 1999 17:37:43 +0000 Subject: Update. 1999-10-31 Ulrich Drepper * includes/features.h: Replace __USE_ISOC9X by __USE_ISOC99 and also recognize _ISOC99_SOURCE. * libio/stdio.h: Likewise. * math/math.h: Likewise. * math/bits/mathcalls.h: Likewise. * math/stdio.h: Likewise. * stdlib/stdlib.h: Likewise. * sysdeps/alpha/fpu/bits/mathdef.h: Likewise. * sysdeps/alpha/fpu/bits/mathinline.h: Likewise. * sysdeps/arm/bits/huge_val.h: Likewise. * sysdeps/generic/bits/mathdef.h: Likewise. * sysdeps/i386/bits/huge_val.h: Likewise. * sysdeps/i386/fpu/bits/mathdef.h: Likewise. * sysdeps/i386/fpu/bits/mathinline.h: Likewise. * sysdeps/ieee754/bits/huge_val.h: Likewise. * sysdeps/m68k/bits/huge_val.h: Likewise. * sysdeps/m68k/fpu/bits/mathdef.h: Likewise. * sysdeps/m68k/fpu/bits/mathinline.h: Likewise. * sysdeps/powerpc/bits/mathdef.h: Likewise. * sysdeps/powerpc/bits/mathinline.h: Likewise. * sysdeps/sparc/fpu/bits/mathdef.h: Likewise. * sysdeps/sparc/fpu/bits/mathinline.h: Likewise. * sysdeps/sparc/sparc32/fpu/bits/huge_val.h: Likewise. * wcsmbs/wchar.h: Likewise. * sysdeps/powerpc/bits/mathdef.h: Moved to... * sysdeps/powerpc/fpu/bits/mathdef.h: ...here. * sysdeps/powerpc/bits/mathinline.h: Moved to... * sysdeps/powerpc/fpu/bits/mathinline.h: ...here. 1999-10-31 Andreas Jaeger * manual/math.texi (Errors in Math Functions): Correct TeX code. 1999-10-31 Andreas Jaeger * math/libm-test.inc: Change comments to use ISO C99 instead of ISO C9x. * math/w_lgamma.c: Likewise. * math/w_lgammaf.c: Likewise. * math/w_lgammal.c: Likewise. * math/test-fenv.c: Likewise. * sysdeps/ieee754/ldbl-96/printf_fphex.c: Likewise. * sysdeps/ieee754/ldbl-128/printf_fphex.c: Likewise. * sysdeps/generic/printf_fphex.c: Likewise. 1999-10-31 Andreas Jaeger * manual/arith.texi (Parsing of Floats): Remove C from ISO C comment. * manual/math.texi: Change ISO C9x to ISO C99. * manual/startup.texi: Likewise. * manual/stdio.texi: Likewise. 1999-10-31 Andreas Jaeger * manual/arith.texi: Change ISO C9x to ISO C99. * manual/time.texi (Low-Level Time String Parsing): Likewise. --- math/math.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'math/math.h') diff --git a/math/math.h b/math/math.h index e76b36a798..16dd0a5bbb 100644 --- a/math/math.h +++ b/math/math.h @@ -33,10 +33,10 @@ __BEGIN_DECLS #include /* Get machine-dependent NAN value (returned for some domain errors). */ -#ifdef __USE_ISOC9X +#ifdef __USE_ISOC99 # include #endif -/* Get general and ISO C 9X specific information. */ +/* Get general and ISO C99 specific information. */ #include @@ -64,7 +64,7 @@ __BEGIN_DECLS #undef _Mdouble_ #undef __MATH_PRECNAME -#if defined __USE_MISC || defined __USE_ISOC9X +#if defined __USE_MISC || defined __USE_ISOC99 /* Include the file of declarations again, this time using `float' @@ -102,20 +102,20 @@ __BEGIN_DECLS # endif /* __STDC__ || __GNUC__ */ -#endif /* Use misc or ISO C 9X. */ +#endif /* Use misc or ISO C99. */ #undef __MATHDECL_1 #undef __MATHDECL #undef __MATHCALL -#if defined __USE_MISC || defined __USE_XOPEN || defined __USE_ISOC9X +#if defined __USE_MISC || defined __USE_XOPEN || defined __USE_ISOC99 /* This variable is used by `gamma' and `lgamma'. */ extern int signgam; #endif -/* ISO C 9X defines some generic macros which work on any data type. */ -#if __USE_ISOC9X +/* ISO C99 defines some generic macros which work on any data type. */ +#if __USE_ISOC99 /* Get the architecture specific values describing the floating-point evaluation. The following symbols will get defined: @@ -229,7 +229,7 @@ enum ? __isinf (x) : __isinfl (x)) # endif -#endif /* Use ISO C 9X. */ +#endif /* Use ISO C99. */ #ifdef __USE_MISC /* Support for various different standard error handling behaviors. */ @@ -239,7 +239,7 @@ typedef enum _SVID_, /* According to System V, release 4. */ _XOPEN_, /* Nowadays also Unix98. */ _POSIX_, - _ISOC_ /* Actually this is ISO C 9X. */ + _ISOC_ /* Actually this is ISO C99. */ } _LIB_VERSION_TYPE; /* This variable can be changed at run-time to any of the values above to @@ -349,8 +349,8 @@ extern int matherr (struct exception *__exc); #endif -#if __USE_ISOC9X -/* ISO C 9X defines some macros to compare number while taking care +#if __USE_ISOC99 +/* ISO C99 defines some macros to compare number while taking care for unordered numbers. Since many FPUs provide special instructions to support these operations and these tests are defined in , we define the generic macros at -- cgit 1.4.1