diff options
| author | Xin LI <delphij@FreeBSD.org> | 2010-01-20 00:52:24 +0000 |
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2010-01-20 00:52:24 +0000 |
| commit | 49399ca706df781a3317bbf9b002f236b8012061 (patch) | |
| tree | f0c5e9ee4713d44a6082b15862a910a3ffd7e933 /lib/libc/stdio | |
| parent | 3895783a8af9700f2bd42758178adcfe5372e146 (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdio')
| -rw-r--r-- | lib/libc/stdio/vsscanf.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/libc/stdio/vsscanf.c b/lib/libc/stdio/vsscanf.c index e5e96917b42f..22b5d2bdac09 100644 --- a/lib/libc/stdio/vsscanf.c +++ b/lib/libc/stdio/vsscanf.c @@ -45,20 +45,15 @@ eofread(void *, char *, int); /* ARGSUSED */ static int -eofread(cookie, buf, len) - void *cookie; - char *buf; - int len; +eofread(void *cookie, char *buf, int len) { return (0); } int -vsscanf(str, fmt, ap) - const char * __restrict str; - const char * __restrict fmt; - __va_list ap; +vsscanf(const char * __restrict str, const char * __restrict fmt, + __va_list ap) { FILE f; |
