mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00: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;
|
|
}
|