stdio.h: Add missing declaration for freopen(3)

This commit is contained in:
Xavier Del Campo Romero 2023-11-29 13:03:46 +01:00
parent c6ded28dce
commit ff52258e15
Signed by: xavi
GPG Key ID: 84FF3612A9BF43F2
1 changed files with 1 additions and 0 deletions

View File

@ -116,6 +116,7 @@ int vprintf(const char *fmt, va_list ap);
FILE *fdopen(int fildes, const char *mode);
FILE *fopen(const char *path, const char *mode);
FILE *freopen(const char *path, const char *mode, FILE *stream);
int fclose(FILE *stream);
size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream);