1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:54:58 +00:00

LibC: Implement __fpurge

This commit is contained in:
Tim Schumacher 2021-05-26 10:06:36 +02:00 committed by Linus Groh
parent cd970928a0
commit ccef5fe234
2 changed files with 13 additions and 0 deletions

View file

@ -12,5 +12,6 @@ __BEGIN_DECLS
int __freading(FILE*);
int __fwriting(FILE*);
void __fpurge(FILE*);
__END_DECLS