minor comment fix

This commit is contained in:
Felix von Leitner 2003-11-26 22:48:46 +00:00
parent 5c92fb9e03
commit eb8b5063a3
1 changed files with 1 additions and 1 deletions

2
io.h
View File

@ -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);