kernel/utils/
mod.rs

1pub mod vcell;
2
3#[repr(C)]
4pub struct Pad<const N: usize> {
5    _pad: [u8; N],
6}