ack/plat/linux386/libsys/brk.c

14 lines
172 B
C
Raw Normal View History

2007-04-21 23:02:11 +00:00
/* $Source$
* $State$
* $Revision$
*/
#include <stdlib.h>
#include <unistd.h>
#include "libsys.h"
int brk(void* end)
{
return _syscall(__NR_brk, (quad) end, 0, 0);
}