newlib-cygwin/newlib/libc/sys/rdos/symlink.c
Mike Frysinger 0a7bf8fc4c remove +x bit on source files
These should never be marked executable as they have no shebang and
are pure source files.
2022-12-21 22:38:57 -05:00

10 lines
166 B
C

#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>
int symlink(const char *path1, const char *path2)
{
errno = ENOSYS;
return -1;
}