From 7249f34e4afc3dc3d61849914b054070ef6e2579 Mon Sep 17 00:00:00 2001 From: Kaiyan Chang <44112273+changkaiyan@users.noreply.github.com> Date: Fri, 11 Jan 2019 19:48:38 +0800 Subject: [PATCH] Update chapter0.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 删除了代码中多余的# --- content/chapter0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/chapter0.md b/content/chapter0.md index d0f5ac1..90e6c3a 100644 --- a/content/chapter0.md +++ b/content/chapter0.md @@ -140,7 +140,7 @@ for(;;){ ~~~ C char *argv[2]; argv[0] = "cat"; -### argv[1] = 0; +argv[1] = 0; if(fork() == 0) { close(0); open("input.txt", O_RDONLY);