NPTL/arc: notify kernel of the TP value
[uClibc.git] / libm / s_matherr.c
blob9a50459c80edacb50a5dd1845b3036ebee12bb47
1 /*
2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
8 * is preserved.
9 * ====================================================
12 #include "math.h"
13 #include "math_private.h"
15 #ifndef _IEEE_LIBM
17 int matherr(struct exception *x)
19 int n=0;
20 if(x->arg1!=x->arg1) return 0;
21 return n;
23 libm_hidden_def(matherr)
24 #endif