aboutsummaryrefslogtreecommitdiff
path: root/src/vm/runner/runner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/runner/runner.h')
-rw-r--r--src/vm/runner/runner.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vm/runner/runner.h b/src/vm/runner/runner.h
index 80ef571..71fde6d 100644
--- a/src/vm/runner/runner.h
+++ b/src/vm/runner/runner.h
@@ -14,7 +14,8 @@ extern const BuiltinFunction BUILTIN_FUNCTIONS[];
extern const char *BUILTIN_FUNCTION_NAMES[];
extern const size_t BUILTIN_FUNCTIONS_SIZE;
-extern bool runner(SourceCode *code);
+extern bool runner(SourceCode *souceCode);
+extern bool runnerWithPrint(SourceCode *souceCode);
extern bool _runner(Instructions instructions);
extern bool runInstruction(Instruction instruction, void ***restrict stack,