summaryrefslogtreecommitdiff
path: root/source/base/base_include.h
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-04-14 23:11:49 +0200
committernasr <nsrddyn@gmail.com>2026-04-14 23:11:49 +0200
commit154bf6f53529e88dfa03d6ff5034b575f92cdbb5 (patch)
tree04acbc1039719c610f11712b57e1786092f89242 /source/base/base_include.h
parent4d2a2af0c7d4eec9a9e43e0ba08813fdebaf8f9c (diff)
feature(setup): base implementation
Diffstat (limited to 'source/base/base_include.h')
-rwxr-xr-xsource/base/base_include.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/source/base/base_include.h b/source/base/base_include.h
new file mode 100755
index 0000000..54844d4
--- /dev/null
+++ b/source/base/base_include.h
@@ -0,0 +1,36 @@
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
17#include "base_arena.h"
18#include "base_stack.h"
19
20#include "base_string.h"
21#include "base_string.c"
22
23
24#ifdef BASE_MATH_IMPLEMENTATION
25#include <math.h>
26//- needs math.h
27#include "base_rand.h"
28#endif
29#include "base_io.h"
30#include "base_error.h"
31#include "base_test.h"
32#ifdef BASE_UNITY
33#include "base_arena.c"
34#endif
35#include "base_os.h"
36#endif