shithub: riscv

ref: e045eefc7e723e4e3bf036dd98178afebd8da88e
dir: /sys/src/ape/lib/9/unmount.c/

View raw version
#include <lib9.h>

extern	int	_UNMOUNT(char*, char*);

int
unmount(char *name, char *old)
{
	return _UNMOUNT(name, old);
}