minix/lib/libc/posix/_sync.c

11 lines
127 B
C

#include <lib.h>
#define sync _sync
#include <unistd.h>
PUBLIC int sync()
{
message m;
return(_syscall(FS, SYNC, &m));
}