source: trunk/libs/newlib/src/newlib/libc/sys/netware/link.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 273 bytes
Line 
1/* NetWare version of link.  This can not be implemented using an
2   MS-DOS file system.  */
3
4#include <unistd.h>
5#include <errno.h>
6
7#undef errno
8extern int errno;
9
10int
11link (path1, path2)
12     const char *path1;
13     const char *path2;
14{
15  errno = ENOSYS;
16  return -1;
17}
Note: See TracBrowser for help on using the repository browser.