diff options
-rw-r--r-- | include/ouroboros/fccntl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ouroboros/fccntl.h b/include/ouroboros/fccntl.h index 83e733a2..55e6a343 100644 --- a/include/ouroboros/fccntl.h +++ b/include/ouroboros/fccntl.h @@ -37,9 +37,9 @@ #define FLOWFRNOBLOCK 00001000 /* Non-blocking read */ #define FLOWFWNOBLOCK 00002000 /* Non-blocking write */ -#define FLOWFNONBLOCK 00003000 /* Non-blocking rw */ +#define FLOWFNONBLOCK (FLOWFRNOBLOCK | FLOWFWNOBLOCK) -#define FLOWFDEFAULT 00000002 /* Default, blocking, rw */ +#define FLOWFDEFAULT FLOWFRDWR #define FLOWFINVALID (FLOWFWRONLY | FLOWFRDWR) |