shithub: riscv

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