shithub: scc

ref: 0227f08f277216ef979a859e1170aff185205abb
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}