]> git.sur5r.net Git - cc65/commitdiff
Moved fmode.inc -> fcntl.inc, add new constants
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 16 Nov 2002 16:35:15 +0000 (16:35 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 16 Nov 2002 16:35:15 +0000 (16:35 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1528 b7a2c559-68d2-44c3-8de9-860c34a00d81

asminc/fcntl.inc [new file with mode: 0644]
asminc/fmode.inc [deleted file]

diff --git a/asminc/fcntl.inc b/asminc/fcntl.inc
new file mode 100644 (file)
index 0000000..16a2549
--- /dev/null
@@ -0,0 +1,19 @@
+;
+; Ullrich von Bassewitz, 05.06.1999
+;
+
+; Predefined file handles
+STDIN_FILENO    = 0
+STDOUT_FILENO   = 1
+STDERR_FILENO   = 2
+
+; File mode constants, must match the values in the C headers
+O_RDONLY       = $01
+O_WRONLY       = $02
+O_RDWR         = $03
+O_CREAT                = $10
+O_TRUNC                = $20
+O_APPEND       = $40
+
+
+
diff --git a/asminc/fmode.inc b/asminc/fmode.inc
deleted file mode 100644 (file)
index cf2db3a..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-;
-; Ullrich von Bassewitz, 05.06.1999
-;
-
-; File mode constants, must match the values in the C headers
-
-
-O_RDONLY       = $01
-O_WRONLY       = $02
-O_RDWR         = $03
-O_CREAT                = $10
-O_TRUNC                = $20
-O_APPEND       = $40
-
-