zdiff would exit 2 (error) rather than 1 for differences
[gzip.git] / primos / include / fcntl.h
blob9e4b1dc83d50d8e6bdb96cd1f7cc7acc2da296af
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 */
9 #ifndef __FCNTL_H__
10 #define __FCNTL_H__
12 #define O_RDONLY 0
13 #define O_WRONLY 1
14 #define O_RDWR 2
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
22 #endif