aboutsummaryrefslogtreecommitdiff
path: root/core/unmount.c
blob: 81103d92229ac62a496c8826a964a05f26d180e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "../lib/io/io.h"
#include "../lib/sys/unmount.h"

int main(int argc, char **argv)
{
	if (argc != 2) {
		wff(STDERR_FD, "unmount <path>\n");
		return -1;
	}

	return unmount(argv[1], 9);
}