mirror of https://github.com/rui314/chibicc
8 lines
140 B
C
8 lines
140 B
C
|
#include "chibicc.h"
|
||
|
|
||
|
// Entry point function of the preprocessor.
|
||
|
Token *preprocess(Token *tok) {
|
||
|
convert_keywords(tok);
|
||
|
return tok;
|
||
|
}
|