summaryrefslogtreecommitdiff
path: root/include/apr.hwc
diff options
context:
space:
mode:
authorThomas J. Donovan <tdonovan@apache.org>2014-01-13 13:59:22 +0000
committerThomas J. Donovan <tdonovan@apache.org>2014-01-13 13:59:22 +0000
commit3712712f60bae4baf16ee3afb0a4c8c74842b9a0 (patch)
treea879db45b6947d6ad057fde047376dcd4225011b /include/apr.hwc
parente8bd7cd65fd23a052a86f719ccfcc85932cdb151 (diff)
downloadapr-3712712f60bae4baf16ee3afb0a4c8c74842b9a0.tar.gz
Add signed type apr_intptr_t, because intptr_t is C99, and is not
recognized by MSVC6. Changed ODBC dbd driver to use apr_intptr_t. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1557720 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr.hwc')
-rw-r--r--include/apr.hwc2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/apr.hwc b/include/apr.hwc
index ebc6ca54d..061a5299c 100644
--- a/include/apr.hwc
+++ b/include/apr.hwc
@@ -407,8 +407,10 @@ typedef apr_uint64_t apr_ino_t;
#if APR_SIZEOF_VOIDP == 8
typedef apr_uint64_t apr_uintptr_t;
+typedef apr_int64_t apr_intptr_t;
#else
typedef apr_uint32_t apr_uintptr_t;
+typedef apr_int32_t apr_intptr_t;
#endif
/* Are we big endian? */