diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-01-17 18:15:16 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-01-17 18:15:16 (GMT) |
commit | db65d57541dd766e9912fb0698210cd76107d328 (patch) | |
tree | fcd57dfe7541f6ac22a2ab5217dcd9b7db8e92b3 /tools/test | |
parent | 1643f591d6f505bd75209d64c2aa4f4f45cee99b (diff) | |
download | hdf5-db65d57541dd766e9912fb0698210cd76107d328.zip hdf5-db65d57541dd766e9912fb0698210cd76107d328.tar.gz hdf5-db65d57541dd766e9912fb0698210cd76107d328.tar.bz2 |
Correct standalone function attributes
Diffstat (limited to 'tools/test')
-rw-r--r-- | tools/test/perform/pio_standalone.h | 4 | ||||
-rw-r--r-- | tools/test/perform/sio_standalone.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/test/perform/pio_standalone.h b/tools/test/perform/pio_standalone.h index e6db2e8..cf6d980 100644 --- a/tools/test/perform/pio_standalone.h +++ b/tools/test/perform/pio_standalone.h @@ -483,8 +483,8 @@ extern MPI_Info h5_io_info_g; /* MPI INFO object for IO */ #endif #ifdef H5_HAVE_PARALLEL -H5TEST_DLL int h5_set_info_object(void); -H5TEST_DLL void h5_dump_info_object(MPI_Info info); +int h5_set_info_object(void); +void h5_dump_info_object(MPI_Info info); #endif diff --git a/tools/test/perform/sio_standalone.h b/tools/test/perform/sio_standalone.h index faa8317..45f6d25 100644 --- a/tools/test/perform/sio_standalone.h +++ b/tools/test/perform/sio_standalone.h @@ -498,8 +498,8 @@ extern MPI_Info h5_io_info_g; /* MPI INFO object for IO */ #endif #ifdef H5_HAVE_PARALLEL -H5TEST_DLL int h5_set_info_object(void); -H5TEST_DLL void h5_dump_info_object(MPI_Info info); +int h5_set_info_object(void); +void h5_dump_info_object(MPI_Info info); #endif |