fixed bash/dash/sh issue (Ubuntu)
[zpugcc/jano.git] / toolchain / gcc / libgloss / libnosys / link.c
blob35881cf7f0b7c9be148632c1e9706c7824632e11
1 /*
2 * Stub version of link.
3 */
5 #include "config.h"
6 #include <_ansi.h>
7 #include <_syslist.h>
8 #include <errno.h>
9 #undef errno
10 extern int errno;
11 #include "warning.h"
13 int
14 _DEFUN (_link, (existing, new),
15 char *existing _AND
16 char *new)
18 errno = ENOSYS;
19 return -1;
22 stub_warning(_link)