fix umount2 compilation for alpha on Linux 5.x
[uclibc-ng.git] / libc / sysdeps / linux / common / umount2.c
blob507171f241acb9b35e3482402c78bb1cd19463a4
1 /*
2 * umount2() for uClibc
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.
7 */
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)
15 #endif
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)
20 #endif