14 lines
201 B
Rust
Raw Normal View History

#![no_std]
#![feature(maybe_uninit_slice)]
pub(crate) mod api;
pub mod sync;
pub mod util;
2023-09-06 18:48:00 +03:00
#[repr(C)]
pub struct AlignedTo<Align, Bytes: ?Sized> {
pub align: [Align; 0],
pub bytes: Bytes,
}