rework langinfo code for ABI compat and for use by time code
[musl] / linux / umount.c
1 #include <sys/mount.h>
2 #include "syscall.h"
3
4 int umount(const char *special)
5 {
6         return syscall(SYS_umount2, special, 0);
7 }