shithub: scc

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

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

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

	return end;
}