source:
trunk/essentials/app-arch/gzip/primos/include/fcntl.h
Last change on this file was 3325, checked in by , 18 years ago | |
---|---|
File size: 329 bytes |
Line | |
---|---|
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 |
Note:
See TracBrowser
for help on using the repository browser.