reorganize thread exit code, make pthread_exit call cancellation handlers (pt2)
[musl] / src / linux / umount.c
1 #include <sys/mount.h>
2 #define SYSCALL_STANDALONE
3 #include "syscall.h"
4
5 int umount(const char *special)
6 {
7         return syscall1(__NR_umount, (long)special);
8 }