diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-25 19:36:53 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-25 19:36:53 +0000 |
commit | 4248e177ae809834d56e182810265aa04807b812 (patch) | |
tree | 17caf37d53582f8f72eddcb258067ff9b4737442 /libstdc++-v3/libmath/mathconf.h | |
parent | 811c1b69e447c7e5435ee5e593271b5a6bf843ad (diff) | |
download | gcc-4248e177ae809834d56e182810265aa04807b812.tar.gz |
* acinclude.m4: Change C9X references to refer to C99.
* aclocal.m4, configure: Regenerate.
* config/os/gnu-linux/bits/os_defines.h, src/complex.cc,
testsuite/22_locale/codecvt_wchar_t_char.cc,
include/bits/stl_config.h, include/c/bits/std_cwchar.h,
libmath/mathconf.h: Change C9X references to refer to C99.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37743 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/libmath/mathconf.h')
-rw-r--r-- | libstdc++-v3/libmath/mathconf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/libmath/mathconf.h b/libstdc++-v3/libmath/mathconf.h index 3f4503cc162..c6e66e2bf9c 100644 --- a/libstdc++-v3/libmath/mathconf.h +++ b/libstdc++-v3/libmath/mathconf.h @@ -130,7 +130,7 @@ double nan (void); /* Test whether number is finite. */ #ifdef isfinite -/* This is an ISO C 9x function. */ +/* This is an ISO C99 function. */ # define FINITE_P(X) isfinite (X) # define FINITEF_P(X) isfinite (X) # define FINITEL_P(X) isfinite (X) @@ -175,7 +175,7 @@ double nan (void); /* Test whether number is infinite. */ #ifdef isinf -/* This is an ISO C 9x macro. */ +/* This is an ISO C99 macro. */ # define INFINITE_P(X) isinf (X) # define INFINITEF_P(X) isinf (X) # define INFINITEL_P(X) isinf (X) @@ -236,7 +236,7 @@ __complex__ double c_log (__complex__ double x); __complex__ float c_logf (__complex__ float x); __complex__ long double c_logl (__complex__ long double x); -/* signbit is a macro in ISO C 9x. */ +/* signbit is a macro in ISO C99. */ #ifndef signbit extern int __signbitf (float); extern int __signbit (double); |