summaryrefslogtreecommitdiffstats
path: root/src/H5E.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-08-15 20:18:44 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-08-15 20:18:44 (GMT)
commit3a9da6ae38206b2498c94aebb8688613311244d1 (patch)
treefe64d22376c37edca144bf3396749c6a1ede7d10 /src/H5E.c
parentf05f3a33a56ac5a082c4aba3c49b9e4245f3f8b9 (diff)
downloadhdf5-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.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/H5E.c b/src/H5E.c
index 90a3915..6760045 100644
--- a/src/H5E.c
+++ b/src/H5E.c
@@ -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