mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 13:15:09 -07:00
8 lines
229 B
C
8 lines
229 B
C
#include <sys/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;
|