shithub: scc

ref: 6284570962706a28b1bf7a45a59dad2261b49008
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}