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