aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-04-03 20:05:33 +0100
committerRon Yorston <rmy@pobox.com>2018-04-03 20:05:33 +0100
commit016ca978455df7257a92236bbfb0c67de4a4bcd8 (patch)
treea46d2b089dc45f049a1b254116f355b3d0570070 /coreutils
parentdcfb820bb9c889ec186c9b3ad28d53bd8626363e (diff)
downloadbusybox-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 'coreutils')
-rw-r--r--coreutils/fsync.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/coreutils/fsync.c b/coreutils/fsync.c
index f132087cd..5e77e2c16 100644
--- a/coreutils/fsync.c
+++ b/coreutils/fsync.c
@@ -26,9 +26,6 @@
26#ifndef O_NOATIME 26#ifndef O_NOATIME
27# define O_NOATIME 0 27# define O_NOATIME 0
28#endif 28#endif
29#ifndef O_NOCTTY
30# define O_NOCTTY 0
31#endif
32 29
33/* This is a NOFORK applet. Be very careful! */ 30/* This is a NOFORK applet. Be very careful! */
34 31