mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-22 23:17:28 +08:00
0a7bf8fc4c
These should never be marked executable as they have no shebang and are pure source files.
11 lines
166 B
C
11 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;
|
|
}
|