summaryrefslogtreecommitdiff
path: root/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'init.c')
-rw-r--r--init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.c b/init.c
index dcd0fda..0a4223c 100644
--- a/init.c
+++ b/init.c
@@ -17,10 +17,10 @@ main(void)
open("console", 1);
open("console", 1);
- write(1, "init...\n", 8);
+ puts("init...\n");
while(1){
- write(1, "running sh...\n", 14);
+ puts("running sh...\n");
pid = fork();
if(pid == 0){
exec("sh", sh_args);