10 lines
136 B
C
10 lines
136 B
C
|
#ifndef FCNTL_H
|
||
|
#define FCNTL_H
|
||
|
|
||
|
#define O_RDONLY 0x0000
|
||
|
#define O_WRONLY 0x0010
|
||
|
#define O_RDWR 0x0020
|
||
|
#define O_CREAT 0x0200
|
||
|
|
||
|
#endif
|