diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-06-06 15:14:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-06-06 15:14:28 (GMT) |
commit | 2f65d4a0d5e1ed3c1abf48b37684d5bebdead925 (patch) | |
tree | 5ac2bc110ec63203c8d007323c5491bf4166818e /src | |
parent | fcafc537016f43395b62c384eab51f7662e709f8 (diff) | |
download | hdf5-2f65d4a0d5e1ed3c1abf48b37684d5bebdead925.zip hdf5-2f65d4a0d5e1ed3c1abf48b37684d5bebdead925.tar.gz hdf5-2f65d4a0d5e1ed3c1abf48b37684d5bebdead925.tar.bz2 |
[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)
Diffstat (limited to 'src')
-rw-r--r-- | src/H5public.h | 3 |
1 files changed, 3 insertions, 0 deletions
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 /* |