summaryrefslogtreecommitdiff
path: root/source/base/base_include.h
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-04-16 17:10:02 +0200
committernasr <nsrddyn@gmail.com>2026-04-16 17:10:02 +0200
commit8ea6a3c8621287d11296b8300029f32a27743d9a (patch)
treecd12aa5fcd3e058fa74b45705c7b82524658d444 /source/base/base_include.h
parentf430bfe8f71430032bec689bf0bbdc94ac409c22 (diff)
feature(checkpoint): checkpoint cleaning up base library
Diffstat (limited to 'source/base/base_include.h')
-rwxr-xr-xsource/base/base_include.h30
1 files changed, 22 insertions, 8 deletions
diff --git a/source/base/base_include.h b/source/base/base_include.h
index 3f83fd7..55ef0db 100755
--- a/source/base/base_include.h
+++ b/source/base/base_include.h
@@ -4,27 +4,41 @@
4#include <dirent.h> 4#include <dirent.h>
5#include <sys/mman.h> 5#include <sys/mman.h>
6#include <sys/stat.h> 6#include <sys/stat.h>
7#include <sys/syscall.h>
7#include <fcntl.h> 8#include <fcntl.h>
8#include <stdint.h> 9#include <stdint.h>
9#include <stddef.h> 10#include <stddef.h>
10#include <string.h> 11#include <string.h>
12#include <math.h>
11#include <unistd.h> 13#include <unistd.h>
14#include <time.h>
12 15
13#include "base.h" 16#include "base.h"
14#include "base_mem.h" 17#include "base_mem.h"
18
15#include "base_arena.h" 19#include "base_arena.h"
16#include "base_parse.h"
17#include "base_stack.h" 20#include "base_stack.h"
18#include "base_test.h"
19 21
20#if defined(TB_IMPLEMENTATION) 22#include "base_string.h"
23#include "base_string.c"
21 24
22#include "base_mem.c" 25#ifdef BASE_PLATFORM
23#include "base_arena.c" 26#include <X11/X.h>
24#include "base_parse.c" 27#include <X11/Xlib.h>
25#include "base_stack.c" 28#include <X11/keysym.h>
26#include "base_test.c" 29
30#include "base_platform.h"
27 31
28#endif 32#endif
29 33
34#include "base_error.h"
35#include "base_os.h"
36
37#include "base_rand.h"
38
39#ifdef BASE_IMPLEMENTATION
40#include "base_arena.c"
41#endif
42
43
30#endif 44#endif