hermit/syscalls/interfaces/
generic.rs

1use crate::syscalls::interfaces::SyscallInterface;
2
3// The generic interface simply uses all default implementations of the
4// SyscallInterface trait.
5pub struct Generic;
6impl SyscallInterface for Generic {}