1
0

umount.c 131 B

1234567
  1. #include <sys/mount.h>
  2. #include "syscall.h"
  3. int umount(const char *special)
  4. {
  5. return syscall2(__NR_umount2, (long)special, 0);
  6. }