shithub: scc

ref: 950206e6394fe75a3b9bfebd4560128a686046db
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}