summaryrefslogtreecommitdiff
path: root/Build/source/utils/gzip/primos/include/fcntl.h
blob: 9e4b1dc83d50d8e6bdb96cd1f7cc7acc2da296af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
** fcntl.h
**
** Emulation of the Unix fcntl.h header file for PRIMOS
**
** Author: Peter Eriksson <pen@lysator.liu.se>
*/

#ifndef __FCNTL_H__
#define __FCNTL_H__

#define O_RDONLY 0
#define O_WRONLY 1
#define O_RDWR   2

#define O_BINARY 0
#define O_EXCL   0
#define O_NDELAY 0
#define O_CREAT  0
#define O_TRUNC  0

#endif