2024-04-14 22:45:38 +02:00

11 lines
89 B
C

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