Rev 6 | Blame | Compare with Previous | Last modification | View Log | RSS feed
#ifndef __HACKED_LINUX_CTYPE_INCLUDED
#define __HACKED_LINUX_CTYPE_INCLUDED
#include_next <ctype.h>
/* These are meant to be defined as macros */
#ifndef _toupper
#define _toupper( c ) ( _toupper ) ( c )
#endif
#ifndef _tolower
#define _tolower( c ) ( _tolower ) ( c )
#endif
#endif