1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 22:07:34 +00:00

Add stub fflush().

This commit is contained in:
Andreas Kling 2018-11-05 14:56:05 +01:00
parent 8039a20611
commit 60a8144b68
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, ...);