shithub: scc

ref: 5e634ac1c908802ba442cb3780b386cfafeee531
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}