summaryrefslogtreecommitdiffstats
path: root/defines.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-01-23 16:26:52 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-01-23 16:26:52 +0000
commit16a86be01aa1f097c5ceaea9ea96253e55d9a016 (patch)
tree116b6924241a060b11edec29f9c8ac2727b3bcc8 /defines.h
parentbda5bdcf8d1238b75e29094155da16e058b6e33b (diff)
- (bal) no 64bit support patch from Tim Rice <tim@multitalents.net>
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/defines.h b/defines.h
index 26c532c9..087ad2af 100644
--- a/defines.h
+++ b/defines.h
@@ -171,20 +171,22 @@ typedef unsigned int u_int32_t;
#ifndef HAVE_INT64_T
# if (SIZEOF_LONG_INT == 8)
typedef long int int64_t;
+# define HAVE_INT64_T 1
# else
# if (SIZEOF_LONG_LONG_INT == 8)
typedef long long int int64_t;
-# define HAVE_INTXX_T 1
+# define HAVE_INT64_T 1
# endif
# endif
#endif
#ifndef HAVE_U_INT64_T
# if (SIZEOF_LONG_INT == 8)
typedef unsigned long int u_int64_t;
+# define HAVE_U_INT64_T 1
# else
# if (SIZEOF_LONG_LONG_INT == 8)
typedef unsigned long long int u_int64_t;
-# define HAVE_U_INTXX_T 1
+# define HAVE_U_INT64_T 1
# endif
# endif
#endif