From 565689ac5bf6349e21b553f3e8f16d7daa1da57d Mon Sep 17 00:00:00 2001 From: alfred Date: Tue, 28 May 2002 18:15:04 +0000 Subject: Fix formatting, this is hard to explain, so I'll show one example. - float ynf(int n, float x) /* wrapper ynf */ +float +ynf(int n, float x) /* wrapper ynf */ This is because the __STDC__ stuff was indented. Reviewed by: md5 --- lib/msun/src/s_copysignf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/msun/src/s_copysignf.c') diff --git a/lib/msun/src/s_copysignf.c b/lib/msun/src/s_copysignf.c index ae70aed..df5304f 100644 --- a/lib/msun/src/s_copysignf.c +++ b/lib/msun/src/s_copysignf.c @@ -26,7 +26,8 @@ static char rcsid[] = "$FreeBSD$"; #include "math.h" #include "math_private.h" - float copysignf(float x, float y) +float +copysignf(float x, float y) { u_int32_t ix,iy; GET_FLOAT_WORD(ix,x); -- cgit v1.1