From 328aea599f93aa0020f65a68588f6205ab79691c Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Mon, 20 Nov 2023 00:44:13 +0100 Subject: LibC: Add macros for stdin, stdout, stderr in unistd --- userland/libc/include/unistd.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'userland') diff --git a/userland/libc/include/unistd.h b/userland/libc/include/unistd.h index d8c8b9d..e47f6eb 100644 --- a/userland/libc/include/unistd.h +++ b/userland/libc/include/unistd.h @@ -5,6 +5,8 @@ #include #define STDIN_FILENO 0 +#define STDOUT_FILENO 1 +#define STDERR_FILENO 2 extern int opterr, optind, optopt; extern char *optarg; -- cgit v1.2.3