1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:57:35 +00:00

LibC: Implement __fseterr

This commit is contained in:
Tim Schumacher 2021-05-26 12:34:05 +02:00 committed by Andreas Kling
parent 4f706d819a
commit 3237efc661
3 changed files with 8 additions and 0 deletions

View file

@ -18,5 +18,6 @@ void __fpurge(FILE*);
size_t __freadahead(FILE*);
char const* __freadptr(FILE*, size_t*);
void __freadptrinc(FILE*, size_t);
void __fseterr(FILE*);
__END_DECLS