shithub: riscv

ref: 1be74e0b703a569fee0129b0560f4e5b92da7f5b
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);
}