blob: 33b9450f6be88a4f2d090dabed00e36df7c81ce8 [file] [log] [blame]
// test for implicit declaration
// Special g++ Options: -w -fpermissive
int
main ()
{
return blarg ();
}
extern "C" int
blarg (...)
{
return 0;
}