shithub: scc

ref: 3ffe44ba0b84317b63bfcdbfe4bc1418f0ae59ca
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);
}