summaryrefslogtreecommitdiff
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 26c532c92..087ad2af0 100644
--- a/defines.h
+++ b/defines.h
@@ -171,20 +171,22 @@ typedef unsigned int u_int32_t;
171#ifndef HAVE_INT64_T 171#ifndef HAVE_INT64_T
172# if (SIZEOF_LONG_INT == 8) 172# if (SIZEOF_LONG_INT == 8)
173typedef long int int64_t; 173typedef long int int64_t;
174# define HAVE_INT64_T 1
174# else 175# else
175# if (SIZEOF_LONG_LONG_INT == 8) 176# if (SIZEOF_LONG_LONG_INT == 8)
176typedef long long int int64_t; 177typedef long long int int64_t;
177# define HAVE_INTXX_T 1 178# define HAVE_INT64_T 1
178# endif 179# endif
179# endif 180# endif
180#endif 181#endif
181#ifndef HAVE_U_INT64_T 182#ifndef HAVE_U_INT64_T
182# if (SIZEOF_LONG_INT == 8) 183# if (SIZEOF_LONG_INT == 8)
183typedef unsigned long int u_int64_t; 184typedef unsigned long int u_int64_t;
185# define HAVE_U_INT64_T 1
184# else 186# else
185# if (SIZEOF_LONG_LONG_INT == 8) 187# if (SIZEOF_LONG_LONG_INT == 8)
186typedef unsigned long long int u_int64_t; 188typedef unsigned long long int u_int64_t;
187# define HAVE_U_INTXX_T 1 189# define HAVE_U_INT64_T 1
188# endif 190# endif
189# endif 191# endif
190#endif 192#endif