shithub: scc

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