summaryrefslogtreecommitdiff
path: root/defines.h
diff options
context:
space:
mode:
authormouring <mouring>2001-01-23 16:26:52 +0000
committermouring <mouring>2001-01-23 16:26:52 +0000
commit8c01b4304ca2bdae061c924a86cc643c87c7ffbc (patch)
treec0e44b731e49e6d943e3dc797ab9c3b57c7eaf4e /defines.h
parent3d803ebf5f52c964030c24e426070a3388eba5c1 (diff)
downloadopenssh-8c01b4304ca2bdae061c924a86cc643c87c7ffbc.tar.gz
- (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