shithub: scc

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

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

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

	return end;
}