From 1466eb283c8eee992835f66433c43fd4d31e92bc Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Thu, 26 Jan 2006 22:19:01 +0000 Subject: Some more prototypes, enable missing-prototypes/declarations warnings for now --- libm/fpmacros.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libm') diff --git a/libm/fpmacros.c b/libm/fpmacros.c index ebcb7c5fb..0a079c016 100644 --- a/libm/fpmacros.c +++ b/libm/fpmacros.c @@ -122,6 +122,7 @@ libm_hidden_def(__fpclassify) Calls: none ***********************************************************************/ +int __isnormalf ( float x ); int __isnormalf ( float x ) { unsigned int iexp; @@ -136,6 +137,7 @@ int __isnormalf ( float x ) } +int __isnormal ( double x ); int __isnormal ( double x ) { return ( __fpclassify ( x ) == FP_NORMAL ); -- cgit v1.2.3