2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / c90-impl-decl-1.c
blob4e4431e6bec2dadd69fcf4c6418f3b14446fba5c
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:1990 -pedantic-errors" } */
6 void
7 foo (void)
9 bar ();
12 /* C90 subclause 7.1.7 says we can implicitly declare strcmp; C99 removes
13 implict declarations.
15 int
16 bar (const char *a, const char *b)
18 /* This fails for GCC CVS 20000709, but is not marked XFAIL since
19 GCC 2.95.2 passes.
21 return strcmp (a, b); /* { dg-bogus "implicit" "implicit declaration warning for strcmp" } */