diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -7,6 +7,7 @@ #include <string.h> #include <map.h> +#include <schedule.h> #include <parse.h> #include <log.h> #include <lib/hash.h> @@ -54,8 +55,11 @@ int main(int argc, char *argv[]) char *orig_term = term; parse_blc(&term, 1); - free(orig_term); + + schedule_init(); + + schedule_destroy(); map_destroy(); return 0; } |