Move toys.toycount initialization _after_ zeroing toys, so help -a works again.
diff --git a/main.c b/main.c
index f0969df..fdb4749 100644
--- a/main.c
+++ b/main.c
@@ -81,6 +81,7 @@
   toys.old_umask = umask(0);
   if (!(which->flags & TOYFLAG_UMASK)) umask(toys.old_umask);
   toys.signalfd--;
+  toys.toycount = ARRAY_LEN(toy_list);
 }
 
 // Setup toybox global state for this command.
@@ -167,8 +168,6 @@
 {
   if (CFG_TOYBOX_I18N) setlocale(LC_ALL, "");
 
-  toys.toycount = ARRAY_LEN(toy_list);
-
   if (CFG_TOYBOX) {
     // Trim path off of command name
     *argv = basename(*argv);