diff options
author | Pierre Muller <muller@sourceware.org> | 2007-10-05 06:46:05 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2007-10-05 06:46:05 +0000 |
commit | cada2e7b78d46ebbe448f757f9f15f6efeac0ccc (patch) | |
tree | 97f9feb011662ba5bea224ab7cd13a722285752a /gdb/objc-exp.y | |
parent | 8482526f305d160e93c877f4a7ad2f44964bc8eb (diff) | |
download | gdb-cada2e7b78d46ebbe448f757f9f15f6efeac0ccc.zip gdb-cada2e7b78d46ebbe448f757f9f15f6efeac0ccc.tar.gz gdb-cada2e7b78d46ebbe448f757f9f15f6efeac0ccc.tar.bz2 |
2007-10-03 Pierre Muller <muller@ics.u-strasbg.fr>
* objc-exp.y: ARI fix: remove 4 PARAMS.
Diffstat (limited to 'gdb/objc-exp.y')
-rw-r--r-- | gdb/objc-exp.y | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/objc-exp.y b/gdb/objc-exp.y index d12a6c2..a356493 100644 --- a/gdb/objc-exp.y +++ b/gdb/objc-exp.y @@ -108,13 +108,13 @@ #endif int -yyparse PARAMS ((void)); +yyparse (void); static int -yylex PARAMS ((void)); +yylex (void); void -yyerror PARAMS ((char *)); +yyerror (char *); %} @@ -151,7 +151,7 @@ yyerror PARAMS ((char *)); %{ /* YYSTYPE gets defined by %union. */ static int -parse_number PARAMS ((char *, int, int, YYSTYPE *)); +parse_number (char *, int, int, YYSTYPE *); %} %type <voidval> exp exp1 type_exp start variable qualified_name lcurly |