mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07: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;
|
||
|
}
|