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

LibC: Implement __freadptrinc

This commit is contained in:
Tim Schumacher 2021-11-07 17:26:50 +01:00 committed by Andreas Kling
parent 89ed0649f7
commit 4f706d819a
3 changed files with 16 additions and 0 deletions

View file

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