shithub: scc

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

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

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

	return end;
}