summaryrefslogtreecommitdiffstats
path: root/include/time.h
diff options
context:
space:
mode:
authorrobert <robert@FreeBSD.org>2002-08-14 23:20:48 +0000
committerrobert <robert@FreeBSD.org>2002-08-14 23:20:48 +0000
commitf0abd50e99b630b7ce1849ce6d024d7ea4b3bc98 (patch)
tree433d2e30afb321df49de5b3e5b0d47da7cb507e0 /include/time.h
parent698d5a31a4ebe531737cd6f545ac15ff26b06838 (diff)
downloadFreeBSD-src-f0abd50e99b630b7ce1849ce6d024d7ea4b3bc98.zip
FreeBSD-src-f0abd50e99b630b7ce1849ce6d024d7ea4b3bc98.tar.gz
- Add the 'restrict' qualifier to the function definition of
strftime(3) for IEEE Std 1003.1-2001 compliance and remove excessive usage of the 'const' qualifier that was neither present in the prototype in the publice header, nor in the local prototype just above the function definition. - Replace the K&R function definition with a ANSI-C one. - Update the prototype of strftime(3) in its manual page.
Diffstat (limited to 'include/time.h')
-rw-r--r--include/time.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/time.h b/include/time.h
index e17feb3..daf8e90 100644
--- a/include/time.h
+++ b/include/time.h
@@ -121,7 +121,8 @@ double difftime(time_t, time_t);
struct tm *gmtime(const time_t *);
struct tm *localtime(const time_t *);
time_t mktime(struct tm *);
-size_t strftime(char *, size_t, const char *, const struct tm *);
+size_t strftime(char *__restrict, size_t, const char *__restrict,
+ const struct tm *__restrict);
time_t time(time_t *);
#if __POSIX_VISIBLE
OpenPOWER on IntegriCloud