shithub: riscv

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