diff options
Diffstat (limited to 'source/base/base_include.h')
| -rwxr-xr-x | source/base/base_include.h | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/source/base/base_include.h b/source/base/base_include.h index a376f29..8eabb3e 100755 --- a/source/base/base_include.h +++ b/source/base/base_include.h | |||
| @@ -2,37 +2,31 @@ | |||
| 2 | #define BASE_INCLUDE_H | 2 | #define BASE_INCLUDE_H |
| 3 | 3 | ||
| 4 | #include <dirent.h> | 4 | #include <dirent.h> |
| 5 | #include <unistd.h> | ||
| 5 | #include <sys/mman.h> | 6 | #include <sys/mman.h> |
| 6 | #include <sys/stat.h> | 7 | #include <sys/stat.h> |
| 7 | #include <sys/syscall.h> | 8 | #include <sys/syscall.h> |
| 8 | #include <fcntl.h> | 9 | #include <fcntl.h> |
| 10 | //- needed for random | ||
| 11 | #include <time.h> | ||
| 12 | #include <math.h> | ||
| 13 | #include <string.h> | ||
| 9 | #include <stdint.h> | 14 | #include <stdint.h> |
| 10 | #include <stddef.h> | 15 | #include <stddef.h> |
| 11 | #include <string.h> | ||
| 12 | #include <math.h> | ||
| 13 | #include <unistd.h> | ||
| 14 | #include <time.h> | ||
| 15 | #include <stdarg.h> | 16 | #include <stdarg.h> |
| 16 | 17 | ||
| 17 | #include "base.h" | 18 | #include <arm_neon.h> |
| 18 | #include "base_mem.h" | 19 | |
| 20 | #include <stdio.h> | ||
| 19 | 21 | ||
| 22 | #include "base.h" | ||
| 20 | #include "base_arena.h" | 23 | #include "base_arena.h" |
| 21 | #include "base_stack.h" | 24 | #include "base_stack.h" |
| 22 | |||
| 23 | #ifdef BASE_IMPLEMENTATION | ||
| 24 | #include "base_arena.c" | ||
| 25 | #endif | ||
| 26 | |||
| 27 | |||
| 28 | #include "base_string.h" | 25 | #include "base_string.h" |
| 29 | #include "base_string.c" | 26 | #include "base_math.h" |
| 30 | |||
| 31 | #include "base_os.h" | 27 | #include "base_os.h" |
| 32 | #include "base_error.h" | 28 | #include "base_error.h" |
| 33 | |||
| 34 | #include "base_rand.h" | 29 | #include "base_rand.h" |
| 35 | 30 | #include "base_simd.h" | |
| 36 | |||
| 37 | 31 | ||
| 38 | #endif | 32 | #endif |
