minix/lib/libc/posix/_sync.c

11 lines
136 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
#include <lib.h>
#define sync _sync
#include <unistd.h>
PUBLIC int sync()
{
message m;
return(_syscall(VFS_PROC_NR, SYNC, &m));
2005-04-21 16:53:53 +02:00
}