diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2011-10-11 20:22:25 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2011-10-11 20:22:25 (GMT) |
commit | 6b68df15e797f82c364784e619922e1b5339f349 (patch) | |
tree | 17ec81324d6344e4bb4480c4bbe1df9f6456d61c | |
parent | 523d36bf4d17f059931e25ad00713bf5e6976fd4 (diff) | |
download | hdf5-6b68df15e797f82c364784e619922e1b5339f349.zip hdf5-6b68df15e797f82c364784e619922e1b5339f349.tar.gz hdf5-6b68df15e797f82c364784e619922e1b5339f349.tar.bz2 |
[svn-r21520] Changed the size of off_t on VMS to 4 bytes from 8 (as reported by a test program run on VMS).
Will be tested on VMS when this is pushed to the 1.8 branch.
-rw-r--r-- | vms/src/h5pubconf.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/vms/src/h5pubconf.h b/vms/src/h5pubconf.h index b262a6f..c234be8 100644 --- a/vms/src/h5pubconf.h +++ b/vms/src/h5pubconf.h @@ -541,28 +541,28 @@ #define H5_SIZEOF_INT8_T 1 /* The size of `int_fast16_t', as computed by sizeof. */ -/* #define H5_SIZEOF_INT_FAST16_T 4 */ +/* #define H5_SIZEOF_INT_FAST16_T 0 */ /* The size of `int_fast32_t', as computed by sizeof. */ -/* #define H5_SIZEOF_INT_FAST32_T 4 */ +/* #define H5_SIZEOF_INT_FAST32_T 0 */ /* The size of `int_fast64_t', as computed by sizeof. */ -/* #define H5_SIZEOF_INT_FAST64_T 8 */ +/* #define H5_SIZEOF_INT_FAST64_T 0 */ /* The size of `int_fast8_t', as computed by sizeof. */ -/* #define H5_SIZEOF_INT_FAST8_T 1 */ +/* #define H5_SIZEOF_INT_FAST8_T 0 */ /* The size of `int_least16_t', as computed by sizeof. */ -/* #define H5_SIZEOF_INT_LEAST16_T 2 */ +/* #define H5_SIZEOF_INT_LEAST16_T 0 */ /* The size of `int_least32_t', as computed by sizeof. */ -/* #define H5_SIZEOF_INT_LEAST32_T 4 */ +/* #define H5_SIZEOF_INT_LEAST32_T 0 */ /* The size of `int_least64_t', as computed by sizeof. */ -/* #define H5_SIZEOF_INT_LEAST64_T 8 */ +/* #define H5_SIZEOF_INT_LEAST64_T 0 */ /* The size of `int_least8_t', as computed by sizeof. */ -/* #define H5_SIZEOF_INT_LEAST8_T 1 */ +/* #define H5_SIZEOF_INT_LEAST8_T 0 */ /* The size of `long', as computed by sizeof. */ #define H5_SIZEOF_LONG 4 @@ -577,7 +577,7 @@ #define H5_SIZEOF_OFF64_T 0 /* The size of `off_t', as computed by sizeof. */ -#define H5_SIZEOF_OFF_T 8 +#define H5_SIZEOF_OFF_T 4 /* The size of `ptrdiff_t', as computed by sizeof. */ #define H5_SIZEOF_PTRDIFF_T 4 @@ -604,28 +604,28 @@ #define H5_SIZEOF_UINT8_T 1 /* The size of `uint_fast16_t', as computed by sizeof. */ -/* #define H5_SIZEOF_UINT_FAST16_T 4 */ +/* #define H5_SIZEOF_UINT_FAST16_T 0 */ /* The size of `uint_fast32_t', as computed by sizeof. */ -/* #define H5_SIZEOF_UINT_FAST32_T 4 */ +/* #define H5_SIZEOF_UINT_FAST32_T 0 */ /* The size of `uint_fast64_t', as computed by sizeof. */ -/* #define H5_SIZEOF_UINT_FAST64_T 8 */ +/* #define H5_SIZEOF_UINT_FAST64_T 0 */ /* The size of `uint_fast8_t', as computed by sizeof. */ -/* #define H5_SIZEOF_UINT_FAST8_T 1 */ +/* #define H5_SIZEOF_UINT_FAST8_T 0 */ /* The size of `uint_least16_t', as computed by sizeof. */ -/* #define H5_SIZEOF_UINT_LEAST16_T 2 */ +/* #define H5_SIZEOF_UINT_LEAST16_T 0 */ /* The size of `uint_least32_t', as computed by sizeof. */ -/* #define H5_SIZEOF_UINT_LEAST32_T 4 */ +/* #define H5_SIZEOF_UINT_LEAST32_T 0 */ /* The size of `uint_least64_t', as computed by sizeof. */ -/* #define H5_SIZEOF_UINT_LEAST64_T 8 */ +/* #define H5_SIZEOF_UINT_LEAST64_T 0 */ /* The size of `uint_least8_t', as computed by sizeof. */ -/* #define H5_SIZEOF_UINT_LEAST8_T 1 */ +/* #define H5_SIZEOF_UINT_LEAST8_T 0 */ /* The size of `unsigned', as computed by sizeof. */ #define H5_SIZEOF_UNSIGNED 4 |