diff options
author | Ron Yorston <rmy@pobox.com> | 2018-04-03 20:05:33 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2018-04-03 20:05:33 +0100 |
commit | 016ca978455df7257a92236bbfb0c67de4a4bcd8 (patch) | |
tree | a46d2b089dc45f049a1b254116f355b3d0570070 /include | |
parent | dcfb820bb9c889ec186c9b3ad28d53bd8626363e (diff) | |
download | busybox-w32-016ca978455df7257a92236bbfb0c67de4a4bcd8.tar.gz busybox-w32-016ca978455df7257a92236bbfb0c67de4a4bcd8.tar.bz2 busybox-w32-016ca978455df7257a92236bbfb0c67de4a4bcd8.zip |
fsync: avoid a gratuitous difference from upstream
Move the definition of O_NOCTTY to mingw.h so that fsync.c is the
same as upstream.
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index 652652c3d..7ee9c15cc 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -30,6 +30,7 @@ int inet_pton(int af, const char *src, void *dst); | |||
30 | #define FD_CLOEXEC 0x1 | 30 | #define FD_CLOEXEC 0x1 |
31 | #define O_NONBLOCK 0 | 31 | #define O_NONBLOCK 0 |
32 | #define O_NOFOLLOW 0 | 32 | #define O_NOFOLLOW 0 |
33 | #define O_NOCTTY 0 | ||
33 | #define O_SPECIAL 0x800000 | 34 | #define O_SPECIAL 0x800000 |
34 | 35 | ||
35 | /* | 36 | /* |