summaryrefslogtreecommitdiffstats
path: root/src/H5FLprivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FLprivate.h')
-rw-r--r--src/H5FLprivate.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5FLprivate.h b/src/H5FLprivate.h
index 5d46bf0..93a853a 100644
--- a/src/H5FLprivate.h
+++ b/src/H5FLprivate.h
@@ -63,9 +63,12 @@
/* Macro for inclusion in the free list allocation parameters */
#define H5FL_TRACK_PARAMS ,const char *call_file, const char *call_func, int call_line
+/* Forward declarations for structure fields */
+struct H5CS_t;
+
/* Tracking information for each block */
typedef struct H5FL_track_t {
- H5CS_t *stack; /* Function stack */
+ struct H5CS_t *stack; /* Function stack */
char *file; /* Name of file containing calling function */
char *func; /* Name of calling function */
int line; /* Line # within calling function */