shithub: scc

ref: 65c444328c354a3620bab5b37ceb157e6fad8f17
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);
}