aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-02-22 09:29:22 +0000
committerRon Yorston <rmy@pobox.com>2018-02-22 09:29:22 +0000
commit1efab55196bea6d93aa26ca2fb1d3d358f16452f (patch)
tree967cc92e8155a5b6ffe6b98a49f86038a430c2f6 /coreutils
parentbd4bcdbd66163a0f2132ba386dd575fdfbf6f6d7 (diff)
downloadbusybox-w32-1efab55196bea6d93aa26ca2fb1d3d358f16452f.tar.gz
busybox-w32-1efab55196bea6d93aa26ca2fb1d3d358f16452f.tar.bz2
busybox-w32-1efab55196bea6d93aa26ca2fb1d3d358f16452f.zip
fsync: enable in default configuration
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/fsync.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/coreutils/fsync.c b/coreutils/fsync.c
index 5e77e2c16..f132087cd 100644
--- a/coreutils/fsync.c
+++ b/coreutils/fsync.c
@@ -26,6 +26,9 @@
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
29 32
30/* This is a NOFORK applet. Be very careful! */ 33/* This is a NOFORK applet. Be very careful! */
31 34