diff 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
line wrap: on
line diff
--- a/runtime/plat_types.h	Tue Dec 22 01:22:09 2009 -0500
+++ b/runtime/plat_types.h	Tue Mar 02 00:18:49 2010 -0500
@@ -10,7 +10,8 @@
 typedef unsigned char uint8_t;
 typedef unsigned short uint16_t;
 typedef unsigned int uint32_t;
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
+typedef unsigned int uintptr_t;
 
 #else
 #include <stdint.h>