git: 9front

ref: 00f5c30ebc7c56b0deb6e0e3bc139f356174feff
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);
}