diff options
Diffstat (limited to 'math/math.h')
-rw-r--r-- | math/math.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/math/math.h b/math/math.h index 0e2b4e7e5e..f43def0044 100644 --- a/math/math.h +++ b/math/math.h @@ -56,7 +56,7 @@ __BEGIN_DECLS __MATHDECL_1(type, function,suffix, args) __attribute__ (attrib); \ __MATHDECL_1(type, __CONCAT(__,function),suffix, args) __attribute__ (attrib) #define __MATHDECL_1(type, function,suffix, args) \ - extern type __MATH_PRECNAME(function,suffix) args + extern type __MATH_PRECNAME(function,suffix) args __THROW #define _Mdouble_ double #define __MATH_PRECNAME(name,r) __CONCAT(name,r) @@ -269,9 +269,9 @@ struct exception }; # ifdef __cplusplus -extern int matherr __P ((struct __exception *__exc)); +extern int matherr (struct __exception *__exc) throw (); # else -extern int matherr __P ((struct exception *__exc)); +extern int matherr (struct exception *__exc); # endif # define X_TLOSS 1.41484755040568800000e+16 |