shithub: riscv

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