From eb8b5063a3bd740002051def73f70c67c0ff7d04 Mon Sep 17 00:00:00 2001 From: Felix von Leitner Date: Wed, 26 Nov 2003 22:48:46 +0000 Subject: [PATCH] minor comment fix --- io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io.h b/io.h index e8a929d..246dcdf 100644 --- a/io.h +++ b/io.h @@ -8,7 +8,7 @@ /* like open(s,O_RDONLY) */ int io_readfile(int64* d,const char* s); -/* like open(s,O_WRONLY|O_TRUNC,0600) */ +/* like open(s,O_WRONLY|O_CREAT|O_TRUNC,0600) */ int io_createfile(int64* d,const char* s); /* like pipe(d) */ int io_pipe(int64* d);