summaryrefslogtreecommitdiffstats
path: root/hl/src/H5LTanalyze.l
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2005-11-09 20:15:03 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2005-11-09 20:15:03 (GMT)
commit73d95bbae9ec9bd346ab64b7623e07637ae03264 (patch)
treeb22acab8cbeff8f88944af976bbe299bb0d9b30e /hl/src/H5LTanalyze.l
parente5e17162c0b3808ad7c1628f6cece36421b7f0c2 (diff)
downloadhdf5-73d95bbae9ec9bd346ab64b7623e07637ae03264.zip
hdf5-73d95bbae9ec9bd346ab64b7623e07637ae03264.tar.gz
hdf5-73d95bbae9ec9bd346ab64b7623e07637ae03264.tar.bz2
[svn-r11694] Purpose: Bug fix
Description: lex.yy.c for H5LTtext_to_dtype() has been failing to compile on 64-bit SunOS. It has malloc() call but doesn't include stdlib.h. Solution: Include stdlib.h in H5LTanalyze.l. Platforms tested: shanti - simple change.
Diffstat (limited to 'hl/src/H5LTanalyze.l')
-rw-r--r--hl/src/H5LTanalyze.l1
1 files changed, 1 insertions, 0 deletions
diff --git a/hl/src/H5LTanalyze.l b/hl/src/H5LTanalyze.l
index ea654c4..be40eb8 100644
--- a/hl/src/H5LTanalyze.l
+++ b/hl/src/H5LTanalyze.l
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
%{
+#include <stdlib.h>
#include <string.h>
#include<hdf5.h>
#include "y.tab.h"