about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/hppa/umount.c
blob: 39cb251030a1de4cb79481dbc35d134727b3f107 (plain) (blame)
1
2
3
4
5
6
7
8
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);