aboutsummaryrefslogtreecommitdiff
path: root/sys/include/sys/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/include/sys/system.h')
-rw-r--r--sys/include/sys/system.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/include/sys/system.h b/sys/include/sys/system.h
index c2e47c2..03ac710 100644
--- a/sys/include/sys/system.h
+++ b/sys/include/sys/system.h
@@ -31,11 +31,13 @@
#define _SYS_SYSTEM_H_
#include <sys/types.h>
+#include <sys/syscall.h>
#if defined(_KERNEL)
int copyin(uintptr_t uaddr, void *kaddr, size_t len);
int copyout(const void *kaddr, uintptr_t uaddr, size_t len);
int copyinstr(uintptr_t uaddr, char *kaddr, size_t len);
+uint64_t sys_ioctl(struct syscall_args *args);
#endif
#endif /* !_SYS_SYSTEM_H_ */