tisp

tiny lisp
git clone git://edryd.org/tisp
Log | Files | Refs | LICENSE

commit 2296156365b7c8c2808c589059dd9db6569c2de1
parent 1715f48abd1f7070eb0ae0ba44fde2a9483a6c41
Author: Ed van Bruggen <edvb@uw.edu>
Date:   Thu,  3 Jan 2019 20:30:00 -0800

Fix includes in test.c

Diffstat:
.gitignore | 1+
test.c | 6+++---
2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -6,6 +6,7 @@ # compiled files tisp +test *.exe *.out *.app diff --git a/test.c b/test.c @@ -5,9 +5,9 @@ #include <string.h> #include <unistd.h> -#include "../util.h" -#include "../tisp.h" -#include "../tib/math.h" +#include "util.h" +#include "tisp.h" +#include "tib/math.h" int tisp_test(Env env, const char *input, const char *expect)