aboutsummaryrefslogtreecommitdiff
path: root/src/types
diff options
context:
space:
mode:
Diffstat (limited to 'src/types')
-rw-r--r--src/types/parray.c4
-rw-r--r--src/types/str.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/types/parray.c b/src/types/parray.c
index 3dcc57f..25cd94c 100644
--- a/src/types/parray.c
+++ b/src/types/parray.c
@@ -3,7 +3,7 @@
#include <stdlib.h>
#include <string.h>
-#include "lua.h"
+#include "../lua.h"
#include "parray.h"
parray_t* parray_init(){
@@ -83,4 +83,4 @@ parray_t* parray_find(parray_t* p, char* match){
}
}
return ret;
-} \ No newline at end of file
+}
diff --git a/src/types/str.c b/src/types/str.c
index 279567f..f790dba 100644
--- a/src/types/str.c
+++ b/src/types/str.c
@@ -1,5 +1,5 @@
#include "str.h"
-#include "lua.h"
+#include "../lua.h"
str* str_init(char* init){
if(init == NULL){