shithub: riscv

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