libc: Clean up stdio.h a bit

This commit is contained in:
apio 2024-04-18 21:24:34 +02:00
parent 69f3e28f2c
commit fe302f5967
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -56,7 +56,7 @@ extern "C"
#endif
/* Flush a stream's buffers. */
int fflush(FILE*);
int fflush(FILE* stream);
/* Open a file and bind a stream to it. */
FILE* fopen(const char* path, const char* mode);
@ -67,7 +67,7 @@ extern "C"
/* Change the underlying file and mode of a stream. */
FILE* freopen(const char* path, const char* mode, FILE* stream);
/* Close a file and frees up its stream. */
/* Close a file and free up its stream. */
int fclose(FILE* stream);
/* Return the file descriptor associated with a stream. */