vrshoot

view src/vccompat/stdint.h @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
line source
1 #ifndef MSVC_COMPAT_STDINT_H_
2 #define MSVC_COMPAT_STDINT_H_
4 #ifdef _MSC_VER
5 typedef __int8 int8_t;
6 typedef unsigned __int8 uint8_t;
7 typedef __int16 int16_t;
8 typedef unsigned __int16 uint16_t;
9 typedef __int32 int32_t;
10 typedef unsigned __int32 uint32_t;
11 typedef __int64 int64_t;
12 typedef unsigned __int64 uint64_t;
13 #endif
15 #endif /* MSVC_COMPAT_STDINT_H_ */