umount system call.

This commit is contained in:
Ulrich Drepper 1998-08-20 19:20:20 +00:00
parent 5c458f2cb8
commit 61a5b83ee3

View File

@ -0,0 +1,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)