aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
authorMarvin Borner2020-10-31 21:50:43 +0100
committerMarvin Borner2020-10-31 21:50:43 +0100
commitc35a83655707c9aae8f728eb850255ad0f115d11 (patch)
tree4f507c4cf9f7542d7fe32320fcf106a8660f828a /apps/init.c
parent66779122ad298b27315b435339ca83960c6c2d41 (diff)
Added 'exec' demo program
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/init.c b/apps/init.c
index 23f0773..73ea745 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -11,8 +11,7 @@ int main(int argc, char **argv)
/* printf("[%s loaded]\n", argv[0]); */
int wm = exec("/wm", "wm", argv[1], NULL);
- int test = exec("/window", "test", NULL);
- int mandelbrot = exec("/mandelbrot", "mandelbrot", NULL);
+ int exec = exec("/exec", "test", NULL);
- return wm + mandelbrot + test;
+ return wm + exec;
}