shithub: scc

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

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

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

	return end;
}