diff options
author | Marvin Borner | 2021-03-17 22:33:31 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-17 22:33:31 +0100 |
commit | 63ed037fdbb04a4855531f5ce980d8517752f640 (patch) | |
tree | 512965efa1ace0248932b133dab260d7b52231bb /apps/init.c | |
parent | 50856df5b7272a6fdcd6a049351b7f1320c6cdaa (diff) |
Awesome!
Diffstat (limited to 'apps/init.c')
-rw-r--r-- | apps/init.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/init.c b/apps/init.c index 35d296b..c26e3ad 100644 --- a/apps/init.c +++ b/apps/init.c @@ -8,9 +8,12 @@ int main(int argc, char **argv) { UNUSED(argc); UNUSED(argv); + log("Arrived!\n"); + while (1) + ; assert(exec("/bin/wm", "wm", NULL) == 0); - /* assert(exec("/bin/window", "test", NULL) == 0); */ + assert(exec("/bin/window", "test", NULL) == 0); return 0; } |