diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-03-16 21:14:14 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-03-16 21:14:14 (GMT) |
commit | 2d6bcc32129ebe80b7962190affc0d7f18a19578 (patch) | |
tree | 37c003852e6c2a383769d846053cf3591abf5713 /src/H5Tpublic.h | |
parent | 4e6b22e04de256579d9472bd6bbc6c6a3d6c1bd1 (diff) | |
download | hdf5-2d6bcc32129ebe80b7962190affc0d7f18a19578.zip hdf5-2d6bcc32129ebe80b7962190affc0d7f18a19578.tar.gz hdf5-2d6bcc32129ebe80b7962190affc0d7f18a19578.tar.bz2 |
[svn-r12108] Purpose:
Code cleanup
Description:
Move VAX floating-point definitions down by the other machine specific ones.
Re-work the version handling for VAX byte ordered floating-point numbers.
Version numbers ought to be strictly increasing, not a bit-field.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r-- | src/H5Tpublic.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h index 7e9ccdf..18ba136 100644 --- a/src/H5Tpublic.h +++ b/src/H5Tpublic.h @@ -235,14 +235,6 @@ H5_DLLVAR hid_t H5T_IEEE_F64BE_g; H5_DLLVAR hid_t H5T_IEEE_F64LE_g; /* - * The VAX floating point types - */ -#define H5T_VAX_F32 (H5OPEN H5T_VAX_F32_g) -#define H5T_VAX_F64 (H5OPEN H5T_VAX_F64_g) -H5_DLLVAR hid_t H5T_VAX_F32_g; -H5_DLLVAR hid_t H5T_VAX_F64_g; - -/* * These are "standard" types. For instance, signed (2's complement) and * unsigned integers of various sizes and byte orders. */ @@ -382,6 +374,14 @@ H5_DLLVAR hid_t H5T_FORTRAN_S1_g; #define H5T_MIPS_F64 H5T_IEEE_F64BE /* + * The VAX floating point types (i.e. in VAX byte order) + */ +#define H5T_VAX_F32 (H5OPEN H5T_VAX_F32_g) +#define H5T_VAX_F64 (H5OPEN H5T_VAX_F64_g) +H5_DLLVAR hid_t H5T_VAX_F32_g; +H5_DLLVAR hid_t H5T_VAX_F64_g; + +/* * The predefined native types. These are the types detected by H5detect and * they violate the naming scheme a little. Instead of a class name, * precision and byte order as the last component, they have a C-like type |