umount.c 123 B

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