shithub: riscv

ref: 2fe3b28f86ed4aa291fb8a620b948abe9c6a1f84
dir: /sys/src/ape/lib/bsd/lstat.c/

View raw version
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>

int
lstat(char *name, struct stat *ans)
{
	return stat(name, ans);
}

int
symlink(char *name1, char *name2)
{
	errno = EPERM;
	return -1;
}

int
readlink(char *name, char *buf, int size)
{
	errno = EIO;
	return -1;
}