mirror of
https://github.com/mirror/tinycc.git
synced 2026-08-22 11:23:27 +08:00
sometimes abstract decls in parameter lists left the returned name
uninitialized potentially leading to segfaults, like in
int f(int ()) {
return 0;
}
Deal with this.