From 16a86be01aa1f097c5ceaea9ea96253e55d9a016 Mon Sep 17 00:00:00 2001 From: Ben Lindstrom Date: Tue, 23 Jan 2001 16:26:52 +0000 Subject: - (bal) no 64bit support patch from Tim Rice --- defines.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'defines.h') 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; #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 -- cgit v1.2.3