From 23af8b64a3f924f3eed3307735e1041b72f32c1f Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 28 Sep 2024 15:17:09 -0400 Subject: Overhaul of argument parsing code --- stdlib/stdlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdlib/stdlib.c') diff --git a/stdlib/stdlib.c b/stdlib/stdlib.c index 801283a7..7111a9fc 100644 --- a/stdlib/stdlib.c +++ b/stdlib/stdlib.c @@ -130,7 +130,7 @@ static Array_t parse_array(const TypeInfo *item_info, int n, char *args[]) } #pragma GCC diagnostic ignored "-Wstack-protector" -public void tomo_parse_args(Text_t usage, Text_t help, int spec_len, cli_arg_t spec[spec_len], int argc, char *argv[]) +public void _tomo_parse_args(int argc, char *argv[], Text_t usage, Text_t help, int spec_len, cli_arg_t spec[spec_len]) { bool populated_args[spec_len] = {}; bool used_args[argc] = {}; -- cgit v1.2.3