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_fpclassifyf.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'libm/s_fpclassifyf.c') diff --git a/libm/s_fpclassifyf.c b/libm/s_fpclassifyf.c index edc0db635..23ae59f18 100644 --- a/libm/s_fpclassifyf.c +++ b/libm/s_fpclassifyf.c @@ -21,9 +21,7 @@ #include #include "math_private.h" -libm_hidden_proto(__fpclassifyf) -int -__fpclassifyf (float x) +int __fpclassifyf (float x) { u_int32_t wx; int retval = FP_NORMAL; @@ -39,4 +37,4 @@ __fpclassifyf (float x) return retval; } -libm_hidden_def (__fpclassifyf) +libm_hidden_def(__fpclassifyf) -- cgit v1.2.3