diff options
author | dzwdz | 2022-07-26 22:04:19 +0200 |
---|---|---|
committer | dzwdz | 2022-07-26 22:04:19 +0200 |
commit | 137dcb3e207b264c467f4b2b13df2316b8b0a67c (patch) | |
tree | 29f01a9c4eca62ec6b0f443d8a48eeda563df452 /src/user/lib/include/bits/file.h | |
parent | 4d19346cf0d2a93eed9afe22e5c2a5d9a30fb37c (diff) |
user/libc: fread, fwrite, fclose
Diffstat (limited to 'src/user/lib/include/bits/file.h')
-rw-r--r-- | src/user/lib/include/bits/file.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/user/lib/include/bits/file.h b/src/user/lib/include/bits/file.h index 74a8c17..e50d402 100644 --- a/src/user/lib/include/bits/file.h +++ b/src/user/lib/include/bits/file.h @@ -5,5 +5,6 @@ struct FILE { int fd; int pos; bool eof; + bool error; }; typedef struct FILE FILE; |