shithub: scc

ref: 2cba9e1b69528c16908d8cd28854211a604cd45b
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}