mirror of
https://github.com/rui314/chibicc
synced 2025-02-18 14:44:16 +03:00
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;
|
|
}
|