2000-11-30 Jeff Johnston <jjohnstn@redhat.com>

* libc/sys/sh/syscalls.c (_link): New stub.
This commit is contained in:
Jeff Johnston 2000-11-30 20:18:28 +00:00
parent f24bad4181
commit b273323fcd
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-11-30 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/sh/syscalls.c (_link): New stub.
2000-11-29 Nick Clifton <nickc@redhat.com>
* configure.host: Add xscale target.

View File

@ -37,6 +37,12 @@ _close (int file)
return __trap34 (SYS_close, file, 0, 0);
}
int
_link (char *old, char *new)
{
return -1;
}
caddr_t
_sbrk (int incr)
{