Sign in
android
/
platform
/
external
/
musl
/
6ab8136b4477fd75381c06fa0e7fa93c89c712a1
/
.
/
src
/
linux
/
umount.c
blob: fb9b5e73915d051dc197ede30b86cd79d661cb40 [
file
] [
log
] [
blame
]
#include
<sys/mount.h>
#include
"syscall.h"
int
umount
(
const
char
*
special
)
{
return
syscall
(
SYS_umount2
,
special
,
0
);
}