MazuCC
MazuCC copied to clipboard
It does not have support for preprocessors, as it is #include
When wanting to do #include <stdio.h> an error appears:
mzcc --dump-ast ./main.c -o ./x
lexer.c:209: Unexpected character: '#'
It is a known issue, and I would not maintain MazuCC though.
Ohh, ok... ¿It has support towards extern?
I tried to do the following but it fails:
extern int printf (const char *__restrict __format, ...);