summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/H5E.c7
-rw-r--r--src/H5FDstream.c4
2 files changed, 9 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
diff --git a/src/H5FDstream.c b/src/H5FDstream.c
index 0596fc3..e2d4736 100644
--- a/src/H5FDstream.c
+++ b/src/H5FDstream.c
@@ -21,6 +21,10 @@
*
*/
+/* Pablo information */
+/* (Put before include files to avoid problems with inline functions) */
+#define PABLO_MASK H5FD_stream_mask
+
#include "H5private.h" /* library function */
/* Only build this driver if it was configured with --with-Stream-VFD */