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/init.c | |
parent | 59de0af0cff96182d3e30ab453bc9763a6635947 (diff) |
More generic makefile layout
Diffstat (limited to 'apps/init/init.c')
-rw-r--r-- | apps/init/init.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/apps/init/init.c b/apps/init/init.c deleted file mode 100644 index 44cf461..0000000 --- a/apps/init/init.c +++ /dev/null @@ -1,15 +0,0 @@ -// 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; -} |