blob: dc42eb2e1a677414b32001de061eb1868acd5827 [file] [log] [blame]
int a(void);
int b(void);
int c(void);
int d(void);
int e(void);
int f(void);
int main(void)
{
a();
b();
c();
d();
e();
f();
return 0;
}