shithub: scc

ref: 44acca3ccc9401ec42b10ea4f0d5fbb072faf874
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}