shithub: scc

ref: 934e2128978ff00ff47a6bd148e209f73b4b6252
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}