shithub: scc

ref: 582337f4ec80f5afcbcbf77965865afb9042a25a
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}