shithub: scc

ref: 02bbb44a56212188031129423a670ffec1554ed5
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}