shithub: riscv

ref: 0ac099e6b444837f0f91c8fecc6719bd3c63eb44
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);
}