From a15cf8adb15821a895718a85aafc3c8f06d9e6f1 Mon Sep 17 00:00:00 2001 From: Fritz Elfert Date: Fri, 15 Feb 2002 08:50:04 +0000 Subject: - Fixed psitime again. Waaahh, these guys at symbian change filetimes when switching DST/Non-DST. --- include/plp_inttypes.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 include/plp_inttypes.h (limited to 'include') diff --git a/include/plp_inttypes.h b/include/plp_inttypes.h new file mode 100644 index 0000000..0c92d80 --- /dev/null +++ b/include/plp_inttypes.h @@ -0,0 +1,35 @@ +#ifndef _INTTYPES_H_ +#define _INTTYPES_H_ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include + +#ifdef HAVE_STDINT_H +#include +#endif + +#ifdef HAVE_SYS_INT_TYPES_H +#include +#endif + +#ifndef GNU_INTTYPES +#ifdef ISO_INTTYPES +typedef uint8_t u_int8_t; +typedef uint16_t u_int16_t; +typedef uint32_t u_int32_t; +typedef uint64_t u_int64_t; +typedef int64_t s_int64_t; +#else +/* Last resort, declare ourselves */ +typedef unsigned char u_int8_t; +typedef unsigned short u_int16_t; +typedef unsigned int u_int32_t; +typedef unsigned long long u_int64_t; +typedef signed long long s_int64_t; +#endif // ISO_INTTYPES +#endif // GNU_INTTYPES + +#endif // _INTTYPES_H_ -- cgit v1.2.3