shithub: riscv

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