mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Simplify STDFOO_FILENO macros.
This commit is contained in:
parent
2b3f3d0bc4
commit
5260d22492
1 changed files with 3 additions and 3 deletions
|
@ -209,9 +209,9 @@ __BEGIN_DECLS
|
|||
#define _SC_XOPEN_UUCP 133
|
||||
#define _SC_XOPEN_VERSION 134
|
||||
|
||||
#define STDIN_FILENO (0)
|
||||
#define STDOUT_FILENO (1)
|
||||
#define STDERR_FILENO (2)
|
||||
#define STDIN_FILENO 0
|
||||
#define STDOUT_FILENO 1
|
||||
#define STDERR_FILENO 2
|
||||
|
||||
/* TODO: _POSIX_VDISABLE is missing here. */
|
||||
|
||||
|
|
Loading…
Reference in a new issue