|
|
Sac2c actually runs the c preprocessor on your file right after the code has been loaded.
|
|
|
This is achieved by running a c compiler with the -E flag.
|
|
|
It is the second step that runs in the compiler (scp:cpp) after confirming that the file exists (scp:loc).
|
|
|
|
|
|
This means that `#define` macros are expanded and `#include` files are included etc.
|
|
|
|
|
|
You probably don't really need `#include` because you can use the module system. |
|
|
\ No newline at end of file |