From a22a888980dcaf66b61e8e89905ddda7bfe6bf17 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 15 Oct 2000 03:28:55 +0000 Subject: [PATCH] Linux/HPPA specific umount definition. --- sysdeps/unix/sysv/linux/hppa/umount.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sysdeps/unix/sysv/linux/hppa/umount.c diff --git a/sysdeps/unix/sysv/linux/hppa/umount.c b/sysdeps/unix/sysv/linux/hppa/umount.c new file mode 100644 index 00000000000..39cb251030a --- /dev/null +++ b/sysdeps/unix/sysv/linux/hppa/umount.c @@ -0,0 +1,9 @@ +/* since we don't have an oldumount system call, do what the kernel + does down here */ + +long __umount(char *name) +{ + return __umount2(name, 0); +} + +weak_alias(__umount, umount); -- 2.47.3