shithub: scc

ref: 68d883b47e13b145757532c4f9fb77df515eb613
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}