minix/lib/libc/posix/_sync.c
2010-06-08 13:58:01 +00:00

11 lines
136 B
C

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