diff options
| author | nasr <nsrddyn@gmail.com> | 2026-03-13 22:31:21 +0100 |
|---|---|---|
| committer | nasr <nsrddyn@gmail.com> | 2026-03-13 22:31:21 +0100 |
| commit | 444bfa2f41143aff7490e4fa21565947565b7d30 (patch) | |
| tree | 696b06d40140c85805d171597e37deb8290ead73 /source/base/base_include.h | |
| parent | 3913d1778318cd0c6bfb871148d38abb33ec7fd3 (diff) | |
cleanup: generalisation
Diffstat (limited to 'source/base/base_include.h')
| -rwxr-xr-x | source/base/base_include.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/source/base/base_include.h b/source/base/base_include.h new file mode 100755 index 0000000..3f83fd7 --- /dev/null +++ b/source/base/base_include.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | #ifndef BASE_INCLUDE_H | ||
| 2 | #define BASE_INCLUDE_H | ||
| 3 | |||
| 4 | #include <dirent.h> | ||
| 5 | #include <sys/mman.h> | ||
| 6 | #include <sys/stat.h> | ||
| 7 | #include <fcntl.h> | ||
| 8 | #include <stdint.h> | ||
| 9 | #include <stddef.h> | ||
| 10 | #include <string.h> | ||
| 11 | #include <unistd.h> | ||
| 12 | |||
| 13 | #include "base.h" | ||
| 14 | #include "base_mem.h" | ||
| 15 | #include "base_arena.h" | ||
| 16 | #include "base_parse.h" | ||
| 17 | #include "base_stack.h" | ||
| 18 | #include "base_test.h" | ||
| 19 | |||
| 20 | #if defined(TB_IMPLEMENTATION) | ||
| 21 | |||
| 22 | #include "base_mem.c" | ||
| 23 | #include "base_arena.c" | ||
| 24 | #include "base_parse.c" | ||
| 25 | #include "base_stack.c" | ||
| 26 | #include "base_test.c" | ||
| 27 | |||
| 28 | #endif | ||
| 29 | |||
| 30 | #endif | ||
