diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-08-20 21:24:07 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-08-20 21:24:07 +0100 |
commit | 643896e2c8a2a9088819d3410f94008a83f575c6 (patch) | |
tree | aa367281b44a0728888c864bf1cb71dd44bd3143 | |
parent | 3074ba5babaf39e4a177444a8ffb5f81b991440f (diff) | |
download | alisp-643896e2c8a2a9088819d3410f94008a83f575c6.tar.gz alisp-643896e2c8a2a9088819d3410f94008a83f575c6.tar.bz2 alisp-643896e2c8a2a9088819d3410f94008a83f575c6.zip |
rename base.h -> alisp.h
Makes more sense when you think about including it as an external
library
-rw-r--r-- | alisp.h (renamed from base.h) | 4 | ||||
-rw-r--r-- | constructor.c | 2 | ||||
-rw-r--r-- | main.c | 2 | ||||
-rw-r--r-- | symtable.c | 2 | ||||
-rw-r--r-- | sys.c | 2 | ||||
-rw-r--r-- | tag.c | 2 | ||||
-rw-r--r-- | vec.c | 2 |
7 files changed, 8 insertions, 8 deletions
@@ -12,8 +12,8 @@ * Description: All the definitions required for the lisp system */ -#ifndef BASE_H -#define BASE_H +#ifndef ALISP_H +#define ALISP_H #include <stdint.h> diff --git a/constructor.c b/constructor.c index e500430..fd1e0d0 100644 --- a/constructor.c +++ b/constructor.c @@ -14,7 +14,7 @@ #include <malloc.h> -#include "./base.h" +#include "./alisp.h" lisp_t *make_int(i64 i) { @@ -16,7 +16,7 @@ #include <stdio.h> #include <string.h> -#include "./base.h" +#include "./alisp.h" sv_t sv_copy(sv_t old) { @@ -12,7 +12,7 @@ * Description: Symbol Table implementation */ -#include "./base.h" +#include "./alisp.h" #include <malloc.h> #include <string.h> @@ -12,7 +12,7 @@ * Description: System management */ -#include "./base.h" +#include "./alisp.h" #include <assert.h> #include <malloc.h> @@ -15,7 +15,7 @@ #include <assert.h> #include <stdlib.h> -#include "./base.h" +#include "./alisp.h" lisp_t *tag_int(i64 i) { @@ -15,7 +15,7 @@ #include <malloc.h> #include <string.h> -#include "./base.h" +#include "./alisp.h" void vec_make(void **ptr, u64 size) { |