aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/init.c b/apps/init.c
index c59e3bf..5a233c1 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -1,9 +1,7 @@
// MIT License, Copyright (c) 2020 Marvin Borner
+#include <assert.h>
#include <def.h>
-#include <net.h>
-#include <print.h>
-#include <str.h>
#include <sys.h>
#include <cpu.h>
@@ -13,8 +11,8 @@ int main(int argc, char **argv)
UNUSED(argc);
UNUSED(argv);
- int wm = exec("/bin/wm", "wm", NULL);
- int test = exec("/bin/window", "test", NULL);
+ assert(exec("/bin/wm", "wm", NULL) == 0);
+ /* assert(exec("/bin/window", "test", NULL) == 0); */
- return wm + test;
+ return 0;
}