diff options
| author | nasr <nsrddyn@gmail.com> | 2026-04-13 15:33:05 +0200 |
|---|---|---|
| committer | nasr <nsrddyn@gmail.com> | 2026-04-13 15:36:24 +0200 |
| commit | 9d09d66a273f68fae7efb71504bf40c664b91983 (patch) | |
| tree | 41a46c52a01338bf22d5f3ebdf0bb27dc3d33cc1 /source/base/base_include.h | |
feature(main): init
feature(main): init
feature(main): init
feature(main): init
Diffstat (limited to 'source/base/base_include.h')
| -rwxr-xr-x | source/base/base_include.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/source/base/base_include.h b/source/base/base_include.h new file mode 100755 index 0000000..c8eec41 --- /dev/null +++ b/source/base/base_include.h | |||
| @@ -0,0 +1,34 @@ | |||
| 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 <sys/syscall.h> | ||
| 8 | #include <fcntl.h> | ||
| 9 | #include <stdint.h> | ||
| 10 | #include <stddef.h> | ||
| 11 | #include <string.h> | ||
| 12 | #include <unistd.h> | ||
| 13 | |||
| 14 | #include "base.h" | ||
| 15 | #include "base_mem.h" | ||
| 16 | #include "base_arena.h" | ||
| 17 | #include "base_stack.h" | ||
| 18 | #include "base_string.h" | ||
| 19 | |||
| 20 | #include "base_io.h" | ||
| 21 | #include "base_error.h" | ||
| 22 | #include "base_test.h" | ||
| 23 | |||
| 24 | #ifdef BASE_UNITY | ||
| 25 | |||
| 26 | #include "base_arena.c" | ||
| 27 | #include "base_stack.c" | ||
| 28 | |||
| 29 | #endif | ||
| 30 | |||
| 31 | #include "base_os.h" | ||
| 32 | |||
| 33 | |||
| 34 | #endif | ||
