diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-02-02 05:12:40 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-02-02 05:12:40 +0000 |
commit | f4c6bde95cc76f4966ecff5842a06be3fd71e13c (patch) | |
tree | fc8ad5d4f7471e61816b725c1c91a8fec244908c /math | |
parent | 344be7574a05a54113711be8e4839c39ac46dec0 (diff) |
Updated to fedora-glibc-20060202T0507
Diffstat (limited to 'math')
-rw-r--r-- | math/bits/mathcalls.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h index 174fe34589..64da6276f6 100644 --- a/math/bits/mathcalls.h +++ b/math/bits/mathcalls.h @@ -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)); +#endif /* Use ISO C99. */ + +#if defined __USE_MISC || defined __USE_XOPEN_EXTENDED || defined __USE_ISOC99 __END_NAMESPACE_C99 +#endif -# if defined __USE_MISC || defined __USE_XOPEN_EXTENDED +#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 |