chiark / gitweb /
eglibc (2.11.3-4+deb6u3) squeeze-lts; urgency=medium
[eglibc.git] / sysdeps / ia64 / fpu / s_matherrf.c
1 /* Derived from:  */
2 /*
3  * ====================================================
4  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5  *
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  * ====================================================
11  */
12
13
14 #include "math.h"
15 #include "math_private.h"
16 #include "libm_support.h"
17
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
28 {
29         int n=0;
30         if(x->arg1!=x->arg1) return 0;
31         return n;
32 }
33 weak_alias (__matherrf, matherrf)