shithub: scc

ref: 2a60c595e712d405d7aefdc7cef07bdfa0e4b407
dir: /src/libc/arch/posix/_getheap.c/

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

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

	return end;
}