rt_gccstream/gcc/testsuite/c-c++-common/pr36513-2.c

14 lines
228 B
C

/* 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);
}