repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Replace FSF snail mail address with URLs.
[glibc.git]
/
sysdeps
/
unix
/
sysv
/
linux
/
umount2.S
blob
92241bbf97d549b1e5a20dfe7e0e862b4675db00
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