1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-22 12:30:41 +00:00

Added new defines

git-svn-id: svn://svn.cc65.org/cc65/trunk@1345 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-07-11 14:07:27 +00:00
parent afb0f66ab7
commit 68166eb575

View File

@ -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