shithub: scc

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

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

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

	return end;
}