shithub: riscv

ref: e5c7fe6305977d4135d56d2fa6b5b37c8f275679
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)
{
	errno = EINVAL;
	return -1;
}