From c6bd0d562152bb183d228019e2304bb4b65baae5 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Sat, 14 Mar 2009 19:04:24 +0000 Subject: [PATCH] Don't prototype _tolower() and _toupper(). They're not supposed to be functions, and there's no implementation of them in any case. --- include/ctype.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/ctype.h b/include/ctype.h index dfc89ccd595..103619c3b61 100644 --- a/include/ctype.h +++ b/include/ctype.h @@ -65,8 +65,6 @@ int tolower(int); int toupper(int); #if __XSI_VISIBLE -int _tolower(int); -int _toupper(int); int isascii(int); int toascii(int); #endif