aboutsummaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-09-01 21:26:01 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-09-01 21:26:01 +0100
commit700c3b1d1b3ed835ffab3fd502ab91baba8e2d1f (patch)
tree69029747231d8fa60d3cb05f965e796d2211f021 /test.c
parentcc56a2ee2b5703f9ea5ac63a86870af188845c30 (diff)
downloadalisp-700c3b1d1b3ed835ffab3fd502ab91baba8e2d1f.tar.gz
alisp-700c3b1d1b3ed835ffab3fd502ab91baba8e2d1f.tar.bz2
alisp-700c3b1d1b3ed835ffab3fd502ab91baba8e2d1f.zip
Move implementation files into their own folder
main.c and test.c generate binary executables so they can stay in the main folder, but the rest can go into their own dedicated folder to make it look nicer
Diffstat (limited to 'test.c')
-rw-r--r--test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.c b/test.c
index c4c1838..e517286 100644
--- a/test.c
+++ b/test.c
@@ -16,7 +16,7 @@
#include <stdio.h>
#include <string.h>
-#include "./alisp.h"
+#include <alisp.h>
#define TEST_PASSED() printf("[%s]: Pass\n", __func__)
#define TEST(NAME, COND) \