diff options
Diffstat (limited to 'libm')
-rw-r--r-- | libm/fpmacros.c | 2 |
1 files changed, 2 insertions, 0 deletions
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 ); |