shithub: scc

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