fuhsnn / slimcc

C11 compiler with GNU extensions for x86-64 Linux, working towards C23
MIT License
34 stars 4 forks source link

Comma separated declaration of multiple function prototypes #9

Closed fuhsnn closed 11 months ago

fuhsnn commented 11 months ago
int fn1(void), fn2(float);

Mixing with variables is also valid.

int fn(void), var1 = 7, fn2(void), var2 = 11;