diff options
Diffstat (limited to 'apps/init.c')
-rw-r--r-- | apps/init.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/init.c b/apps/init.c index f854a81..c59e3bf 100644 --- a/apps/init.c +++ b/apps/init.c @@ -6,13 +6,15 @@ #include <str.h> #include <sys.h> +#include <cpu.h> + int main(int argc, char **argv) { UNUSED(argc); UNUSED(argv); int wm = exec("/bin/wm", "wm", NULL); - /* int test = exec("/bin/window", "test", NULL); */ + int test = exec("/bin/window", "test", NULL); - return wm; //+ test; + return wm + test; } |