chiark / gitweb /
[PATCH] klibc: strlcpy/strlcat - don't alter destination if size == 0
[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 }