shithub: riscv

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