feat(userspace/libc): define file descriptor macros for standard input/output

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
EnderIce2 2025-02-19 20:42:56 +02:00
parent 155f3bfab5
commit 4ac29bbce1
No known key found for this signature in database
GPG Key ID: 2EE20AF089811A5A

View File

@ -78,6 +78,10 @@ extern "C"
extern FILE *stdout;
extern FILE *stderr;
#define STDIN_FILENO 0
#define STDOUT_FILENO 1
#define STDERR_FILENO 2
#define stdin stdin
#define stdout stdout
#define stderr stderr