Revert r135493 & r135463
[official-gcc.git] / libmudflap / testsuite / libmudflap.c / pass47-frag.c
blob9e4ac50ef3fed3783c906e6371dbb069da67be19
1 #include <stdlib.h>
2 #include <ctype.h>
4 int main ()
6 char* buf = "hello";
7 return ! ((toupper (buf[0]) == 'H' && toupper ('z') == 'Z' &&
8 tolower (buf[4]) == 'o' && tolower ('X') == 'x' &&
9 isdigit (buf[3])) == 0 && isalnum ('4'));