Linux/HPPA specific umount definition.
authorUlrich Drepper <drepper@redhat.com>
Sun, 15 Oct 2000 03:28:55 +0000 (03:28 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 15 Oct 2000 03:28:55 +0000 (03:28 +0000)
sysdeps/unix/sysv/linux/hppa/umount.c [new file with mode: 0644]

diff --git a/sysdeps/unix/sysv/linux/hppa/umount.c b/sysdeps/unix/sysv/linux/hppa/umount.c
new file mode 100644 (file)
index 0000000..39cb251
--- /dev/null
@@ -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);