diff options
author | nectar <nectar@FreeBSD.org> | 2004-01-06 18:26:15 +0000 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2004-01-06 18:26:15 +0000 |
commit | c281d0e2eafa39c917ef047ce514a5594c54b94f (patch) | |
tree | f9e401de771be36d2b425999ec8f726e406ea85d /lib/libc/stdio | |
parent | 9138480b09ae7b6db83e31894580eb4bdc8fb7fe (diff) | |
download | FreeBSD-src-c281d0e2eafa39c917ef047ce514a5594c54b94f.zip FreeBSD-src-c281d0e2eafa39c917ef047ce514a5594c54b94f.tar.gz |
Remove unused variables and function declarations. Add missing headers.
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/vfwprintf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/stdio/vfwprintf.c b/lib/libc/stdio/vfwprintf.c index a679288..f069bae 100644 --- a/lib/libc/stdio/vfwprintf.c +++ b/lib/libc/stdio/vfwprintf.c @@ -166,8 +166,7 @@ __xfputwc(wchar_t wc, FILE *fp) char buf[MB_LEN_MAX]; struct __suio uio; struct __siov iov; - size_t i, len; - int ret; + size_t len; if ((fp->_flags & __SSTR) == 0) return (__fputwc(wc, fp)); |