summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/umount.S
blob: e18463e2e6f479388219519c5dddcc09833fd81b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* This hack is necessary since the kernel people are making "strange"
   changes.  They simply rename old system calls.  */

#include <sysdep.h>
#ifdef __NR_oldumount
PSEUDO (__umount, oldumount, 1)
#else
PSEUDO (__umount, umount, 1)
#endif
	ret
PSEUDO_END(__umount)
weak_alias (__umount, umount)