summaryrefslogtreecommitdiffstats
path: root/usr/klibc/umount.c
blob: d31a3008bc96b0a46c1fcd4cceb5def02c91877e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * umount.c
 *
 * Single-argument form of umount
 */

#include <sys/mount.h>

int umount(const char *dir)
{
	return umount2(dir, 0);
}