mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-30 05:15:03 +00:00
20 lines
147 B
C
20 lines
147 B
C
|
|
||
|
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;
|
||
|
}
|