1
0

types.h: Add arch_uint_ptr to make comparing native pointer types easier

This commit is contained in:
2012-11-15 00:27:49 -05:00
parent a1fb385d97
commit ccd5a9025a
5 changed files with 12 additions and 8 deletions

View File

@ -18,4 +18,5 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
typedef unsigned int uint32;
typedef unsigned long uint32;
typedef unsigned long long uint64;

View File

@ -42,7 +42,7 @@ struct atag_core {
struct atag_mem {
uint32 size; /* size of the area */
uint32 start; /* physical start address */
arch_uint_ptr start; /* physical start address */
};
struct atag {