about summary refs log tree commit diff
path: root/library/std/src/os/raw/schar.md
AgeCommit message (Collapse)AuthorLines
2022-03-01Provide C FFI types via core::ffi, not just in stdJosh Triplett-5/+0
The ability to interoperate with C code via FFI is not limited to crates using std; this allows using these types without std. The existing types in `std::os::raw` become type aliases for the ones in `core::ffi`. This uses type aliases rather than re-exports, to allow the std types to remain stable while the core types are unstable. This also moves the currently unstable `NonZero_` variants and `c_size_t`/`c_ssize_t`/`c_ptrdiff_t` types to `core::ffi`, while leaving them unstable.
2020-08-14remove primitive type linksPrabakaran Kumaresshan-1/+0
2020-08-14Switch to intra-doc links in os/raw/*.mdPrabakaran Kumaresshan-2/+2
2020-07-27mv std libs to library/mark-0/+6