shithub: riscv

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