chibicc/preprocess.c
2020-12-07 12:00:06 +09:00

8 lines
140 B
C

#include "chibicc.h"
// Entry point function of the preprocessor.
Token *preprocess(Token *tok) {
convert_keywords(tok);
return tok;
}