diff options
Diffstat (limited to 'strcasecmp.c')
-rw-r--r-- | strcasecmp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/strcasecmp.c b/strcasecmp.c index 33879c3c..8d9b43b9 100644 --- a/strcasecmp.c +++ b/strcasecmp.c @@ -19,10 +19,16 @@ static char sccsid[] = "@(#)strcasecmp.c 5.6 (Berkeley) 6/27/88"; #endif /* LIBC_SCCS and not lint */ +#if defined(QNX) +#include <sys/types.h> +#else + #ifndef(u_char) typedef unsigned char u_char; #endif +#endif + /* * This array is designed for mapping upper and lower case letter * together for a case independent comparison. The mappings are |