From b42c866db881611d0cac6045d48139008d632ecf Mon Sep 17 00:00:00 2001 From: apio Date: Wed, 12 Oct 2022 11:58:07 +0200 Subject: [PATCH] Correct description for fopen() --- libs/libc/include/stdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */