| 9 | |
| 10 | #[repr(C)] |
| 11 | pub struct AllocFromCtx { |
| 12 | a: extern "C" fn(alloc::alloc::Layout) -> *mut u8, |
| 13 | d: extern "C" fn(*mut u8, alloc::alloc::Layout), |
| 14 | } |
| 15 | impl AllocFromCtx { |
| 16 | pub fn init() -> Self { |
| 17 | Self { |
nothing calls this directly
no outgoing calls
no test coverage detected