AIX implementation of brk.

This commit is contained in:
Ulrich Drepper 2000-03-21 01:12:10 +00:00
parent 23ef7b6154
commit d9fd2b3823

View File

@ -0,0 +1,8 @@
/* This is a system call. We only have to provide the wrapper. */
#include <unistd.h>
int
__brk (void *addr)
{
return brk (addr);
}