Add stub fflush().

This commit is contained in:
Andreas Kling 2018-11-05 14:56:05 +01:00
commit 60a8144b68
Notes: sideshowbarker 2024-07-19 18:33:30 +09:00
2 changed files with 9 additions and 0 deletions

View file

@ -34,6 +34,7 @@ int fclose(FILE*);
void rewind(FILE*);
void clearerr(FILE*);
int feof(FILE*);
int fflush(FILE*);
size_t fread(void* ptr, size_t size, size_t nmemb, FILE*);
size_t fwrite(const void* ptr, size_t size, size_t nmemb, FILE*);
int fprintf(FILE*, const char* fmt, ...);