/* Test case by Joseph S. Myers . */ #undef __USE_STRING_INLINES #define __USE_STRING_INLINES #include #include #include int main (void) { const char *a = "abc"; const char *b = a; strpbrk (b++, ""); if (b != a + 1) return 1; return 0; }