mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-14 07:10:05 +00:00
10 lines
179 B
C
10 lines
179 B
C
|
/* 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);
|