diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
commit | a14ed312fd86dd2c862847230931451da2e49942 (patch) | |
tree | e7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/ax-general.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
Diffstat (limited to 'gdb/ax-general.c')
-rw-r--r-- | gdb/ax-general.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/ax-general.c b/gdb/ax-general.c index 4612e8e..0c851eb 100644 --- a/gdb/ax-general.c +++ b/gdb/ax-general.c @@ -28,13 +28,13 @@ #include "value.h" -static void grow_expr PARAMS ((struct agent_expr * x, int n)); +static void grow_expr (struct agent_expr *x, int n); -static void append_const PARAMS ((struct agent_expr * x, LONGEST val, int n)); +static void append_const (struct agent_expr *x, LONGEST val, int n); -static LONGEST read_const PARAMS ((struct agent_expr * x, int o, int n)); +static LONGEST read_const (struct agent_expr *x, int o, int n); -static void generic_ext PARAMS ((struct agent_expr * x, enum agent_op op, int n)); +static void generic_ext (struct agent_expr *x, enum agent_op op, int n); /* Functions for building expressions. */ |