diff options
author | John Gilmore <gnu@cygnus> | 1991-09-19 22:16:40 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-09-19 22:16:40 +0000 |
commit | f24adda313333714038bec83180443ffb4726786 (patch) | |
tree | 1d510ee684e41469eb0cdd20eefeb8b096f11405 /gdb/c-exp.y | |
parent | cd93283c870b23902419e17276485bcfeb571c8c (diff) | |
download | gdb-f24adda313333714038bec83180443ffb4726786.zip gdb-f24adda313333714038bec83180443ffb4726786.tar.gz gdb-f24adda313333714038bec83180443ffb4726786.tar.bz2 |
* c-exp.y, m2-exp.y: Lint.
* m2-exp.y: Avoid using yytname[] which is a Bison-ism.
Diffstat (limited to 'gdb/c-exp.y')
-rw-r--r-- | gdb/c-exp.y | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/c-exp.y b/gdb/c-exp.y index 5e2e4b7..c7cf672 100644 --- a/gdb/c-exp.y +++ b/gdb/c-exp.y @@ -56,8 +56,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define yyact c_act #define yyexca c_exca +/* Forward decls */ void yyerror (); static int parse_number (); +int yyparse (); /* #define YYDEBUG 1 */ |