shithub: scc

ref: b75c7d2fa8b3f9a8ba96e5a3035efa68b8d8cf85
dir: /src/libc/arch/linux/_getheap.c/

View raw version
#include <stddef.h>

#include "../../libc.h"
#include "../../syscall.h"

void *
_getheap(void)
{
	return _brk(0);
}