aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/kernel/bs_stdint.h
blob: aded9f0e04b7651a6bdc1198654f8089224e93cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef SWORD25_STDINT_H
#define SWORD25_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