aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/kernel/bs_stdint.h
blob: 5334c3051c3c4d89820793935f21d5b4355b3e9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef BS_STDINT_H
#define BS_STDINT_H

#ifdef _MSC_VER
	typedef unsigned __int8	 uint8_t;
	typedef unsigned __int16 uint16_t;
	typedef unsigned __int32 uint32_t;
	typedef unsigned __int64 uint64_t;
	typedef signed   __int8  int8_t;
	typedef signed   __int16 int16_t;
	typedef signed   __int32 int32_t;
	typedef signed   __int64 int64_t;
#else
	#include <stdint.h>
#endif

#endif