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