shithub: riscv

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