From a0ebeb988d63d94da086b72daf0691f67584724a Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 22 Dec 2008 11:31:12 +0000 Subject: - fix fpclassify, signbit, isfinite, isnan, isinf macros for long double math support - add rule to create preprocessor output for float- and long double math wrapper --- libm/s_isnanf.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'libm/s_isnanf.c') diff --git a/libm/s_isnanf.c b/libm/s_isnanf.c index 6afa5df06..d868264f7 100644 --- a/libm/s_isnanf.c +++ b/libm/s_isnanf.c @@ -21,7 +21,6 @@ #include "math.h" #include "math_private.h" -libm_hidden_proto(__isnanf) int __isnanf(float x) { int32_t ix; @@ -30,5 +29,4 @@ int __isnanf(float x) ix = 0x7f800000 - ix; return (int)(((u_int32_t)(ix))>>31); } -libm_hidden_def (__isnanf) -weak_alias (__isnanf, isnanf) +libm_hidden_def(__isnanf) -- cgit v1.2.3