mirror of git://sourceware.org/git/glibc.git
AIX implementation of sbrk.
This commit is contained in:
parent
00f4e2e478
commit
bada1fee57
|
@ -0,0 +1,8 @@
|
|||
/* This is a system call. We only have to provide the wrapper. */
|
||||
#include <unistd.h>
|
||||
|
||||
void *
|
||||
__sbrk (ptrdiff_t delta)
|
||||
{
|
||||
return sbrk (delta);
|
||||
}
|
Loading…
Reference in New Issue