diff --git a/shell.c b/jank-shell/shell.c similarity index 93% rename from shell.c rename to jank-shell/shell.c index 543f23e..e33354a 100644 --- a/shell.c +++ b/jank-shell/shell.c @@ -1,7 +1,7 @@ #include "shell.h" -#include "stlio.h" -#include "mem.h" -#include "pit.h" +#include "../stlio.h" +#include "../mem.h" +#include "../pit.h" char line[LINE_LENGTH]; diff --git a/shell.h b/jank-shell/shell.h similarity index 68% rename from shell.h rename to jank-shell/shell.h index c3d18ee..25e7a48 100644 --- a/shell.h +++ b/jank-shell/shell.h @@ -1,4 +1,4 @@ -#include "types.h" +#include "../types.h" void strip_newline(char*);