From daa687dc35fb8d0f699f9d2a3a72c6509a0fda7d Mon Sep 17 00:00:00 2001 From: dnovillo Date: Wed, 25 Oct 2000 11:42:51 +0000 Subject: [PATCH] 2000-10-25 Diego Novillo * tc-i386.c: Fix prototype declarations for functions taking no arguments. --- gas/ChangeLog | 5 +++++ gas/config/tc-i386.c | 24 ++++++++++++------------ 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 9436c3586b..b1c211c496 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2000-10-25 Diego Novillo + + * tc-i386.c: Fix prototype declarations for functions taking no + arguments. + 2000-10-24 Diego Novillo * tc-i386.c (i386_operand_modifier): Remove. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index d0efd6b0f3..7aeea9a5ed 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -4335,18 +4335,18 @@ static struct intel_token cur_token, prev_token; /* Prototypes for intel parser functions. */ static int intel_match_token PARAMS ((int code)); -static void intel_get_token PARAMS (()); -static void intel_putback_token PARAMS (()); -static int intel_expr PARAMS (()); -static int intel_e05 PARAMS (()); -static int intel_e05_1 PARAMS (()); -static int intel_e06 PARAMS (()); -static int intel_e06_1 PARAMS (()); -static int intel_e09 PARAMS (()); -static int intel_e09_1 PARAMS (()); -static int intel_e10 PARAMS (()); -static int intel_e10_1 PARAMS (()); -static int intel_e11 PARAMS (()); +static void intel_get_token PARAMS ((void)); +static void intel_putback_token PARAMS ((void)); +static int intel_expr PARAMS ((void)); +static int intel_e05 PARAMS ((void)); +static int intel_e05_1 PARAMS ((void)); +static int intel_e06 PARAMS ((void)); +static int intel_e06_1 PARAMS ((void)); +static int intel_e09 PARAMS ((void)); +static int intel_e09_1 PARAMS ((void)); +static int intel_e10 PARAMS ((void)); +static int intel_e10_1 PARAMS ((void)); +static int intel_e11 PARAMS ((void)); static int -- 2.11.0