shithub: scc

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

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

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

	return end;
}