diff options
Diffstat (limited to 'arguments.c')
-rw-r--r-- | arguments.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arguments.c b/arguments.c index e70d24c0..50536a47 100644 --- a/arguments.c +++ b/arguments.c @@ -34,7 +34,6 @@ struct args_entry { RB_ENTRY(args_entry) entry; }; -static void args_set(struct args *, u_char, const char *); static struct args_entry *args_find(struct args *, u_char); static int args_cmp(struct args_entry *, struct args_entry *); @@ -195,7 +194,7 @@ args_has(struct args *args, u_char ch) } /* Set argument value in the arguments tree. */ -static void +void args_set(struct args *args, u_char ch, const char *value) { struct args_entry *entry; |