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/strftime.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/strftime.c')
-rw-r--r-- | lib/libc/stdtime/strftime.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/stdtime/strftime.c b/lib/libc/stdtime/strftime.c index ab50bdc..434557e 100644 --- a/lib/libc/stdtime/strftime.c +++ b/lib/libc/stdtime/strftime.c @@ -44,14 +44,14 @@ static char * _add(const char *, char *, const char *); static char * _conv(int, const char *, char *, const char *); static char * _fmt(const char *, const struct tm *, char *, const char *); -size_t strftime(char *__restrict, size_t, const char *__restrict, - const struct tm *__restrict); +size_t strftime(char * __restrict, size_t, const char * __restrict, + const struct tm * __restrict); extern char * tzname[]; size_t -strftime(char *__restrict s, size_t maxsize, const char *__restrict format, - const struct tm *__restrict t) +strftime(char * __restrict s, size_t maxsize, const char * __restrict format, + const struct tm * __restrict t) { char *p; |