diff options
Diffstat (limited to 'sysdeps/libm-ieee754')
-rw-r--r-- | sysdeps/libm-ieee754/s_matherr.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sysdeps/libm-ieee754/s_matherr.c b/sysdeps/libm-ieee754/s_matherr.c index 94103bc464..1ad3eb3334 100644 --- a/sysdeps/libm-ieee754/s_matherr.c +++ b/sysdeps/libm-ieee754/s_matherr.c @@ -5,7 +5,7 @@ * * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this - * software is freely granted, provided that this notice + * software is freely granted, provided that this notice * is preserved. * ==================================================== */ @@ -18,9 +18,13 @@ static char rcsid[] = "$NetBSD: s_matherr.c,v 1.6 1995/05/10 20:47:53 jtc Exp $" #include "math_private.h" #ifdef __STDC__ - int __matherr(struct exception *x) + int + weak_function + __matherr(struct exception *x) #else - int __matherr(x) + int + weak_function + __matherr(x) struct exception *x; #endif { |