shithub: scc

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

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

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

	return end;
}