[parisc-linux] Recent changes
Philipp Rumpf
prumpf@mathe.stud.uni-erlangen.de
Sat, 6 Nov 1999 19:20:23 +0100
On Tue, Nov 02, 1999 at 11:14:33PM -0500, Alex deVries wrote:
> ld: Unsatisfied symbols:
> hpux_brk (code)
Why did the definition of hpux_brk (in kernel/sys_hpux.c) ever vanish ? Some
time ago, it looked like this:
unsigned long sys_brk(unsigned long addr);
unsigned long hpux_brk(unsigned long addr)
{
/* Sigh. Looks like HP/UX libc relies on kernel bugs. */
return sys_brk(addr + PAGE_SIZE);
}
Philipp Rumpf