diff options
author | tjr <tjr@FreeBSD.org> | 2002-09-06 11:24:06 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-09-06 11:24:06 +0000 |
commit | cd5ca96599d24e7c9375719e86b16b5d3165e931 (patch) | |
tree | ee19d604b38f08d225b97c81a641deba71f33d6b /lib/libc/stdlib/strtod.c | |
parent | 97acf1a793f3b9951362d9f3125aa7f36755d083 (diff) | |
download | FreeBSD-src-cd5ca96599d24e7c9375719e86b16b5d3165e931.zip FreeBSD-src-cd5ca96599d24e7c9375719e86b16b5d3165e931.tar.gz |
Style: One space between "restrict" qualifier and "*".
Diffstat (limited to 'lib/libc/stdlib/strtod.c')
-rw-r--r-- | lib/libc/stdlib/strtod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c index 73765ba..62f8f2a 100644 --- a/lib/libc/stdlib/strtod.c +++ b/lib/libc/stdlib/strtod.c @@ -1191,9 +1191,9 @@ static double tinytens[] = { 1e-16, 1e-32 }; double strtod #ifdef KR_headers - (s00, se) CONST char *__restrict s00; char **__restrict se; + (s00, se) CONST char * __restrict s00; char ** __restrict se; #else - (CONST char *__restrict s00, char **__restrict se) + (CONST char * __restrict s00, char ** __restrict se) #endif { int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, dsign, |