shithub: riscv

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