shithub: scc

ref: ffea22146a5b09b2cfac04b7a703558382624d01
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}