shithub: scc

ref: 0c1934dabb9e1f81b8c7c2099f138e17dc772aca
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}