aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.c b/main.c
index 15543afb..b264ec60 100644
--- a/main.c
+++ b/main.c
@@ -8,8 +8,12 @@
// Populate toy_list[].
+#undef NEWTOY
+#undef OLDTOY
+#define NEWTOY(name, opts, flags) {#name, name##_main, opts, flags},
+#define OLDTOY(name, oldname, opts, flags) {#name, oldname##_main, opts, flags},
+
struct toy_list toy_list[] = {
-#define FROM_MAIN
#include "toys/toylist.h"
};