shithub: scc

ref: 829833bcfdb0f780537568a12041c83533401220
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}