diff options
Diffstat (limited to 'lib/libc/gen/tolower_.c')
-rw-r--r-- | lib/libc/gen/tolower_.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/gen/tolower_.c b/lib/libc/gen/tolower_.c index c74d1725fb2..160c4be3c0c 100644 --- a/lib/libc/gen/tolower_.c +++ b/lib/libc/gen/tolower_.c @@ -4,7 +4,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: tolower_.c,v 1.6 2002/12/13 23:16:38 millert Exp $"; +static char rcsid[] = "$OpenBSD: tolower_.c,v 1.7 2004/05/18 02:05:52 jfb Exp $"; #endif /* LIBC_SCCS and not lint */ #define _ANSI_LIBRARY @@ -51,8 +51,7 @@ const short *_tolower_tab_ = _C_tolower_; #undef tolower int -tolower(c) - int c; +tolower(int c) { if ((unsigned int)c > 0177) return(c); |