diff options
Diffstat (limited to 'misc/fsync.c')
-rw-r--r-- | misc/fsync.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/misc/fsync.c b/misc/fsync.c index 05f3acfc0a..8f1d95909e 100644 --- a/misc/fsync.c +++ b/misc/fsync.c @@ -20,8 +20,7 @@ /* Make all changes done to FD actually appear on disk. */ int -fsync (fd) - int fd; +fsync (int fd) { __set_errno (ENOSYS); return -1; |