aboutsummaryrefslogtreecommitdiff
path: root/toys/other/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/other/hello.c')
-rw-r--r--toys/other/hello.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/toys/other/hello.c b/toys/other/hello.c
index a6bc69eb..e87cd6c9 100644
--- a/toys/other/hello.c
+++ b/toys/other/hello.c
@@ -7,7 +7,7 @@
// Accept many different kinds of command line argument:
-USE_HELLO(NEWTOY(hello, "(walrus)(blubber):e@d*c#b:a", TOYFLAG_USR|TOYFLAG_BIN))
+USE_HELLO(NEWTOY(hello, "(walrus)(blubber):;(also):e@d*c#b:a", TOYFLAG_USR|TOYFLAG_BIN))
config HELLO
bool "hello"
@@ -31,6 +31,7 @@ GLOBALS(
long c_number;
struct arg_list *d_list;
long e_count;
+ char *also_string;
char *blubber_string;
int more_globals;