aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorMarvin Borner2023-05-27 00:37:19 +0200
committerMarvin Borner2023-05-27 00:37:19 +0200
commitac039e6fcbdec3dc6c8e28013e1b3a20068c84ee (patch)
treee0b9db6a303e1369054b478cc44a8ea7d3d7d44d /src/main.c
parent90a0366ba0556314b8624a3f46c667eaf5824e4c (diff)
Basic schedule initialization
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 94ca4e4..922a963 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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;
}