diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-07-31 21:50:31 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-07-31 21:50:45 (GMT) |
commit | 8120ba8bc1fab68a999995677a3cd1af2bc1da67 (patch) | |
tree | 99e4ef9f33edfae6ecc53b9e46f599f7ef49f2eb /test | |
parent | 9046a4ea95739ce2cd64951131984aa471380856 (diff) | |
download | hdf5-8120ba8bc1fab68a999995677a3cd1af2bc1da67.zip hdf5-8120ba8bc1fab68a999995677a3cd1af2bc1da67.tar.gz hdf5-8120ba8bc1fab68a999995677a3cd1af2bc1da67.tar.bz2 |
Fix missing export tag
Diffstat (limited to 'test')
-rw-r--r-- | test/external_common.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/test/external_common.h b/test/external_common.h index a2cb03e..f02652b 100644 --- a/test/external_common.h +++ b/test/external_common.h @@ -31,7 +31,15 @@ #define TOTAL_SIZE 100 #define GARBAGE_PER_FILE 10 -H5TEST_DLL herr_t reset_raw_data_files(int); -#endif /* _EXTERNAL_COMMON_H */ +#ifdef __cplusplus +extern "C" { +#endif + +H5TEST_DLL herr_t reset_raw_data_files(hbool_t is_env); +#ifdef __cplusplus +} +#endif + +#endif /* _EXTERNAL_COMMON_H */ |