Add more from the std

This commit is contained in:
2026-03-17 23:34:00 +01:00
parent 72989d86a8
commit 10be5b301c
20 changed files with 6189 additions and 53 deletions

View File

@@ -0,0 +1,15 @@
pub fn errno() -> i32 {
0
}
pub fn is_interrupted(_code: i32) -> bool {
false
}
pub fn decode_error_kind(_code: i32) -> crate::io::ErrorKind {
crate::io::ErrorKind::Uncategorized
}
pub fn error_string(_errno: i32) -> String {
"operation successful".to_string()
}