From 8a0efa53e44919bcf5ccb1d3353618a82afdf8bc Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Thu, 17 Feb 2000 19:39:52 +0000 Subject: import newlib-2000-02-17 snapshot --- newlib/libc/sys/netware/link.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 newlib/libc/sys/netware/link.c (limited to 'newlib/libc/sys/netware/link.c') diff --git a/newlib/libc/sys/netware/link.c b/newlib/libc/sys/netware/link.c new file mode 100644 index 000000000..d816d0ac6 --- /dev/null +++ b/newlib/libc/sys/netware/link.c @@ -0,0 +1,17 @@ +/* NetWare version of link. This can not be implemented using an + MS-DOS file system. */ + +#include +#include + +#undef errno +extern int errno; + +int +link (path1, path2) + const char *path1; + const char *path2; +{ + errno = ENOSYS; + return -1; +} -- cgit v1.2.3