cosmopolitan/third_party/chibicc/chibicc.main.c
Justine Tunney 81ef162703 Create integrated assembler for chibicc
All we need now to complete the triforce is an integrated linker. That
way Cosmpolitan will let C be a "build anywhere run anywhere" language.
2020-12-29 22:40:59 -08:00

5 lines
108 B
C

#include "third_party/chibicc/chibicc.h"
int main(int argc, char **argv) {
return chibicc(argc, argv);
}