From fe10ea85dbbe6a383d943ff629ae542ac8edddb4 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 5 Apr 2023 00:59:48 +0300 Subject: [PATCH] LibC: Add unistd.h with STD{IN,OUT,ERR}_FILENO definitions --- libc/include/unistd.h | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 libc/include/unistd.h diff --git a/libc/include/unistd.h b/libc/include/unistd.h new file mode 100644 index 000000000..b71e1f41e --- /dev/null +++ b/libc/include/unistd.h @@ -0,0 +1,5 @@ +#pragma once + +#define STDIN_FILENO 0 +#define STDOUT_FILENO 1 +#define STDERR_FILENO 2