diff options
Diffstat (limited to 'ddb/db_macro.c')
-rw-r--r-- | ddb/db_macro.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ddb/db_macro.c b/ddb/db_macro.c index 9d14b121..f985679e 100644 --- a/ddb/db_macro.c +++ b/ddb/db_macro.c @@ -73,7 +73,7 @@ db_lookup_macro(name) } void -db_def_macro_cmd() +db_def_macro_cmd(void) { char *p; int c; @@ -104,7 +104,7 @@ db_def_macro_cmd() } void -db_del_macro_cmd() +db_del_macro_cmd(void) { struct db_user_macro *mp; @@ -120,7 +120,7 @@ db_del_macro_cmd() } void -db_show_macro() +db_show_macro(void) { struct db_user_macro *mp; int t; |