]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/ia64/fpu/s_matherrf.c
Obsolete matherr, _LIB_VERSION, libieee.a.
[thirdparty/glibc.git] / sysdeps / ia64 / fpu / s_matherrf.c
CommitLineData
d5efd131
MF
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
60318997
MF
14#include <math.h>
15#include <math_private.h>
813378e9 16#include <math-svid-compat.h>
d5efd131
MF
17#include "libm_support.h"
18
813378e9 19#if LIBM_SVID_COMPAT
16aca1f7
MF
20int
21weak_function
22__matherrf(struct exceptionf *x)
d5efd131
MF
23{
24 int n=0;
25 if(x->arg1!=x->arg1) return 0;
26 return n;
27}
813378e9
JM
28compat_symbol (libm, __matherrf, matherrf, GLIBC_2_2_3);
29#endif