aboutsummaryrefslogtreecommitdiff
path: root/src/extratypes.h
blob: bc32dcdf1ff5bdc2cdce10df1a7d7f31c5adf30a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef EXTRA_TYPES_H
#define EXTRA_TYPES_H

#include "bu/config.h"

namespace Bu
{
#ifdef USE_64BIT_IO
	typedef int64_t		size;
	typedef uint64_t	usize;
#else
	typedef int32_t		size;
	typedef uint32_t	usize;
#endif
};

#endif