mirror of
git://sourceware.org/git/glibc.git
synced 2024-12-27 04:41:02 +08:00
AIX implementation of brk.
This commit is contained in:
parent
23ef7b6154
commit
d9fd2b3823
8
sysdeps/unix/sysv/aix/brk.c
Normal file
8
sysdeps/unix/sysv/aix/brk.c
Normal 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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user