strcmp()1 static int strcmp(){return-1;}
2 #define strcmp __builtin_strcmp
main()3 main()
4 {
5 if(strcmp("X","X\376")>=0)abort();
6 exit(0);
7 }
8