1 2 3 4 5 6 7 8 9 10 11 12 13
/* PR 36513: -Wlogical-op warns about strchr */ /* { dg-do compile } */ /* { dg-options "-Wlogical-op" } */ #ifdef __cplusplus #include <cstring> #else #include <string.h> #endif int main2 () { char *s, t; strchr (s, t); }