2.9
[glibc/nacl-glibc.git] / sysdeps / ia64 / fpu / s_matherrf.c
blob4b3033ecc3575d026a3f94f515af005609e78e26
1 /* Derived from: */
2 /*
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunPro, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
9 * is preserved.
10 * ====================================================
14 #include "math.h"
15 #include "math_private.h"
16 #include "libm_support.h"
18 #ifdef __STDC__
19 int
20 weak_function
21 __matherrf(struct exceptionf *x)
22 #else
23 int
24 weak_function
25 __matherrf(x)
26 struct exceptionf *x;
27 #endif
29 int n=0;
30 if(x->arg1!=x->arg1) return 0;
31 return n;
33 weak_alias (__matherrf, matherrf)