From 99e5c8e046dfff53c331eb35394bfbcab4629fd0 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Fri, 17 Nov 2023 21:24:33 +0100 Subject: Kernel: Add isatty syscall --- kernel/includes/syscalls.h | 1 + 1 file changed, 1 insertion(+) (limited to 'kernel/includes') 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); -- cgit v1.2.3