diff options
Diffstat (limited to 'include/apos/uapi.h')
| -rw-r--r-- | include/apos/uapi.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/apos/uapi.h b/include/apos/uapi.h index 6832f79..1ebdc21 100644 --- a/include/apos/uapi.h +++ b/include/apos/uapi.h @@ -181,6 +181,9 @@ struct sys_ret { } \ static inline struct sys_ret __##name +/** @name Misc syscalls. */ +/** @{ */ + /** * Noop syscall. * @@ -192,6 +195,19 @@ struct sys_ret { */ SYSCALL_DECLARE0(noop); +/** + * Putch syscall. + * + * @param ch Character to put. + * @param b Unused. + * @param c Unused. + * @param d Unused. + * @return \ref OK and 0. + */ +SYSCALL_DECLARE1(putch, ch); + +/** @} */ + /* @name Memory handling syscalls. */ /** @{ */ /** |
