From 5260d22492a2a4be907aec795b7fa986a77c6c32 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 16 Apr 2013 10:19:25 +0200 Subject: [PATCH] Simplify STDFOO_FILENO macros. --- libc/include/unistd.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libc/include/unistd.h b/libc/include/unistd.h index 45bda771..ffde053a 100644 --- a/libc/include/unistd.h +++ b/libc/include/unistd.h @@ -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. */