shithub: scc

ref: 2f307820bc3dab666974d065749aef367982f420
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}