shithub: scc

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