3 #define HAVE_FUNCTION_STRTOL 1
4 #define HAVE_FUNCTION_STRTOUL 1
5 #define HAVE_FUNCTION_STRTOL 1
6 #define HAVE_FUNCTION_STRTOULL 1
8 #if defined(MACOSX) || defined(SOLARIS) || defined(LINUX) || (defined _MSC_VER && _MSC_VER >= 1600)
11 #define HAVE_INTTYPES_H
19 #ifdef HAVE_INTTYPES_H
23 #if !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H)
25 // if we do not have the standard C99 integer types, then define them based on the respective SAL types
26 #if !defined(_SYS_TYPES_H)
27 typedef sal_Int8
int8_t;
28 typedef sal_Int16
int16_t;
29 typedef sal_Int32
int32_t;
30 #endif // !defined(_SYS_TYPES_H)
31 typedef sal_uInt8
uint8_t;
32 typedef sal_uInt16
uint16_t;
33 typedef sal_uInt32
uint32_t;
34 typedef sal_Int64
int64_t;
35 typedef sal_uInt64
uint64_t;
36 #endif // !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H)