blob: 6847f7d640447ec9ea5877508186f16e7285c163 [file] [log] [blame]
extern int b();
extern int c();
extern int d();
int main(void)
{
c();
b();
d();
}