diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-11-07 22:14:02 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-11-07 22:14:02 (GMT) |
commit | 370d940cd0ad4cb7eb49314fd955c16b5dcfbe87 (patch) | |
tree | d7094f88f920fbd7cfd48a9d355672e5a453af18 /hl/src/H5LTparse.y | |
parent | 08910385629d5cbfde5aa43cef0bcba17f7995b1 (diff) | |
download | hdf5-370d940cd0ad4cb7eb49314fd955c16b5dcfbe87.zip hdf5-370d940cd0ad4cb7eb49314fd955c16b5dcfbe87.tar.gz hdf5-370d940cd0ad4cb7eb49314fd955c16b5dcfbe87.tar.bz2 |
[svn-r11689] Purpose: Bug fix
Description: The g++ on sleipnir had troubles to compile the H5LTtext_to_dtype()
code.
Solution: Fixed problems at different places.
Platforms tested: h5committest and g++ on sleipnir.
Diffstat (limited to 'hl/src/H5LTparse.y')
-rw-r--r-- | hl/src/H5LTparse.y | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hl/src/H5LTparse.y b/hl/src/H5LTparse.y index 54824a9..26b7c8b 100644 --- a/hl/src/H5LTparse.y +++ b/hl/src/H5LTparse.y @@ -3,6 +3,9 @@ #include<string.h> #include<hdf5.h> +extern int yylex(); +extern int yyerror(char *); + #define STACK_SIZE 16 /*structure for compound type information*/ |