mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
0a7bf8fc4c
These should never be marked executable as they have no shebang and are pure source files.
12 lines
219 B
C
12 lines
219 B
C
#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;
|
|
}
|