shithub: scc

ref: 8b3b797a2474a56c72f4c0f190910aeb320943be
dir: /src/libc/arch/posix/_getheap.c/

View raw version
#include "../../libc.h"

void *
_getheap(void)
{
	extern char end[];

	return end;
}