shithub: scc

ref: c3b9a7407da63336ba06d617eefab16e82aa7c5b
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}