aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
blob: 89336391311abb73abb9f34d8b67e48ef9eeb775 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
}