1
0
Fork 0
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:
Jonas 'Sortie' Termansen 2013-04-16 10:19:25 +02:00
parent 2b3f3d0bc4
commit 5260d22492

View file

@ -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. */