From 627d6673e1b3e3091a3fb4f5e1cce5a4f5d17879 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Mon, 19 Nov 2018 14:51:28 +0100 Subject: [PATCH] src/include/h5core/h5_log.h: bugfix: declaration of 'h5_initialized()' declared insite 'extern C' --- src/include/h5core/h5_log.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/include/h5core/h5_log.h b/src/include/h5core/h5_log.h index b719337..1977394 100644 --- a/src/include/h5core/h5_log.h +++ b/src/include/h5core/h5_log.h @@ -13,6 +13,7 @@ #include #include + extern const char* H5_VER_STRING; #include "h5core/h5_types.h" @@ -83,15 +84,14 @@ extern h5_int64_t __h5_log_level; extern h5_int64_t __h5_debug_mask; extern struct call_stack h5_call_stack; -// :FIXME: Should go to another header file -h5_err_t -h5_initialize (void); - - #ifdef __cplusplus extern "C" { #endif +// :FIXME: Should go to another header file +h5_err_t +h5_initialize (void); + static inline void h5_call_stack_push ( const char* fname,