diff options
author | Robb Matzke <matzke@llnl.gov> | 1997-09-15 19:27:23 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1997-09-15 19:27:23 (GMT) |
commit | 8656a64d002335cdb40b846dd8eb9013cc295226 (patch) | |
tree | 031cfb619394dc14a59887c3318de2cd3d52dd98 /src/H5public.h | |
parent | 0cd492bb8e5fb8db0d227ad1fc6073be14e36b44 (diff) | |
download | hdf5-8656a64d002335cdb40b846dd8eb9013cc295226.zip hdf5-8656a64d002335cdb40b846dd8eb9013cc295226.tar.gz hdf5-8656a64d002335cdb40b846dd8eb9013cc295226.tar.bz2 |
[svn-r83] Bug fixed in H5G_namei().
Arg type changes in H5Bprivate.h
Sorted Makefile.in
Diffstat (limited to 'src/H5public.h')
-rw-r--r-- | src/H5public.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/H5public.h b/src/H5public.h index 1cc190c..7a5ed05 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -43,9 +43,15 @@ typedef unsigned int uint32; #elif SIZEOF_LONG==4 typedef long int32; typedef unsigned long uint32; +#else +typedef int int32; /*not really*/ +typedef unsigned uint32; /*not really*/ #endif -#if SIZEOF_LONG==8 +#if SIZEOF_INT==8 +typedef int int64; +typedef unsigned uint64; +#elif SIZEOF_LONG==8 typedef long int64; typedef unsigned long uint64; #elif SIZEOF_LONG_LONG==8 |