Simplify STDFOO_FILENO macros.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-04-16 10:19:25 +02:00
parent 2b3f3d0bc4
commit 5260d22492
1 changed files with 3 additions and 3 deletions

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