summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_ldexpf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/s_ldexpf.c')
-rw-r--r--lib/msun/src/s_ldexpf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/msun/src/s_ldexpf.c b/lib/msun/src/s_ldexpf.c
index c2352e0..3b57da54 100644
--- a/lib/msun/src/s_ldexpf.c
+++ b/lib/msun/src/s_ldexpf.c
@@ -21,7 +21,8 @@ static char rcsid[] = "$FreeBSD$";
#include "math_private.h"
#include <errno.h>
- float ldexpf(float value, int exp)
+float
+ldexpf(float value, int exp)
{
if(!finitef(value)||value==(float)0.0) return value;
value = scalbnf(value,exp);
OpenPOWER on IntegriCloud