diff options
| author | nasr <nsrddyn@gmail.com> | 2026-03-26 22:35:30 +0100 |
|---|---|---|
| committer | nasr <nsrddyn@gmail.com> | 2026-04-13 17:24:42 +0200 |
| commit | dd5586abec207dd4acd16d51ce0d392c03e5e957 (patch) | |
| tree | e56573f49ebb2a3236a39148842dc80bde5a286d /source/base/base_include.h | |
feature(main): initmain
feature(main): init
Diffstat (limited to 'source/base/base_include.h')
| -rwxr-xr-x | source/base/base_include.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/source/base/base_include.h b/source/base/base_include.h new file mode 100755 index 0000000..40ae5ea --- /dev/null +++ b/source/base/base_include.h | |||
| @@ -0,0 +1,27 @@ | |||
| 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_stack.h" | ||
| 17 | #include "base_test.h" | ||
| 18 | #include "base_string.h" | ||
| 19 | #include "base_os.h" | ||
| 20 | |||
| 21 | #ifdef BASE_UNITY | ||
| 22 | |||
| 23 | #include "base_arena.c" | ||
| 24 | #include "base_stack.c" | ||
| 25 | |||
| 26 | #endif | ||
| 27 | #endif | ||
