minix/lib/posix/_sync.c
2005-04-21 14:53:53 +00:00

11 lines
127 B
C
Executable file

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