diff options
author | robert <robert@FreeBSD.org> | 2002-08-14 22:36:22 +0000 |
---|---|---|
committer | robert <robert@FreeBSD.org> | 2002-08-14 22:36:22 +0000 |
commit | 6e77bfc7bdee4ede5316f67cff39a530b30b75b3 (patch) | |
tree | 17e7fb097f6077f09759ab1b7a4cfaada588c8d3 /lib/libc/stdtime/strptime.c | |
parent | 476f71cec5c3fe99336f1ccd95b06c67707cda4e (diff) | |
download | FreeBSD-src-6e77bfc7bdee4ede5316f67cff39a530b30b75b3.zip FreeBSD-src-6e77bfc7bdee4ede5316f67cff39a530b30b75b3.tar.gz |
- Add the C99 'restrict' qualifier using the '__restrict' macro to
function prototype and definition of strptime(3).
- Update the manual page.
Diffstat (limited to 'lib/libc/stdtime/strptime.c')
-rw-r--r-- | lib/libc/stdtime/strptime.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdtime/strptime.c b/lib/libc/stdtime/strptime.c index b050f1a..be84482 100644 --- a/lib/libc/stdtime/strptime.c +++ b/lib/libc/stdtime/strptime.c @@ -517,7 +517,8 @@ label: char * -strptime(const char *buf, const char *fmt, struct tm *tm) +strptime(const char *__restrict buf, const char *__restrict fmt, + struct tm *__restrict tm) { char *ret; |