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
@@ -249,7 +249,7 @@ mod tests {
}
#[test]
fn extend_from_slice() {
use core_io::Write;
use crate::io::Write;
let mut vec = CVec::new();
vec.extend_from_slice(&[1, 2, 3]).unwrap();