shithub: riscv

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