/* 20011109-2.c from the execute part of the gcc torture tests. */ #include #ifdef __SDCC #pragma std_c99 #endif void testTortureExecute (void) { const char *c1 = "foo"; const char *c2 = "foo"; int i; for (i = 0; i < 3; i++) if (c1[i] != c2[i]) ASSERT (0); return; }