shithub: scc

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

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

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

	return end;
}