forked from AbleOS/holey-bytes
5 lines
72 B
Rust
5 lines
72 B
Rust
|
pub type CallStack = Vec<FnCall>;
|
||
|
pub struct FnCall {
|
||
|
ret: usize,
|
||
|
}
|