diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-04 17:01:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-04 17:01:02 (GMT) |
commit | afdf7fcfa6adbadf46f71ccdea52bef769d5285d (patch) | |
tree | 18b3f10a9f6a8cd218b683c9e7b2d42a7b820f8c /hl | |
parent | 6e74389773a108a2700378387718e6ac5dd0d9e4 (diff) | |
download | hdf5-afdf7fcfa6adbadf46f71ccdea52bef769d5285d.zip hdf5-afdf7fcfa6adbadf46f71ccdea52bef769d5285d.tar.gz hdf5-afdf7fcfa6adbadf46f71ccdea52bef769d5285d.tar.bz2 |
[svn-r10144] Purpose:
Bug fix
Description:
The GASS VFL driver header file was bringing in the <string.h> header file,
which several other source code modules needed also, but weren't including
explicitly themselves.
Solution:
Add includes for <string.h> to files which actually need them.
Platforms tested:
FreeBSD 4.11 (sleipnir) w/C++ as CC
Configuration not tested by h5committest...
Diffstat (limited to 'hl')
-rw-r--r-- | hl/test/test_ds.c | 1 | ||||
-rw-r--r-- | hl/test/test_table.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/hl/test/test_ds.c b/hl/test/test_ds.c index 501aa35..83ab7f7 100644 --- a/hl/test/test_ds.c +++ b/hl/test/test_ds.c @@ -16,6 +16,7 @@ #include "H5DS.h" #include "H5LT.h" #include <stdlib.h> +#include <string.h> /* operator functions */ static herr_t verifiy_scale(hid_t dset, unsigned dim, hid_t scale, void *visitor_data); diff --git a/hl/test/test_table.c b/hl/test/test_table.c index 82c6d91..42987b2 100644 --- a/hl/test/test_table.c +++ b/hl/test/test_table.c @@ -16,6 +16,7 @@ #include "H5TB.h" #include <stdlib.h> +#include <string.h> #include <assert.h> #define TEST_FILE_BE "test_table_be.hdf5" |