From 68166eb575ee21e54625a2c799194ec5df17d8f8 Mon Sep 17 00:00:00 2001 From: cuz Date: Thu, 11 Jul 2002 14:07:27 +0000 Subject: [PATCH] Added new defines git-svn-id: svn://svn.cc65.org/cc65/trunk@1345 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/fcntl.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/fcntl.h b/include/fcntl.h index 0c3179402..4853fd1df 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -38,6 +38,11 @@ +/* Predefined file handles */ +#define STDIN_FILENO 0 +#define STDOUT_FILENO 1 +#define STDERR_FILENO 2 + /* Flag values for the open() call */ #define O_RDONLY 0x01 #define O_WRONLY 0x02 -- 2.39.5