aboutsummaryrefslogtreecommitdiff
path: root/src/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/io.c')
-rw-r--r--src/io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/io.c b/src/io.c
index cc33a71..852d175 100644
--- a/src/io.c
+++ b/src/io.c
@@ -1,5 +1,5 @@
#include <unistd.h>
-#include "i_str.h"
+#include "types/str.h"
#include "io.h"
#include "stdlib.h"
#include "stdio.h"
@@ -30,7 +30,7 @@ int l_readfile(lua_State* L){
char* out = calloc(sz + 1, sizeof * out);
fread(out, sizeof * out, sz, fp);
-
+
lua_pushlstring(L, out, sz);
fclose(fp);