git: 9front

ref: 6f80f6a7be43a1cef6597d7bd6e4db26e9ec15fa
dir: /sys/src/ape/lib/ap/plan9/fsync.c/

View raw version
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>

int
fsync(int fd)
{
	errno = EINVAL;
	return -1;
}