shithub: scc

ref: f9b321d259601b941e2308af8f158b37c573f4a7
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}