minix/lib/posix/_sync.c

11 lines
127 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(FS, SYNC, &m));
}