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
Updated to fedora-glibc-20041018T0940
[glibc.git]
/
sysdeps
/
unix
/
sysv
/
linux
/
umount.S
blob
e18463e2e6f479388219519c5dddcc09833fd81b
1
/* This hack is necessary since the kernel people are making "strange"
2
changes. They simply rename old system calls. */
3
4
#include <sysdep.h>
5
#ifdef __NR_oldumount
6
PSEUDO (__umount, oldumount, 1)
7
#else
8
PSEUDO (__umount, umount, 1)
9
#endif
10
ret
11
PSEUDO_END(__umount)
12
weak_alias (__umount, umount)