summaryrefslogtreecommitdiffstats
path: root/hl
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2009-06-24 20:47:27 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2009-06-24 20:47:27 (GMT)
commit84258bea90ac7c9286c6ef9d3f9fe723a2e71871 (patch)
tree02a9f2f3c958dc0ef868ca5ce8ab50d3cb437a25 /hl
parente7ebefa1fd42033034fb18e0584f903d86ea9063 (diff)
downloadhdf5-84258bea90ac7c9286c6ef9d3f9fe723a2e71871.zip
hdf5-84258bea90ac7c9286c6ef9d3f9fe723a2e71871.tar.gz
hdf5-84258bea90ac7c9286c6ef9d3f9fe723a2e71871.tar.bz2
[svn-r17106] Description:
Included standard C libraries to fix seg fault on linew (were commented out)
Diffstat (limited to 'hl')
-rw-r--r--hl/src/H5LR.c6
-rw-r--r--hl/src/H5LT.c9
2 files changed, 8 insertions, 7 deletions
diff --git a/hl/src/H5LR.c b/hl/src/H5LR.c
index 423a366..0ca452f 100644
--- a/hl/src/H5LR.c
+++ b/hl/src/H5LR.c
@@ -29,9 +29,11 @@
/***********/
/* Headers */
/***********/
-//#include <string.h>
+#include <string.h>
#include <stdlib.h>
-//#include <stdio.h>
+#include <assert.h>
+#include <stdio.h>
+#include "H5LRprivate.h"
#include "H5LRpkg.h" /* Lite References */
diff --git a/hl/src/H5LT.c b/hl/src/H5LT.c
index ae110cc..657e740 100644
--- a/hl/src/H5LT.c
+++ b/hl/src/H5LT.c
@@ -26,10 +26,11 @@
/***********/
/* Headers */
/***********/
-//#include <string.h>
+#include <string.h>
#include <stdlib.h>
-//#include <assert.h>
-//#include <stdio.h>
+#include <assert.h>
+#include <stdio.h>
+#include "H5LTprivate.h"
#include "H5LTpkg.h" /* Lite */
/* For Lex and Yacc */
@@ -107,8 +108,6 @@ BEGIN_FUNC(PKGINIT, ERR,
herr_t, SUCCEED, FAIL,
H5LT__pkg_init(void))
-CATCH
-
END_FUNC(PKGINIT)