Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
c-c++-common
/
pr36513-2.c
blob: d81c81dd4da08f812e7f4ca7f0b0e5852774f1d8 [
file
] [
log
] [
blame
]
/* 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
);
return
0
;
}