diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-06-11 15:53:15 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-06-11 15:53:15 (GMT) |
commit | 263bfa76ef70a96d195527b0063a929f2b57b78a (patch) | |
tree | 11760ef28ae04a24075cb71dfc0b78ed4d7fba05 /src/H5config.h.in | |
parent | d6ba8a5095103b5799cd6aef4f291af275dca08d (diff) | |
download | hdf5-263bfa76ef70a96d195527b0063a929f2b57b78a.zip hdf5-263bfa76ef70a96d195527b0063a929f2b57b78a.tar.gz hdf5-263bfa76ef70a96d195527b0063a929f2b57b78a.tar.bz2 |
[svn-r1328] Changes since 19990608
----------------------
./configure.in
./configure [REGENERATED]
./src/H5T.c
./src/H5Tpkg.h
./src/H5Tpublic.h
./src/H5config.h.in [REGENERATED]
./src/H5detect.c
./src/H5private.h
Added checks for the C9x integer types like int32_t,
int_least32_t, and int_fast32_t and the unsigned
versions. HDF5 defines H5T_NATIVE_* versions (all caps) to be
the same as the type provided by the C library, otherwise it
defines them as integers exactly the specified size. Hardware
type conversion functions are used when the types
match some C-language type (like `int').
Diffstat (limited to 'src/H5config.h.in')
-rw-r--r-- | src/H5config.h.in | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index cdb3fb2..0cddcf1 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -101,6 +101,30 @@ /* The number of bytes in a int8_t. */ #undef SIZEOF_INT8_T +/* The number of bytes in a int_fast16_t. */ +#undef SIZEOF_INT_FAST16_T + +/* The number of bytes in a int_fast32_t. */ +#undef SIZEOF_INT_FAST32_T + +/* The number of bytes in a int_fast64_t. */ +#undef SIZEOF_INT_FAST64_T + +/* The number of bytes in a int_fast8_t. */ +#undef SIZEOF_INT_FAST8_T + +/* The number of bytes in a int_least16_t. */ +#undef SIZEOF_INT_LEAST16_T + +/* The number of bytes in a int_least32_t. */ +#undef SIZEOF_INT_LEAST32_T + +/* The number of bytes in a int_least64_t. */ +#undef SIZEOF_INT_LEAST64_T + +/* The number of bytes in a int_least8_t. */ +#undef SIZEOF_INT_LEAST8_T + /* The number of bytes in a long. */ #undef SIZEOF_LONG @@ -131,6 +155,30 @@ /* The number of bytes in a uint8_t. */ #undef SIZEOF_UINT8_T +/* The number of bytes in a uint_fast16_t. */ +#undef SIZEOF_UINT_FAST16_T + +/* The number of bytes in a uint_fast32_t. */ +#undef SIZEOF_UINT_FAST32_T + +/* The number of bytes in a uint_fast64_t. */ +#undef SIZEOF_UINT_FAST64_T + +/* The number of bytes in a uint_fast8_t. */ +#undef SIZEOF_UINT_FAST8_T + +/* The number of bytes in a uint_least16_t. */ +#undef SIZEOF_UINT_LEAST16_T + +/* The number of bytes in a uint_least32_t. */ +#undef SIZEOF_UINT_LEAST32_T + +/* The number of bytes in a uint_least64_t. */ +#undef SIZEOF_UINT_LEAST64_T + +/* The number of bytes in a uint_least8_t. */ +#undef SIZEOF_UINT_LEAST8_T + /* Define if you have the BSDgettimeofday function. */ #undef HAVE_BSDGETTIMEOFDAY @@ -212,6 +260,9 @@ /* Define if you have the <stddef.h> header file. */ #undef HAVE_STDDEF_H +/* Define if you have the <stdint.h> header file. */ +#undef HAVE_STDINT_H + /* Define if you have the <sys/ioctl.h> header file. */ #undef HAVE_SYS_IOCTL_H |