comparison runtime/plat_types.h @ 63:04baa003de5a

Merged latest changes with better C branch
author Mike Pavone <pavone@retrodev.com>
date Wed, 05 May 2010 22:12:23 -0400
parents a24eb366195c
children
comparison
equal deleted inserted replaced
62:b218af069da7 63:04baa003de5a
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