shithub: scc

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

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

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

	return end;
}