Refactor: inline core_io

* Extract the minimal set of definitions from `core_io` to `relibc` itself

* Remove dependency on `core_io`
This commit is contained in:
Arthur Paulino
2023-12-24 17:06:27 -03:00
parent 0f9aca12dd
commit d4eddbf42e
17 changed files with 4741 additions and 46 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
use super::{fseek_locked, ftell_locked, FILE, SEEK_SET};
use crate::{core_io::Read, platform::types::off_t};
use crate::{io::Read, platform::types::off_t};
struct LookAheadBuffer {
buf: *const u8,
pos: isize,