shithub: scc

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