uniLoader/lib/sys/netware/link.c
Ivaylo Ivanov a1be36ae02 EXPERIMENTAL: Partially implement NewLib
Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
2023-07-19 19:37:17 +03:00

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