Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fcntl.h « sys « go32 « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 792c0673d8d0bbd341d8ea4721e521b45bb78bd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#define O_RDONLY	0x0001
#define	O_WRONLY	0x0002
#define	O_RDWR		0x0004
#define	O_CREAT		0x0100
#define	O_TRUNC		0x0200
#define O_EXCL		0x0400
#define O_APPEND	0x0800
#define O_TEXT		0x4000
#define O_BINARY	0x8000