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_cbrtf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/msun/src/s_cbrtf.c') diff --git a/lib/msun/src/s_cbrtf.c b/lib/msun/src/s_cbrtf.c index 6b13069..4ed4351 100644 --- a/lib/msun/src/s_cbrtf.c +++ b/lib/msun/src/s_cbrtf.c @@ -34,7 +34,8 @@ E = 1.4142856598e+00, /* 99/70 = 0x3fb50750 */ F = 1.6071428061e+00, /* 45/28 = 0x3fcdb6db */ G = 3.5714286566e-01; /* 5/14 = 0x3eb6db6e */ - float cbrtf(float x) +float +cbrtf(float x) { float r,s,t; int32_t hx; -- cgit v1.1