4 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
6 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
9 #include <sys/syscall.h>
11 #if defined __UCLIBC_LINUX_SPECIFIC__ && defined __NR_umount2
12 #include <sys/mount.h>
13 _syscall2(int, umount2
, const char *, special_file
, int, flags
)
14 libc_hidden_def(umount2
)
17 #if defined __UCLIBC_LINUX_SPECIFIC__ && defined __NR_oldumount && !defined __NR_umount2
18 _syscall2(int, umount
, const char *, special_file
, int, flags
)
19 strong_alias(umount
,umount2
)