1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:57:44 +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

@ -44,6 +44,7 @@ public:
int error() const { return m_error; }
void clear_err() { m_error = 0; }
void set_err() { m_error = 1; }
size_t read(u8*, size_t);
size_t write(u8 const*, size_t);