diff options
author | alfred <alfred@FreeBSD.org> | 2002-05-28 18:15:04 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-05-28 18:15:04 +0000 |
commit | 565689ac5bf6349e21b553f3e8f16d7daa1da57d (patch) | |
tree | ffef6d4da2c4353ee88d6ab0439ae527b407110f /lib/msun/src/e_jnf.c | |
parent | a94f09971fe42eb37ee9a8cd3949bb8780a9522d (diff) | |
download | FreeBSD-src-565689ac5bf6349e21b553f3e8f16d7daa1da57d.zip FreeBSD-src-565689ac5bf6349e21b553f3e8f16d7daa1da57d.tar.gz |
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
Diffstat (limited to 'lib/msun/src/e_jnf.c')
-rw-r--r-- | lib/msun/src/e_jnf.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/msun/src/e_jnf.c b/lib/msun/src/e_jnf.c index a374a64..17a7008 100644 --- a/lib/msun/src/e_jnf.c +++ b/lib/msun/src/e_jnf.c @@ -27,7 +27,8 @@ one = 1.0000000000e+00; /* 0x3F800000 */ static const float zero = 0.0000000000e+00; - float __ieee754_jnf(int n, float x) +float +__ieee754_jnf(int n, float x) { int32_t i,hx,ix, sgn; float a, b, temp, di; @@ -159,7 +160,8 @@ static const float zero = 0.0000000000e+00; if(sgn==1) return -b; else return b; } - float __ieee754_ynf(int n, float x) +float +__ieee754_ynf(int n, float x) { int32_t i,hx,ix,ib; int32_t sign; |