4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-18 04:19:21 +08:00

12 lines
219 B
C
Raw Normal View History

#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;
}