diff --git a/libs/libc/include/stdio.h b/libs/libc/include/stdio.h index d17b8edf..e906d9f9 100644 --- a/libs/libc/include/stdio.h +++ b/libs/libc/include/stdio.h @@ -29,7 +29,7 @@ extern "C" /* Does not do anything for now, since buffered IO is not implemented yet. */ int fflush(FILE* stream); - /* Opens the file at pathname according to the mode string. Returns the file handle on success, or NULL on error. */ + /* Opens the file specified by pathname. Returns the file handle on success, or NULL on error. */ FILE* fopen(const char* pathname, const char* mode); /* Writes formatted output according to the string format to the file stream. */