2.9
[glibc/nacl-glibc.git] / sysdeps / ia64 / fpu / s_matherrl.c
blob751cc6b51e65d9dfc87e165a6839e6f1c5490848
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 __matherrl(struct exceptionl *x)
22 #else
23 int
24 weak_function
25 __matherrl(x)
26 struct exceptionl *x;
27 #endif
29 int n=0;
30 if(x->arg1!=x->arg1) return 0;
31 return n;
33 weak_alias (__matherrl, matherrl)