Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/lib/libc/gen/toupper_.c,v rcsdiff: /ftp/cvs/cvsroot/src/lib/libc/gen/toupper_.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.9 retrieving revision 1.9.38.1 diff -u -p -r1.9 -r1.9.38.1 --- src/lib/libc/gen/toupper_.c 2003/07/26 19:24:45 1.9 +++ src/lib/libc/gen/toupper_.c 2009/01/15 03:24:06 1.9.38.1 @@ -1,4 +1,4 @@ -/* $NetBSD: toupper_.c,v 1.9 2003/07/26 19:24:45 salo Exp $ */ +/* $NetBSD: toupper_.c,v 1.9.38.1 2009/01/15 03:24:06 snj Exp $ */ /* * Written by J.T. Conklin . @@ -7,7 +7,7 @@ #include #if defined(LIBC_RCS) && !defined(lint) -__RCSID("$NetBSD: toupper_.c,v 1.9 2003/07/26 19:24:45 salo Exp $"); +__RCSID("$NetBSD: toupper_.c,v 1.9.38.1 2009/01/15 03:24:06 snj Exp $"); #endif /* LIBC_RCS and not lint */ #include @@ -54,11 +54,3 @@ const short _C_toupper_[1 + 256] = { }; const short *_toupper_tab_ = _C_toupper_; - -#undef toupper -int -toupper(c) - int c; -{ - return((_toupper_tab_ + 1)[c]); -}