aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb/db_command.c
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-03-20 05:14:42 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-03-20 05:14:42 +0000
commit14e10f99527eb47c52513dd587ede4adb8ebdf8e (patch)
tree5fcd19c5c990fd9d830071523f9c3dc5cfb35586 /sys/ddb/db_command.c
parentaa075405f6dc79cd2c5d38b51791e87f5f66d11f (diff)
downloadsrc-14e10f99527eb47c52513dd587ede4adb8ebdf8e.tar.gz
src-14e10f99527eb47c52513dd587ede4adb8ebdf8e.zip
Remove __P.
Notes
Notes: svn path=/head/; revision=92756
Diffstat (limited to 'sys/ddb/db_command.c')
-rw-r--r--sys/ddb/db_command.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c
index d41cf9c75ee0..9d3be3b22b34 100644
--- a/sys/ddb/db_command.c
+++ b/sys/ddb/db_command.c
@@ -101,17 +101,17 @@ db_skip_to_eol()
#define CMD_AMBIGUOUS 3
#define CMD_HELP 4
-static void db_cmd_list __P((struct command *table,
+static void db_cmd_list(struct command *table,
struct command **aux_tablep,
- struct command **aux_tablep_end));
-static int db_cmd_search __P((char *name, struct command *table,
+ struct command **aux_tablep_end);
+static int db_cmd_search(char *name, struct command *table,
struct command **aux_tablep,
struct command **aux_tablep_end,
- struct command **cmdp));
-static void db_command __P((struct command **last_cmdp,
+ struct command **cmdp);
+static void db_command(struct command **last_cmdp,
struct command *cmd_table,
struct command **aux_cmd_tablep,
- struct command **aux_cmd_tablep_end));
+ struct command **aux_cmd_tablep_end);
/*
* Search for command prefix.
@@ -503,10 +503,10 @@ db_fncall(dummy1, dummy2, dummy3, dummy4)
db_expr_t args[MAXARGS];
int nargs = 0;
db_expr_t retval;
- typedef db_expr_t fcn_10args_t __P((db_expr_t, db_expr_t, db_expr_t,
+ typedef db_expr_t fcn_10args_t(db_expr_t, db_expr_t, db_expr_t,
db_expr_t, db_expr_t, db_expr_t,
db_expr_t, db_expr_t, db_expr_t,
- db_expr_t));
+ db_expr_t);
fcn_10args_t *func;
int t;