summaryrefslogtreecommitdiff
path: root/prb.h
blob: cbf4c52e0b39810a8e6bdb38cdfd72e0aeb0e60d (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