shithub: riscv

ref: 9e2344a5be97b416c73c81f01913702fd6d2da6c
dir: /sys/src/ape/lib/9/segfree.c/

View raw version
#include <lib9.h>

extern	int	_SEGFREE(void*, unsigned long);

int
segfree(void *va, unsigned long len)
{
	return _SEGFREE(va, len);
}