shithub: plan9front

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