ack/mach/minix/libsys/_sync.c

9 lines
144 B
C
Raw Normal View History

#include <lib.h>
#define sync _sync
1991-09-19 12:46:16 +00:00
#include <unistd.h>
PUBLIC int sync()
{
return(_callm1(FS, SYNC, 0, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR));
}