blob: 9c50ed5b1d8377328129b812679f8a00baf21653 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <fcntl.h>
static const mode_t kO_RDONLY = O_RDONLY;
static const mode_t kO_WRONLY = O_WRONLY;
static const mode_t kO_RDWR = O_RDWR;
static const mode_t kO_CREAT = O_CREAT;
static const mode_t kO_EXCL = O_EXCL;
|