PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-impl-decl-1.c
blobbc4f5fe58fcda33c752eb96f9eb0d0323d5ecce0
1 /* Test for implicit function declaration: in C90 only. */
2 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
3 /* { dg-do compile } */
4 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
6 void
7 foo (void)
9 bar (); /* { dg-bogus "warning" "warning in place of error" } */
10 /* { dg-error "implicit" "C99 implicit declaration error" { target *-*-* } .-1 } */
13 /* C90 subclause 7.1.7 says we can implicitly declare strcmp; C99 removes
14 implict declarations.
16 int
17 bar (const char *a, const char *b)
19 return strcmp (a, b); /* { dg-bogus "warning" "warning in place of error" } */
20 /* { dg-error "implicit" "C99 implicit declaration error" { target *-*-* } .-1 } */