From 2f65d4a0d5e1ed3c1abf48b37684d5bebdead925 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Thu, 6 Jun 2002 10:14:28 -0500 Subject: [svn-r5544] Purpose: Code cleanup/bug fix Description: Re-add H5_SIZEOF_HSIZE_T macro definition, which seems to have gotten lost sometime. Platforms tested: FreeBSD 4.5 (sleipnir) --- src/H5public.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/H5public.h b/src/H5public.h index 9288355..2132753 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -130,13 +130,16 @@ typedef __int64 ssize_t; # if H5_SIZEOF_LONG_LONG>=8 typedef unsigned long long hsize_t; typedef signed long long hssize_t; +# define H5_SIZEOF_HSIZE_T H5_SIZEOF_LONG_LONG # elif H5_SIZEOF___INT64>=8 typedef unsigned __int64 hsize_t; typedef signed __int64 hssize_t; +# define H5_SIZEOF_HSIZE_T H5_SIZEOF___INT64 # endif #else typedef size_t hsize_t; typedef ssize_t hssize_t; +# define H5_SIZEOF_HSIZE_T H5_SIZEOF_SIZE_T #endif /* -- cgit v0.12