diff options
Diffstat (limited to 'lib/msun/src/s_tanf.c')
-rw-r--r-- | lib/msun/src/s_tanf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/msun/src/s_tanf.c b/lib/msun/src/s_tanf.c index da3dfd5..c81caaf 100644 --- a/lib/msun/src/s_tanf.c +++ b/lib/msun/src/s_tanf.c @@ -20,7 +20,8 @@ static char rcsid[] = "$FreeBSD$"; #include "math.h" #include "math_private.h" - float tanf(float x) +float +tanf(float x) { float y[2],z=0.0; int32_t n, ix; |