aboutsummaryrefslogtreecommitdiff
path: root/src/interp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp.c')
-rw-r--r--src/interp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interp.c b/src/interp.c
index 0d809dc..6c198b3 100644
--- a/src/interp.c
+++ b/src/interp.c
@@ -1,4 +1,5 @@
#include <platform.h>
+#include <ducky.h>
/*******************************************************************************
* The scripting language implemented here is an extension of DuckyScript.
@@ -44,8 +45,6 @@
#define MIN(x,y) ((x<y)?(x):(y))
-typedef long long int vartype;
-
/*** Globals ***/
static off_t *line_offset = NULL;