aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main.c b/src/main.c
deleted file mode 100644
index 8933639..0000000
--- a/src/main.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <menu.h>
-#include <system.h>
-#include <stdlib.h>
-
-int main(void)
-{
- int ret = EXIT_SUCCESS;
-
- if (system_init() || menu())
- ret = EXIT_FAILURE;
-
- system_deinit();
- return ret;
-}