mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 04:22:28 +00:00
LibC: Implement __fseterr
This commit is contained in:
parent
4f706d819a
commit
3237efc661
Notes:
sideshowbarker
2024-07-17 14:32:27 +09:00
Author: https://github.com/timschumi
Commit: 3237efc661
Pull-request: https://github.com/SerenityOS/serenity/pull/13333
3 changed files with 8 additions and 0 deletions
|
@ -1369,6 +1369,12 @@ void __freadptrinc(FILE* stream, size_t increment)
|
|||
|
||||
stream->readptr_increase(increment);
|
||||
}
|
||||
|
||||
void __fseterr(FILE* stream)
|
||||
{
|
||||
ScopedFileLock lock(stream);
|
||||
stream->set_err();
|
||||
}
|
||||
}
|
||||
|
||||
template bool FILE::gets<u8>(u8*, size_t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue