shithub: riscv

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