shithub: scc

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

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

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

	return end;
}