aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
authorMarvin Borner2020-11-02 21:19:46 +0100
committerMarvin Borner2020-11-02 21:19:46 +0100
commitf5764042751c94598e8d8dfd7a9f9cd0efe57f37 (patch)
treeb89af24982117733ebbce4a166d799dff12e6ad9 /apps/init.c
parent7099f31ccd88bd2afa3ca5fb52610ef1b3206c5e (diff)
Ported c4 compiler (kinda working!)
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/init.c b/apps/init.c
index 9d64388..7cb9e25 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -12,6 +12,7 @@ int main(int argc, char **argv)
int wm = exec("/bin/wm", "wm", argv[1], NULL);
int exec = exec("/bin/exec", "test", NULL);
+ /* exec("/bin/cc", "cc", "/res/test.c", NULL); */
return wm + exec;
}