shithub: scc

ref: 93143fdbcbdf5fa2ecf4759f6c71344856469d87
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}