mirror of
https://github.com/fluencelabs/musl
synced 2025-06-05 02:51:40 +00:00
8 lines
139 B
C
8 lines
139 B
C
#include <sys/mount.h>
|
|
#include "syscall.h"
|
|
|
|
int umount2(const char *special, int flags)
|
|
{
|
|
return syscall(SYS_umount2, special, flags);
|
|
}
|