shithub: scc

ref: 5ab34fe6b03c4e0938f17fe445e96bc19bf76768
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}