git: 9front

ref: afab68305b44a6ab50d9112e8e3a37e7518c04b7
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;
}