aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/apps/init.c b/apps/init.c
index 5879c1e..5e88eff 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -10,13 +10,7 @@ void main()
{
print("Init loaded.\n");
- char *buf = malloc(10);
- conv_base(42, buf, 8, 0);
- printf("\n----\nTEST: %s\n----\n", buf);
- /* printf("%x %d %b\n ABC %s", 42, 42, 42, "BAUM"); */
- sys0(SYS_LOOP);
- /* sys1(SYS_EXEC, (int)"/a"); */
- while (1) {
- print("b");
- };
+ exec("/a");
+ exec("/b");
+ exit();
}