home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 4
/
DATAFILE_PDCD4.iso
/
unix
/
unixlib36d
/
clib
/
h
/
fcntl
< prev
next >
Wrap
Text File
|
1994-02-26
|
721b
|
46 lines
/* fcntl.h (c) Copyright 1990 H.Rogers */
#ifndef __FCNTL_H
#define __FCNTL_H
#ifdef __cplusplus
extern "C" {
#endif
#define O_OMASK 3
#define O_RDONLY 0
#define O_WRONLY 1
#define O_RDWR 2
#define O_APPEND 0000004
#define O_CREAT 0000010
#define O_TRUNC 0000020
#define O_EXCL 0000040
#define O_NDELAY 0000100
#define O_EXECCL 0000400 /* close on exec() flag - must be bit 8 */
#define O_BINARY 0002000
#define O_TEXT 0001000
#define O_PIPE 0004000 /* UnixLib specific */
#ifndef S_IEXEC
#define S_IEXEC 0000100
#define S_IWRITE 0000200
#define S_IREAD 0000400
#endif
#define F_DUPFD 1
#define F_GETFD 2
#define F_SETFD 3
#define F_GETFL 4
#define F_SETFL 5
#ifdef __cplusplus
}
#endif
#endif