blob: 829f2942d8a4aa39e7e01d3825dd8decbb4d2acd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef prb_h
#define prb_h
#include "types.h"
#include "macros.h"
#include "sys.h"
#include "arena.h"
#include "prbm.h"
#include "prbs.h"
#define os_none 0
#define os_windows 1
#define os_linux 2
#if defined(__linux)
# define os os_linux
#elif defined(__WIN64)
# define os os_windows
# include <windows.h>
#endif
#endif
|