blob: 8eabb3e91707c663d9bfd5dd6d45c9f90233f018 (
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
|
#ifndef BASE_INCLUDE_H
#define BASE_INCLUDE_H
#include <dirent.h>
#include <unistd.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <fcntl.h>
//- needed for random
#include <time.h>
#include <math.h>
#include <string.h>
#include <stdint.h>
#include <stddef.h>
#include <stdarg.h>
#include <arm_neon.h>
#include <stdio.h>
#include "base.h"
#include "base_arena.h"
#include "base_stack.h"
#include "base_string.h"
#include "base_math.h"
#include "base_os.h"
#include "base_error.h"
#include "base_rand.h"
#include "base_simd.h"
#endif
|