From: Roland McGrath Date: Fri, 3 Feb 2006 19:15:48 +0000 (+0000) Subject: 2006-02-03 Jakub Jelinek X-Git-Tag: cvs/fedora-glibc-20060204T0758~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=42247128d60f0620ecaf78981429d3379e1d355b;p=thirdparty%2Fglibc.git 2006-02-03 Jakub Jelinek * math/math.h [__LDBL_COMPAT && __USE_ISOC99] (nexttowardl): New prototype. * math/math.h (__nldbl_nexttowardf): Put __THROW before __attribute__ ((__const__)). (__MATHDECL_2): Use __REDIRECT_NTH instead of __REDIRECT followed by __THROW. --- diff --git a/math/math.h b/math/math.h index 050b89ca857..c50b2e7b078 100644 --- a/math/math.h +++ b/math/math.h @@ -103,13 +103,16 @@ __BEGIN_DECLS # ifdef __USE_ISOC99 extern float __nldbl_nexttowardf (float __x, long double __y) - __attribute__ ((__const__)) __THROW; + __THROW __attribute__ ((__const__)); # ifdef __REDIRECT_NTH extern float __REDIRECT_NTH (nexttowardf, (float __x, long double __y), __nldbl_nexttowardf) __attribute__ ((__const__)); extern double __REDIRECT_NTH (nexttoward, (double __x, long double __y), nextafter) __attribute__ ((__const__)); +extern long double __REDIRECT_NTH (nexttowardl, + (long double __x, long double __y), + nextafter) __attribute__ ((__const__)); # endif # endif @@ -118,8 +121,8 @@ extern double __REDIRECT_NTH (nexttoward, (double __x, long double __y), # undef __MATHDECL_1 # define __MATHDECL_2(type, function,suffix, args, alias) \ - extern type __REDIRECT(__MATH_PRECNAME(function,suffix), \ - args, alias) __THROW + extern type __REDIRECT_NTH(__MATH_PRECNAME(function,suffix), \ + args, alias) # define __MATHDECL_1(type, function,suffix, args) \ __MATHDECL_2(type, function,suffix, args, __CONCAT(function,suffix)) # endif