comparison runtime/plat_types.h @ 48:a24eb366195c

Fixed some bugs introduced in previous commit and moved definition of integer methods out of runtime and into the compiler
author Mike Pavone <pavone@retrodev.com>
date Tue, 02 Mar 2010 00:18:49 -0500
parents d61550e2c001
children
comparison
equal deleted inserted replaced
47:6202b866d72c 48:a24eb366195c
9 typedef long long int64_t; 9 typedef long long int64_t;
10 typedef unsigned char uint8_t; 10 typedef unsigned char uint8_t;
11 typedef unsigned short uint16_t; 11 typedef unsigned short uint16_t;
12 typedef unsigned int uint32_t; 12 typedef unsigned int uint32_t;
13 typedef unsigned long long uint64_t; 13 typedef unsigned long long uint64_t;
14 typedef unsigned int uintptr_t;
14 15
15 #else 16 #else
16 #include <stdint.h> 17 #include <stdint.h>
17 #endif 18 #endif
18 19