diff --git a/bits/fcntl.h b/bits/fcntl.h index f273f84..43e8e6b 100644 --- a/bits/fcntl.h +++ b/bits/fcntl.h @@ -29,6 +29,7 @@ /* Bits OR'd into the second argument to open. */ #define O_CREAT 0x0200 /* Create file if it doesn't exist. */ +#define O_CREATE 0x0200 /* Create file if it doesn't exist. */ #define O_EXCL 0x0800 /* Fail if file already exists. */ #define O_TRUNC 0x0400 /* Truncate file to zero length. */ #define O_NOCTTY 0x8000 /* Don't assign a controlling terminal. */