blob: 55ef0db474898e2af4dec83688c5e2defb35c774 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#ifndef BASE_INCLUDE_H
#define BASE_INCLUDE_H
#include <dirent.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <fcntl.h>
#include <stdint.h>
#include <stddef.h>
#include <string.h>
#include <math.h>
#include <unistd.h>
#include <time.h>
#include "base.h"
#include "base_mem.h"
#include "base_arena.h"
#include "base_stack.h"
#include "base_string.h"
#include "base_string.c"
#ifdef BASE_PLATFORM
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/keysym.h>
#include "base_platform.h"
#endif
#include "base_error.h"
#include "base_os.h"
#include "base_rand.h"
#ifdef BASE_IMPLEMENTATION
#include "base_arena.c"
#endif
#endif
|