]> git.proxmox.com Git - rustc.git/blobdiff - vendor/rustix-0.36.5/src/backend/libc/io/mod.rs
Merge 1.70 into proxmox/bookworm
[rustc.git] / vendor / rustix-0.36.5 / src / backend / libc / io / mod.rs
diff --git a/vendor/rustix-0.36.5/src/backend/libc/io/mod.rs b/vendor/rustix-0.36.5/src/backend/libc/io/mod.rs
new file mode 100644 (file)
index 0000000..1378adf
--- /dev/null
@@ -0,0 +1,13 @@
+pub(crate) mod errno;
+#[cfg(not(windows))]
+#[cfg(not(feature = "std"))]
+pub(crate) mod io_slice;
+pub(crate) mod poll_fd;
+#[cfg(not(windows))]
+pub(crate) mod types;
+
+#[cfg_attr(windows, path = "windows_syscalls.rs")]
+pub(crate) mod syscalls;
+
+#[cfg(any(target_os = "android", target_os = "linux"))]
+pub mod epoll;