Don't prototype _tolower() and _toupper(). They're not supposed to be

functions, and there's no implementation of them in any case.
This commit is contained in:
David Schultz 2009-03-14 19:04:24 +00:00
parent dd5185d15f
commit c6bd0d5621
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189811

View file

@ -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