| 1 | /* umount system call with two parameters. */ |
|---|---|
| 2 | |
| 3 | #include <sysdep.h> |
| 4 | #if defined __NR_oldumount || defined __NR_umount2 |
| 5 | #ifdef __NR_oldumount |
| 6 | PSEUDO (__umount2, umount, 2) |
| 7 | #else |
| 8 | PSEUDO (__umount2, umount2, 2) |
| 9 | #endif |
| 10 | ret |
| 11 | PSEUDO_END(__umount2) |
| 12 | weak_alias (__umount2, umount2) |
| 13 | #endif |
| 14 |