shithub: riscv

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