AIX implementation of sbrk.

This commit is contained in:
Ulrich Drepper 2000-03-21 01:19:50 +00:00
parent 00f4e2e478
commit bada1fee57
1 changed files with 8 additions and 0 deletions

View File

@ -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);
}