repo.or.cz
/
gzip.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
zdiff would exit 2 (error) rather than 1 for differences
[gzip.git]
/
primos
/
include
/
fcntl.h
blob
9e4b1dc83d50d8e6bdb96cd1f7cc7acc2da296af
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