chibicc/preprocess.c

8 lines
140 B
C
Raw Normal View History

2020-08-18 03:41:59 +03:00
#include "chibicc.h"
// Entry point function of the preprocessor.
Token *preprocess(Token *tok) {
convert_keywords(tok);
return tok;
}