1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:34:59 +00:00

LibC: Implement __freadptr

This commit is contained in:
Tim Schumacher 2021-11-07 17:09:51 +01:00 committed by Andreas Kling
parent 8da0cf7912
commit 9b543ddb16
3 changed files with 26 additions and 0 deletions

View file

@ -15,4 +15,6 @@ int __freading(FILE*);
int __fwriting(FILE*);
void __fpurge(FILE*);
char const* __freadptr(FILE*, size_t*);
__END_DECLS