summaryrefslogtreecommitdiffstats
path: root/library/std/src/sys/unsupported/common.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/sys/unsupported/common.rs')
-rw-r--r--library/std/src/sys/unsupported/common.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/library/std/src/sys/unsupported/common.rs b/library/std/src/sys/unsupported/common.rs
index 5cd9e57de..5c379992b 100644
--- a/library/std/src/sys/unsupported/common.rs
+++ b/library/std/src/sys/unsupported/common.rs
@@ -23,6 +23,10 @@ pub fn unsupported_err() -> std_io::Error {
)
}
+pub fn is_interrupted(_code: i32) -> bool {
+ false
+}
+
pub fn decode_error_kind(_code: i32) -> crate::io::ErrorKind {
crate::io::ErrorKind::Uncategorized
}