mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 19:09:58 +08:00
18 lines
273 B
C
18 lines
273 B
C
/* NetWare version of link. This can not be implemented using an
|
|
MS-DOS file system. */
|
|
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
|
|
#undef errno
|
|
extern int errno;
|
|
|
|
int
|
|
link (path1, path2)
|
|
const char *path1;
|
|
const char *path2;
|
|
{
|
|
errno = ENOSYS;
|
|
return -1;
|
|
}
|