shithub: scc

ref: 91893c5a55f3882dad1d8b7c892da204d10cfa91
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}