diff options
author | Anton Kling <anton@kling.gg> | 2023-11-17 21:24:33 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-17 21:27:26 +0100 |
commit | 99e5c8e046dfff53c331eb35394bfbcab4629fd0 (patch) | |
tree | 690994f164306688bfb3346f218c79301c0f0452 /kernel/includes | |
parent | 6723c96863425bda541e321127f6944bf008446a (diff) |
Kernel: Add isatty syscall
Diffstat (limited to 'kernel/includes')
-rw-r--r-- | kernel/includes/syscalls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/includes/syscalls.h b/kernel/includes/syscalls.h index 7ee0105..6642fea 100644 --- a/kernel/includes/syscalls.h +++ b/kernel/includes/syscalls.h @@ -107,3 +107,4 @@ typedef struct SYS_STAT_PARAMS { int syscall_stat(SYS_STAT_PARAMS *args); u32 syscall_uptime(void); +int syscall_isatty(int fd); |