Retro68/gcc/newlib/libc/sys/rdos/readlink.c
2017-10-07 02:16:47 +02:00

12 lines
219 B
C
Executable File

#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>
#include <sys/types.h>
int readlink(const char *__restrict path, char *__restrict buf, size_t bufsize)
{
errno = ENOSYS;
return -1;
}