Use common bits/shm.h for more architectures.
[glibc.git] / string / bug-strpbrk1.c
blob8e909a1e21288142b93c7f19750dbd05b97db28a
1 /* Test case by Joseph S. Myers <jsm28@cam.ac.uk>. */
2 #undef __USE_STRING_INLINES
3 #define __USE_STRING_INLINES
4 #include <string.h>
5 #include <stdlib.h>
6 #include <stdio.h>
7 #include <libc-diag.h>
9 int
10 main (void)
12 const char *a = "abc";
13 const char *b = a;
15 DIAG_PUSH_NEEDS_COMMENT;
16 /* GCC 9 correctly warns that this call to strpbrk is useless. That
17 is deliberate; this test is verifying that a side effect in an
18 argument still occurs when the call itself is useless and could
19 be optimized to return a constant. */
20 DIAG_IGNORE_NEEDS_COMMENT (9, "-Wunused-value");
21 strpbrk (b++, "");
22 DIAG_POP_NEEDS_COMMENT;
23 if (b != a + 1)
24 return 1;
26 return 0;