diff options
author | Marvin Borner | 2021-05-20 20:19:05 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-20 20:19:05 +0200 |
commit | 519a1de7d9fe809efc4077933fabbe93a8da9439 (patch) | |
tree | be9d636e48036b42c8c6cc490b5f53db8b4f3a2e /apps/init/main.c | |
parent | 59de0af0cff96182d3e30ab453bc9763a6635947 (diff) |
More generic makefile layout
Diffstat (limited to 'apps/init/main.c')
-rw-r--r-- | apps/init/main.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/init/main.c b/apps/init/main.c new file mode 100644 index 0000000..44cf461 --- /dev/null +++ b/apps/init/main.c @@ -0,0 +1,15 @@ +// MIT License, Copyright (c) 2020 Marvin Borner + +#include <assert.h> +#include <def.h> +#include <sys.h> + +int main(int argc, char **argv) +{ + UNUSED(argc); + UNUSED(argv); + + assert(exec("wm", NULL) == EOK); + + return 0; +} |