shithub: scc

ref: 8f3b75a7c544312a9b182a614b63d18714a9b5fc
dir: /src/libc/arch/linux/_getheap.c/

View raw version
#include <stddef.h>

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

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