shithub: scc

ref: 552e89a27a4cb01785604e7aa049184eb940a996
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}