mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 10:50:07 +00:00
7e836977ea
2000-03-20 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/aix/*: Add initial code for port to AIX 4.3.
9 lines
148 B
C
9 lines
148 B
C
/* This is a system call. We only have to provide the wrapper. */
|
|
#include <unistd.h>
|
|
|
|
void *
|
|
__sbrk (ptrdiff_t delta)
|
|
{
|
|
return sbrk (delta);
|
|
}
|