diff options
author | jraynard <jraynard@FreeBSD.org> | 1996-06-12 22:59:55 +0000 |
---|---|---|
committer | jraynard <jraynard@FreeBSD.org> | 1996-06-12 22:59:55 +0000 |
commit | e85e320a9e0511f35e7d9e062f18561014e59770 (patch) | |
tree | cfe4e5c175af1b86f8edd90380fb043a65690b52 /lib/libc/stdio/vfscanf.c | |
parent | 4a395602dc927c2e081ae681cefecd87fe5ca3b1 (diff) | |
download | FreeBSD-src-e85e320a9e0511f35e7d9e062f18561014e59770.zip FreeBSD-src-e85e320a9e0511f35e7d9e062f18561014e59770.tar.gz |
Code cleanup:-
The usual stuff, adding missing function prototypes, argument types,
return values, etc.
This directory now compiles with no warnings with -Wall on gcc2.6.3!
Diffstat (limited to 'lib/libc/stdio/vfscanf.c')
-rw-r--r-- | lib/libc/stdio/vfscanf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/vfscanf.c b/lib/libc/stdio/vfscanf.c index 22ed5a0..f975341 100644 --- a/lib/libc/stdio/vfscanf.c +++ b/lib/libc/stdio/vfscanf.c @@ -94,7 +94,7 @@ static u_char *__sccl(); /* * vfscanf */ -__svfscanf(fp, fmt0, ap) +int __svfscanf(fp, fmt0, ap) register FILE *fp; char const *fmt0; va_list ap; |