Ticket #20326: patch-include-apr.hnw.diff
File patch-include-apr.hnw.diff, 695 bytes (added by nerdling (Jeremy Lavergne), 15 years ago) |
---|
-
apr.hnw
old new 240 240 typedef int apr_int32_t; 241 241 typedef unsigned int apr_uint32_t; 242 242 243 typedef long longapr_int64_t;244 typedef u nsigned long longapr_uint64_t;243 typedef int64_t apr_int64_t; 244 typedef uint64_t apr_uint64_t; 245 245 246 246 typedef size_t apr_size_t; 247 247 typedef ssize_t apr_ssize_t; … … 262 262 #define APR_IS_BIGENDIAN 0 263 263 264 264 #ifdef UNKNOWN_NETWARE_64BIT_FLAG_NEEDED 265 #define APR_SIZEOF_VOIDP 8 265 #ifndef __LP64__ 266 #define APR_SIZEOF_VOIDP 4 266 267 #else 268 #define APR_SIZEOF_VOIDP 8 269 #endif#else 267 270 #define APR_SIZEOF_VOIDP 4 268 271 #endif 269 272