git: 9front

ref: 014f5bb2e14d89cbbbe2841b6d287a1f7e3ef715
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)
{
	errno = EINVAL;
	return -1;
}