diff options
author | Ed Maste <emaste@FreeBSD.org> | 2013-04-23 14:36:44 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2013-04-23 14:36:44 +0000 |
commit | 5a6307cf42c5b4965435b3b7af74a37fd4dc17b9 (patch) | |
tree | eee3d4211d69ff36f950fb608985ae69d9c4c4e1 /lib/libc/stdio/fvwrite.c | |
parent | 5628dd089340472da80d5e3cce2108e155592ecd (diff) |
Convert libc/stdio from K&R to ANSI C
And add '__restrict' where it appeared in the header prototypes
Notes
Notes:
svn path=/head/; revision=249810
Diffstat (limited to 'lib/libc/stdio/fvwrite.c')
-rw-r--r-- | lib/libc/stdio/fvwrite.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libc/stdio/fvwrite.c b/lib/libc/stdio/fvwrite.c index 71c83c2cd766..1a28b6a79c01 100644 --- a/lib/libc/stdio/fvwrite.c +++ b/lib/libc/stdio/fvwrite.c @@ -49,9 +49,7 @@ __FBSDID("$FreeBSD$"); * to the three different kinds of output buffering is handled here. */ int -__sfvwrite(fp, uio) - FILE *fp; - struct __suio *uio; +__sfvwrite(FILE *fp, struct __suio *uio) { size_t len; char *p; |