source:
trunk/libs/newlib/src/libgloss/libnosys/link.c
Last change on this file was 444, checked in by , 7 years ago | |
---|---|
File size: 268 bytes |
Line | |
---|---|
1 | /* |
2 | * Stub version of link. |
3 | */ |
4 | |
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" |
12 | |
13 | int |
14 | _link (char *existing, |
15 | char *new) |
16 | { |
17 | errno = ENOSYS; |
18 | return -1; |
19 | } |
20 | |
21 | stub_warning(_link) |
Note: See TracBrowser
for help on using the repository browser.