shithub: scc

ref: 7b2947de49547c2585eea8378d07b015465d0d6b
dir: /src/libc/arch/linux/_getheap.c/

View raw version
#include <stddef.h>

#include "../../libc.h"
#include "../../syscall.h"

void *
_getheap(void)
{
	return _brk(0);
}