summaryrefslogtreecommitdiff
path: root/kernel/includes
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-11-17 21:24:33 +0100
committerAnton Kling <anton@kling.gg>2023-11-17 21:27:26 +0100
commit99e5c8e046dfff53c331eb35394bfbcab4629fd0 (patch)
tree690994f164306688bfb3346f218c79301c0f0452 /kernel/includes
parent6723c96863425bda541e321127f6944bf008446a (diff)
Kernel: Add isatty syscall
Diffstat (limited to 'kernel/includes')
-rw-r--r--kernel/includes/syscalls.h1
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);