* math/bits/mathcalls.h: Guard __END_NAMESPACE_C99 with the

same #if condition as corresponding __BEGIN_NAMESPACE_C99.
	(scalb): Don't define only if __USE_ISOC99.
This commit is contained in:
Roland McGrath 2006-02-01 19:45:29 +00:00
parent 9d4c4f4476
commit d36421fa25
2 changed files with 11 additions and 4 deletions

View File

@ -1,5 +1,9 @@
2006-02-01 Jakub Jelinek <jakub@redhat.com>
* math/bits/mathcalls.h: Guard __END_NAMESPACE_C99 with the
same #if condition as corresponding __BEGIN_NAMESPACE_C99.
(scalb): Don't define only if __USE_ISOC99.
* sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Fix a typo.
* sysdeps/s390/fpu/libm-test-ulps: Remove llrint ulps.

View File

@ -353,10 +353,13 @@ __MATHDECL_1 (int, __signbit,, (_Mdouble_ __value))
/* Multiply-add function computed as a ternary operation. */
__MATHCALL (fma,, (_Mdouble_ __x, _Mdouble_ __y, _Mdouble_ __z));
__END_NAMESPACE_C99
#endif /* Use ISO C99. */
# if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
#if defined __USE_MISC || defined __USE_XOPEN_EXTENDED || defined __USE_ISOC99
__END_NAMESPACE_C99
#endif
#if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
/* Return X times (2 to the Nth power). */
__MATHCALL (scalb,, (_Mdouble_ __x, _Mdouble_ __n));
# endif
#endif /* Use ISO C99. */
#endif