shithub: scc

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

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

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

	return end;
}