about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/umount.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/umount.c')
-rw-r--r--sysdeps/unix/sysv/linux/umount.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/umount.c b/sysdeps/unix/sysv/linux/umount.c
index ab6a20f596..2a75760dfa 100644
--- a/sysdeps/unix/sysv/linux/umount.c
+++ b/sysdeps/unix/sysv/linux/umount.c
@@ -16,12 +16,10 @@
    License along with the GNU C Library.  If not, see
    <https://www.gnu.org/licenses/>.  */
 
-/* Since the generic Linux syscall ABI doesn't have an oldumount system call,
-   do what the kernel does down here.  */
+#include <sys/mount.h>
+#include <sysdep.h>
 
-extern long int __umount2 (const char *name, int flags);
-
-long int
+int
 __umount (const char *name)
 {
   return __umount2 (name, 0);