#ifndef SK_NATIVES_H #define SK_NATIVES_H #include "commons.h" #include "state.h" #include "sym.h" void natives_populate(struct state* state, struct sym* sym); void natives_decl(struct state* state, struct sym* sym, char* name, nfun_body fun, int arity); SK native_println(struct state* state, struct vec* args); #endif