diff options
author | Per Bothner <per@bothner.com> | 1992-03-30 22:19:14 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1992-03-30 22:19:14 +0000 |
commit | d26b50b794acb49dd37c959f7781f52d292a4d1a (patch) | |
tree | e6593d141beb688968ca10708b131b0c7156fe49 /gdb/c-exp.y | |
parent | be772100b5002a9d942ebea6e597787ea878932a (diff) | |
download | gdb-d26b50b794acb49dd37c959f7781f52d292a4d1a.zip gdb-d26b50b794acb49dd37c959f7781f52d292a4d1a.tar.gz gdb-d26b50b794acb49dd37c959f7781f52d292a4d1a.tar.bz2 |
c-exp.y: Add missing return type to yyparse() prototype.
Diffstat (limited to 'gdb/c-exp.y')
-rw-r--r-- | gdb/c-exp.y | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/c-exp.y b/gdb/c-exp.y index 865b021..7d197b9 100644 --- a/gdb/c-exp.y +++ b/gdb/c-exp.y @@ -75,6 +75,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define yyval c_val #define yylloc c_lloc +int yyparse PARAMS ((void)); int |