shithub: scc

ref: 89ce7731fc48c5e3d374ef3082da7958a0e4bc49
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}