Fixed definitions of O_* flags.

This commit is contained in:
dtrg 2010-08-20 19:27:09 +00:00
parent c326f3c6a3
commit 085f346f8c

View file

@ -43,9 +43,9 @@ enum
O_WRONLY = 1,
O_RDWR = 2,
O_CREAT = 0x10,
O_TRUNC = 0x20,
O_APPEND = 0x40
O_CREAT = 0x40,
O_TRUNC = 0x200,
O_APPEND = 0x400
};
extern int open(const char* path, int access, ...);