LibC: Add unistd.h with STD{IN,OUT,ERR}_FILENO definitions

This commit is contained in:
Bananymous 2023-04-05 00:59:48 +03:00
parent a1100624bf
commit fe10ea85db
1 changed files with 5 additions and 0 deletions

5
libc/include/unistd.h Normal file
View File

@ -0,0 +1,5 @@
#pragma once
#define STDIN_FILENO 0
#define STDOUT_FILENO 1
#define STDERR_FILENO 2