From: Ulrich Drepper Date: Thu, 20 Aug 1998 19:20:20 +0000 (+0000) Subject: umount system call. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61a5b83ee373216f6aa45cdd44dee4fc691b2e41;p=thirdparty%2Fglibc.git umount system call. --- diff --git a/sysdeps/unix/sysv/linux/umount.S b/sysdeps/unix/sysv/linux/umount.S new file mode 100644 index 00000000000..e18463e2e6f --- /dev/null +++ b/sysdeps/unix/sysv/linux/umount.S @@ -0,0 +1,12 @@ +/* This hack is necessary since the kernel people are making "strange" + changes. They simply rename old system calls. */ + +#include +#ifdef __NR_oldumount +PSEUDO (__umount, oldumount, 1) +#else +PSEUDO (__umount, umount, 1) +#endif + ret +PSEUDO_END(__umount) +weak_alias (__umount, umount)