shithub: scc

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

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

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

	return end;
}