diff options
Diffstat (limited to 'lib/msun/src/s_modff.c')
-rw-r--r-- | lib/msun/src/s_modff.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/msun/src/s_modff.c b/lib/msun/src/s_modff.c index 2d165f6..69b64e9 100644 --- a/lib/msun/src/s_modff.c +++ b/lib/msun/src/s_modff.c @@ -22,7 +22,8 @@ static char rcsid[] = "$FreeBSD$"; static const float one = 1.0; - float modff(float x, float *iptr) +float +modff(float x, float *iptr) { int32_t i0,j0; u_int32_t i; |