home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff399.lzh
/
CCLib
/
Include
/
fcntl.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-11-02
|
251b
|
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