about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/aix/brk.c
blob: 64bc8cdd2b55a79644cb3d76f1f39e080685ace3 (plain) (blame)
1
2
3
4
5
6
7
8
/* This is a system call.  We only have to provide the wrapper.  */
#include <unistd.h>

int
__brk (void *addr)
{
  return brk (addr);
}