|
|
|
@ -3,7 +3,7 @@
|
|
|
|
|
#include "debug.h" |
|
|
|
|
#include "object.h" |
|
|
|
|
#include "globals.h" |
|
|
|
|
#include "arifmetic.h" |
|
|
|
|
#include "builtin.h" |
|
|
|
|
#include "parser/parser.h" |
|
|
|
|
// We can't include lexical.h before grammatical.h, because of strange errors, but grammatical.h only needs definition of yyscan_t
|
|
|
|
|
#ifndef YY_TYPEDEF_YY_SCANNER_T |
|
|
|
@ -80,7 +80,7 @@ int ParseConfigFile(const char* config)
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int RegisterArifmeticFunctions() |
|
|
|
|
int RegisterBuiltinFunctions() |
|
|
|
|
{ |
|
|
|
|
RegisterFunction("ADD",Arifm_Add); |
|
|
|
|
RegisterFunction("SUB",Arifm_Sub); |
|
|
|
|