diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-15 20:18:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-15 20:18:44 (GMT) |
commit | 3a9da6ae38206b2498c94aebb8688613311244d1 (patch) | |
tree | fe64d22376c37edca144bf3396749c6a1ede7d10 /src/H5E.c | |
parent | f05f3a33a56ac5a082c4aba3c49b9e4245f3f8b9 (diff) | |
download | hdf5-3a9da6ae38206b2498c94aebb8688613311244d1.zip hdf5-3a9da6ae38206b2498c94aebb8688613311244d1.tar.gz hdf5-3a9da6ae38206b2498c94aebb8688613311244d1.tar.bz2 |
[svn-r7375] Purpose:
Clean up Pablo masks
Description:
H5E.c - Moved Pablo mask definition above include files, so it affects
inline functions properly.
H5FDstream.c - Added Pablo mask definition to address daily build failures.
Platforms tested:
FreeBSD 4.8 (sleipnir)
too minor for h5committest
Diffstat (limited to 'src/H5E.c')
-rw-r--r-- | src/H5E.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -39,13 +39,16 @@ * errors within the H5E package. * */ + +/* Pablo information */ +/* (Put before include files to avoid problems with inline functions) */ +#define PABLO_MASK H5E_mask + #include "H5private.h" /* Generic Functions */ #include "H5Iprivate.h" /* IDs */ #include "H5Eprivate.h" /* Private error routines */ #include "H5MMprivate.h" /* Memory management */ -#define PABLO_MASK H5E_mask - /* Interface initialization? */ static int interface_initialize_g = 0; #define INTERFACE_INIT H5E_init_interface |