1b8a62b91Sopenharmony_ci//! The following is derived from Rust's
2b8a62b91Sopenharmony_ci//! library/std/src/os/fd/mod.rs at revision
3b8a62b91Sopenharmony_ci//! fa68e73e9947be8ffc5b3b46d899e4953a44e7e9.
4b8a62b91Sopenharmony_ci//!
5b8a62b91Sopenharmony_ci//! Owned and borrowed Unix-like file descriptors.
6b8a62b91Sopenharmony_ci
7b8a62b91Sopenharmony_ci#![cfg_attr(staged_api, unstable(feature = "io_safety", issue = "87074"))]
8b8a62b91Sopenharmony_ci#![deny(unsafe_op_in_unsafe_fn)]
9b8a62b91Sopenharmony_ci
10b8a62b91Sopenharmony_ci// `RawFd`, `AsRawFd`, etc.
11b8a62b91Sopenharmony_cimod raw;
12b8a62b91Sopenharmony_ci
13b8a62b91Sopenharmony_ci// `OwnedFd`, `AsFd`, etc.
14b8a62b91Sopenharmony_cimod owned;
15b8a62b91Sopenharmony_ci
16b8a62b91Sopenharmony_cipub use owned::*;
17b8a62b91Sopenharmony_cipub use raw::*;
18