Closed tavianator closed 5 years ago
$ cat foo.c void *malloc(unsigned long size); int main() { int *x; x = malloc(sizeof(*x)); return x ? 0 : -1; } $ ./src/bic foo.c Parser Error: <stdin>:5 syntax error, unexpected '*'.
Should now be fixed. Thanks for the report!