diff options
| author | Tim J. Robbins <tjr@FreeBSD.org> | 2002-09-06 11:24:06 +0000 |
|---|---|---|
| committer | Tim J. Robbins <tjr@FreeBSD.org> | 2002-09-06 11:24:06 +0000 |
| commit | 58d38e25205c6ee5ef0796ffa2cd8e2ca6c6e7f3 (patch) | |
| tree | ee19d604b38f08d225b97c81a641deba71f33d6b /lib/libc/stdtime/strftime.c | |
| parent | 00f9b682956d9eda39f36dd9291d4313fc75025a (diff) | |
Notes
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 ab50bdcf6ab2..434557e5dd0d 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; |
