blob: 554195f4e49c84abeda93bda18b0a91ebe9639e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "ungrateful.h"
#if defined(OS_WINDOWS)
#include <windows.h>
#elif defined(OS_LINUX)
#endif
#include "un_memory.c"
#include "un_strings.c"
#include "un_wstrings.c"
#include "un_list.c"
#include "un_math.c"
#include "un_vec.c"
#include "un_vecd.c"
#include "un_sort.c"
void un_init(u64 size_of_temp_mem) {
un_alloc_temp_init(size_of_temp_mem);
}
|