]> git.cworth.org Git - gzip/blob - primos/include/fcntl.h
Imported Upstream version 1.3.2
[gzip] / primos / include / fcntl.h
1 /*
2 ** fcntl.h
3 **
4 ** Emulation of the Unix fcntl.h header file for PRIMOS
5 **
6 ** Author: Peter Eriksson <pen@lysator.liu.se>
7 */
8
9 #ifndef __FCNTL_H__
10 #define __FCNTL_H__
11
12 #define O_RDONLY 0
13 #define O_WRONLY 1
14 #define O_RDWR   2
15
16 #define O_BINARY 0
17 #define O_EXCL   0
18 #define O_NDELAY 0
19 #define O_CREAT  0
20 #define O_TRUNC  0
21
22 #endif