mirror of
https://github.com/foxsen/archbase.git
synced 2026-02-04 10:54:05 +08:00
5 lines
148 B
C
5 lines
148 B
C
extern int nested(int a, int b, int c, int d, int e, int f, int g, int h, int i);
|
|
int normal(void){
|
|
return nested(1, 2, 3, 4, 5, 6, 7, 8, 9);
|
|
}
|