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/stdtime/strptime.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/stdtime/strptime.c')
-rw-r--r-- | lib/libc/stdtime/strptime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdtime/strptime.c b/lib/libc/stdtime/strptime.c index be84482..edb0d3c 100644 --- a/lib/libc/stdtime/strptime.c +++ b/lib/libc/stdtime/strptime.c @@ -517,8 +517,8 @@ label: char * -strptime(const char *__restrict buf, const char *__restrict fmt, - struct tm *__restrict tm) +strptime(const char * __restrict buf, const char * __restrict fmt, + struct tm * __restrict tm) { char *ret; |