shithub: scc

ref: 440e24ce81386865be595f5825bc7287d5063ccc
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}