diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-09-01 21:26:01 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-09-01 21:26:01 +0100 |
commit | 700c3b1d1b3ed835ffab3fd502ab91baba8e2d1f (patch) | |
tree | 69029747231d8fa60d3cb05f965e796d2211f021 /main.c | |
parent | cc56a2ee2b5703f9ea5ac63a86870af188845c30 (diff) | |
download | alisp-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 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ #include <stdio.h> #include <string.h> -#include "./alisp.h" +#include <alisp.h> int main(void) { |