shithub: scc

ref: 9b5957bd25a646d1091173fa473395756fc1e77f
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}