diff options
author | jraynard <jraynard@FreeBSD.org> | 1996-06-12 22:58:21 +0000 |
---|---|---|
committer | jraynard <jraynard@FreeBSD.org> | 1996-06-12 22:58:21 +0000 |
commit | 4a395602dc927c2e081ae681cefecd87fe5ca3b1 (patch) | |
tree | cd51d1f651327a263425cb2b525df325e4f67dfa /lib/libc/stdio/fvwrite.c | |
parent | 8a4400a463b6e76c6c1aebcd4a04d44c0275288c (diff) | |
download | FreeBSD-src-4a395602dc927c2e081ae681cefecd87fe5ca3b1.zip FreeBSD-src-4a395602dc927c2e081ae681cefecd87fe5ca3b1.tar.gz |
Code cleanup:-
The usual stuff, adding missing function prototypes, argument types,
return values, etc. In mktemp.c, convert pid from u_int to pid_t, and
get rid of "extern int errno".
Diffstat (limited to 'lib/libc/stdio/fvwrite.c')
-rw-r--r-- | lib/libc/stdio/fvwrite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/fvwrite.c b/lib/libc/stdio/fvwrite.c index 3ab6279..38ddc9e 100644 --- a/lib/libc/stdio/fvwrite.c +++ b/lib/libc/stdio/fvwrite.c @@ -49,7 +49,7 @@ static char sccsid[] = "@(#)fvwrite.c 8.1 (Berkeley) 6/4/93"; * This routine is large and unsightly, but most of the ugliness due * to the three different kinds of output buffering is handled here. */ -__sfvwrite(fp, uio) +int __sfvwrite(fp, uio) register FILE *fp; register struct __suio *uio; { |