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/e_log10.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/msun/src/e_log10.c') diff --git a/lib/msun/src/e_log10.c b/lib/msun/src/e_log10.c index 7af8829..464d36e 100644 --- a/lib/msun/src/e_log10.c +++ b/lib/msun/src/e_log10.c @@ -58,7 +58,8 @@ log10_2lo = 3.69423907715893078616e-13; /* 0x3D59FEF3, 0x11F12B36 */ static const double zero = 0.0; - double __generic___ieee754_log10(double x) +double +__generic___ieee754_log10(double x) { double y,z; int32_t i,k,hx; -- cgit v1.1