summaryrefslogtreecommitdiffstats
path: root/src/H5FDmulti.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-03-04 17:01:02 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-03-04 17:01:02 (GMT)
commitafdf7fcfa6adbadf46f71ccdea52bef769d5285d (patch)
tree18b3f10a9f6a8cd218b683c9e7b2d42a7b820f8c /src/H5FDmulti.c
parent6e74389773a108a2700378387718e6ac5dd0d9e4 (diff)
downloadhdf5-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 'src/H5FDmulti.c')
-rw-r--r--src/H5FDmulti.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5FDmulti.c b/src/H5FDmulti.c
index e54faf6..c2da0b8 100644
--- a/src/H5FDmulti.c
+++ b/src/H5FDmulti.c
@@ -25,6 +25,7 @@
*/
#include <assert.h>
#include <stdlib.h>
+#include <string.h>
/* Disable certain warnings in PC-Lint: */
/*lint --emacro( {534, 830}, H5P_DEFAULT, H5P_FILE_ACCESS, H5P_DATASET_XFER) */