summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBartosz Golaszewski <bartekgola@gmail.com>2015-10-14 17:14:01 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2015-10-14 18:11:59 +0200
commitea86f1d8885335f2bd38a388d2ab762bd1e29427 (patch)
tree8226d8ced668a4a54c15e6b8d0c88e3e67e50ce8 /include
parent24e4dc6660057aa13c8d021f0dacf4f58bdf5245 (diff)
syncfs: add system call support
Add support for the syncfs() system call. Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/unistd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unistd.h b/include/unistd.h
index 3793d2d3e..4701dabf8 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -1073,7 +1073,7 @@ extern char *getpass (const char *__prompt) __nonnull ((1));
extern int fsync (int __fd);
#endif /* Use BSD || X/Open || Unix98. */
-#if 0 /*def __USE_GNU */
+#if __USE_GNU
/* Make all changes done to all files on the file system associated
* with FD actually appear on disk. */
extern int syncfs (int __fd) __THROW;