diff options
author | mike <mike@FreeBSD.org> | 2002-10-12 16:13:41 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-10-12 16:13:41 +0000 |
commit | 4d6bf1c3fb0816347ba09c47c02f040d71c13679 (patch) | |
tree | 8937b8185655025519cc44865535915faec9b620 /lib/libc/stdio/sscanf.c | |
parent | ca8c4bef3b2e3511a5dcd4e09b5f4e41a1cb8386 (diff) | |
download | FreeBSD-src-4d6bf1c3fb0816347ba09c47c02f040d71c13679.zip FreeBSD-src-4d6bf1c3fb0816347ba09c47c02f040d71c13679.tar.gz |
Add restrict type-qualifier.
Diffstat (limited to 'lib/libc/stdio/sscanf.c')
-rw-r--r-- | lib/libc/stdio/sscanf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/sscanf.c b/lib/libc/stdio/sscanf.c index d988326..4db0d29 100644 --- a/lib/libc/stdio/sscanf.c +++ b/lib/libc/stdio/sscanf.c @@ -59,7 +59,7 @@ eofread(cookie, buf, len) } int -sscanf(const char *str, char const *fmt, ...) +sscanf(const char * __restrict str, char const * __restrict fmt, ...) { int ret; va_list ap; |