secondary cache feature in vm.
[minix.git] / lib / libc / posix / _fsync.c
blob86ef0a5af5d4ff7751c67997209153bd0ad1772c
1 #include <lib.h>
2 #define sync _sync
3 #include <unistd.h>
5 PUBLIC int fsync(int fd)
7 message m;
9 m.m1_i1 = fd;
11 return(_syscall(FS, FSYNC, &m));