shithub: scc

ref: 39efe97b2fff40d0e17fab3d0ddbc58778aca1eb
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}