From 669b2db75b8546818c289aa36ff405648327db53 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Wed, 21 Sep 2005 10:57:21 +0000 Subject: [PATCH] Added fsync() prototype. --- include/unistd.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/unistd.h b/include/unistd.h index 633cdccfe..6f60b2a81 100755 --- a/include/unistd.h +++ b/include/unistd.h @@ -152,6 +152,7 @@ _PROTOTYPE( int mount, (char *_spec, char *_name, int _flag) ); _PROTOTYPE( long ptrace, (int _req, pid_t _pid, long _addr, long _data) ); _PROTOTYPE( char *sbrk, (int _incr) ); _PROTOTYPE( int sync, (void) ); +_PROTOTYPE( int fsync, (int fd) ); _PROTOTYPE( int umount, (const char *_name) ); _PROTOTYPE( int reboot, (int _how, ...) ); _PROTOTYPE( int gethostname, (char *_hostname, size_t _len) );