blob: 3f83fd7032df3bfa096fbe82a78dd8ed685a4c6b (
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
|
#ifndef BASE_INCLUDE_H
#define BASE_INCLUDE_H
#include <dirent.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdint.h>
#include <stddef.h>
#include <string.h>
#include <unistd.h>
#include "base.h"
#include "base_mem.h"
#include "base_arena.h"
#include "base_parse.h"
#include "base_stack.h"
#include "base_test.h"
#if defined(TB_IMPLEMENTATION)
#include "base_mem.c"
#include "base_arena.c"
#include "base_parse.c"
#include "base_stack.c"
#include "base_test.c"
#endif
#endif
|