f070035e54
From-SVN: r24151
15 lines
153 B
C
15 lines
153 B
C
// test for implicit declaration
|
|
// Special g++ Options: -w -fpermissive
|
|
|
|
int
|
|
main ()
|
|
{
|
|
return blarg ();
|
|
}
|
|
|
|
extern "C" int
|
|
blarg (...)
|
|
{
|
|
return 0;
|
|
}
|