shithub: scc

ref: 844cf5ff2aa2a862b58d2e503e02534e133ad395
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}