]> Git Repo - J-linux.git/blob - rust/ffi.rs
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / rust / ffi.rs
1 // SPDX-License-Identifier: GPL-2.0
2
3 //! Foreign function interface (FFI) types.
4 //!
5 //! This crate provides mapping from C primitive types to Rust ones.
6 //!
7 //! The Rust [`core`] crate provides [`core::ffi`], which maps integer types to the platform default
8 //! C ABI. The kernel does not use [`core::ffi`], so it can customise the mapping that deviates from
9 //! the platform default.
10
11 #![no_std]
12
13 pub use core::ffi::*;
This page took 0.026479 seconds and 4 git commands to generate.