blob: fad7ff0bfd2a2e0731c730f7f716fc57d98da7f6 (
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 PRB_H
#define PRB_H
#include <stdint.h>
#include <math.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdio.h>
#include "prb_types.h"
#include "prb_macros.h"
#include "prb_math.h"
#include "prb_arena.h"
#include "prb_sys.h"
#include "prb_string.h"
#define OS_NONE 0
#define OS_WINDOWS 1
#define OS_LINUX 2
#if defined(__linux)
#define OS OS_LINUX
#include "prb_linux.h"
#elif defined(__WIN64)
#define OS OS_WINDOWS
#include <windows.h>
#include "prb_windows.h"
#endif
#endif /* PRB_H */
|