diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-07-31 21:51:36 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-07-31 21:51:36 (GMT) |
commit | 898b6d650b2e321b8d3b29ebee4e8f9a48161d92 (patch) | |
tree | 2d196813970ce22b65e8a485e68c3ac6f76b4be8 | |
parent | 7bbbbcb1791ffda8fc3725f32b18ff03a95c48a7 (diff) | |
download | hdf5-898b6d650b2e321b8d3b29ebee4e8f9a48161d92.zip hdf5-898b6d650b2e321b8d3b29ebee4e8f9a48161d92.tar.gz hdf5-898b6d650b2e321b8d3b29ebee4e8f9a48161d92.tar.bz2 |
Fix missing export tag
-rw-r--r-- | test/external_common.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/test/external_common.h b/test/external_common.h index 304f3fb..043f36b 100644 --- a/test/external_common.h +++ b/test/external_common.h @@ -42,5 +42,15 @@ static const char *EXT_FNAME[] = { #define TOTAL_SIZE 100 #define GARBAGE_PER_FILE 10 -herr_t reset_raw_data_files(hbool_t is_env); + +#ifdef __cplusplus +extern "C" { +#endif + +H5TEST_DLL herr_t reset_raw_data_files(hbool_t is_env); + +#ifdef __cplusplus +} +#endif + #endif /* _EXTERNAL_COMMON_H */ |