diff options
Diffstat (limited to 'lib/msun/src/s_cosf.c')
-rw-r--r-- | lib/msun/src/s_cosf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/msun/src/s_cosf.c b/lib/msun/src/s_cosf.c index 4c551c3..18e0299 100644 --- a/lib/msun/src/s_cosf.c +++ b/lib/msun/src/s_cosf.c @@ -22,7 +22,8 @@ static char rcsid[] = "$FreeBSD$"; static const float one=1.0; - float cosf(float x) +float +cosf(float x) { float y[2],z=0.0; int32_t n,ix; |