shithub: scc

ref: 2472ad09ad5d993096556543f2c5ce8f786223c1
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}