blob: 1e5f6d4aab689b991ab08e9d7ec32d8fb110d3b1 [file] [log] [blame]
extern int b();
extern int c();
extern int d();
int main()
{
c();
b();
d();
}