/* preload.c by Michael Thorpe 2010-08-11 */ #include "lisp.h" int preload_init() { obj *c,*o,*s; /* macroexpansions.c has to be before functions.c, because functions.c directly adds things to #macro-expansions */ #include "macroexpand.c" #include "compiler.c" #include "functions.c" #include "optimizer.c" return(0); }