From 7591a024f184bd385d35583d19d86c1d5f2531ba Mon Sep 17 00:00:00 2001 From: Tom Schouten Date: Fri, 1 Sep 2006 13:45:31 +0000 Subject: pdp current darcs merge svn path=/trunk/externals/pdp/; revision=5816 --- include/pdp_types.h | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'include/pdp_types.h') diff --git a/include/pdp_types.h b/include/pdp_types.h index b021dd7..767a937 100644 --- a/include/pdp_types.h +++ b/include/pdp_types.h @@ -24,14 +24,25 @@ #ifndef PDP_TYPES_H #define PDP_TYPES_H +/* check + http://www.unix.org/whitepapers/64bit.html + on unix (LP64) int = 32bit + + it was like this: + + typedef signed long s32; + typedef unsigned long u32; +*/ + + typedef signed char s8; typedef signed short s16; -typedef signed long s32; +typedef signed int s32; typedef signed long long s64; typedef unsigned char u8; typedef unsigned short u16; -typedef unsigned long u32; +typedef unsigned int u32; typedef unsigned long long u64; -- cgit v1.2.1