chiark / gitweb /
9a8e62a779bbe56445a630e420cfb8e14c8d3709
[elogind.git] / klibc / klibc / umount.c
1 /*
2  * umount.c
3  *
4  * Single-argument form of umount
5  */
6
7 #include <sys/mount.h>
8
9 int umount(const char *dir)
10 {
11   return umount2(dir, 0);
12 }