From c8cd13d8e9853752de5756ab42a98e2d0baff0a9 Mon Sep 17 00:00:00 2001 From: Flavio Cruz Date: Wed, 4 Jan 2023 00:30:28 -0500 Subject: Fix ddb warnings introduced with -Wstrict-prototypes Changed some ddb command functions to have the expected signature but not all of them due to the being difficult to inter-dependency between header files (for those just used cast). Message-Id: --- ddb/db_macro.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'ddb/db_macro.c') diff --git a/ddb/db_macro.c b/ddb/db_macro.c index 2a28a442..d417abe1 100644 --- a/ddb/db_macro.c +++ b/ddb/db_macro.c @@ -72,7 +72,11 @@ db_lookup_macro(const char *name) } void -db_def_macro_cmd(void) +db_def_macro_cmd( + db_expr_t, + boolean_t, + db_expr_t, + const char *) { char *p; int c; @@ -103,7 +107,11 @@ db_def_macro_cmd(void) } void -db_del_macro_cmd(void) +db_del_macro_cmd( + db_expr_t, + boolean_t, + db_expr_t, + const char *) { struct db_user_macro *mp; @@ -119,7 +127,11 @@ db_del_macro_cmd(void) } void -db_show_macro(void) +db_show_macro( + db_expr_t, + boolean_t, + db_expr_t, + const char *) { struct db_user_macro *mp; int t; -- cgit v1.2.3