diff options
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 29401bb..bd3ba29 100644 --- a/lib/libc/stdtime/strftime.c +++ b/lib/libc/stdtime/strftime.c @@ -40,11 +40,11 @@ __FBSDID("$FreeBSD$"); #include "un-namespace.h" #include "timelocal.h" -static char * _add P((const char *, char *, const char *)); -static char * _conv P((int, const char *, char *, const char *)); -static char * _fmt P((const char *, const struct tm *, char *, const char *)); +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 P((char *, size_t, const char *, const struct tm *)); +size_t strftime(char *, size_t, const char *, const struct tm *); extern char * tzname[]; |