7 lines
242 B
Rust
7 lines
242 B
Rust
use crate::syscalls::{Syscall, SyscallRegistryEntry, caps};
|
|
|
|
pub(crate) const ENTRIES: &[SyscallRegistryEntry] =
|
|
&[SyscallRegistryEntry::builder(Syscall::SystemHasCart, "system", "has_cart")
|
|
.rets(1)
|
|
.caps(caps::SYSTEM)];
|