shithub: scc

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

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

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

	return end;
}