forked from AbleOS/holey-bytes
7 lines
98 B
Rust
7 lines
98 B
Rust
use alloc::vec::Vec;
|
|
|
|
pub type CallStack = Vec<FnCall>;
|
|
pub struct FnCall {
|
|
pub ret: usize,
|
|
}
|