2016-07-09 11:21:54 +02:00

11 lines
85 B
C

extern int b();
extern int c();
extern int d();
int main()
{
c();
b();
d();
}