shithub: scc

ref: 3f1b3e7a7b4735ce4b796b174986d52dccdc1fa7
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}