shithub: riscv

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