diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-11-14 17:50:41 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-11-14 17:52:05 +0100 |
commit | 53c9f62657f222a3fefed852e1b2029033ec4014 (patch) | |
tree | 84b5b1739521d086f44d6a076288c3e4339186b9 /libm/s_isnan.c | |
parent | 73d6e5c41b61633e22ea74e3aa2df721512dca57 (diff) |
Revert "libm: fix C99_MATH on __NO_LONG_DOUBLE_MATH hosts"
This reverts commit 73d6e5c41b61633e22ea74e3aa2df721512dca57.
barking up the wrong tree
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libm/s_isnan.c')
-rw-r--r-- | libm/s_isnan.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libm/s_isnan.c b/libm/s_isnan.c index fb44f6a6e..1bc49cb02 100644 --- a/libm/s_isnan.c +++ b/libm/s_isnan.c @@ -27,6 +27,3 @@ int __isnan(double x) return (int)(((u_int32_t)hx)>>31); } libm_hidden_def(__isnan) -#if defined __DO_C99_MATH__ -int_WRAPPER_C99(__isnan) -#endif |