home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d2xx
/
d260
/
cclib.lha
/
CCLib
/
CClib.zoo
/
include
/
fcntl.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-10-16
|
251 b
|
15 lines
#ifndef FCNTL_H
#define FCNTL_H 1
#define O_RDONLY 0
#define O_WRONLY 1
#define O_RDWR (1<<1)
#define O_CREAT (1<<8)
#define O_TRUNC (1<<9)
#define O_EXCL (1<<10)
#define O_APPEND (1<<11)
#define O_CONRAW (1<<14)
#define O_STDIO (1<<15)
#endif