From 84d9142f58bdeaee37a73d3cb7366272e63c799b Mon Sep 17 00:00:00 2001 From: Jacques Vidrine Date: Tue, 6 Jan 2004 18:26:15 +0000 Subject: [PATCH] Remove unused variables and function declarations. Add missing headers. --- lib/libc/gen/ttyname.c | 3 --- lib/libc/locale/srune.c | 1 + lib/libc/locale/wcstold.c | 4 ++-- lib/libc/posix1e/mac.c | 3 ++- lib/libc/stdio/vfwprintf.c | 3 +-- 5 files changed, 6 insertions(+), 8 deletions(-) diff --git a/lib/libc/gen/ttyname.c b/lib/libc/gen/ttyname.c index cb5f922390a..e4a0ed4dec0 100644 --- a/lib/libc/gen/ttyname.c +++ b/lib/libc/gen/ttyname.c @@ -53,7 +53,6 @@ __FBSDID("$FreeBSD$"); #include "libc_private.h" static char buf[sizeof(_PATH_DEV) + MAXNAMLEN]; -static char *oldttyname(int, struct stat *); static char *ttyname_threaded(int fd); static char *ttyname_unthreaded(int fd); @@ -76,10 +75,8 @@ ttyname(int fd) char * ttyname_r(int fd, char *buf, size_t len) { - struct stat dsb; struct stat sb; char *rval; - int minlen; rval = NULL; diff --git a/lib/libc/locale/srune.c b/lib/libc/locale/srune.c index 86d40a7cbdf..073fd912e07 100644 --- a/lib/libc/locale/srune.c +++ b/lib/libc/locale/srune.c @@ -29,6 +29,7 @@ __FBSDID("$FreeBSD$"); #include #include +#include #include /* diff --git a/lib/libc/locale/wcstold.c b/lib/libc/locale/wcstold.c index 6228784f7b8..76158c1e744 100644 --- a/lib/libc/locale/wcstold.c +++ b/lib/libc/locale/wcstold.c @@ -38,9 +38,9 @@ long double wcstold(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr) { long double val; - char *buf, *end, *p; + char *buf, *end; const wchar_t *wcp; - size_t clen, len; + size_t len; while (iswspace(*nptr)) nptr++; diff --git a/lib/libc/posix1e/mac.c b/lib/libc/posix1e/mac.c index 9d29438f87b..ded9059cdc6 100644 --- a/lib/libc/posix1e/mac.c +++ b/lib/libc/posix1e/mac.c @@ -44,6 +44,7 @@ #include #include #include +#include #include @@ -182,7 +183,7 @@ mac_init_internal(int ignore_errors) return (0); while (fgets(line, LINE_MAX, file)) { - char *arg, *comment, *parse, *statement; + char *comment, *parse, *statement; if (line[strlen(line)-1] == '\n') line[strlen(line)-1] = '\0'; diff --git a/lib/libc/stdio/vfwprintf.c b/lib/libc/stdio/vfwprintf.c index a6792883eaf..f069bae155b 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));