blob: c42dc90e7538182f6fa875a09c8c87135fd76fa5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <sys/mount.h> // for mount
#include <syscall.h> // for __syscall_5, syscall
int mount(const char *source, const char *target, const char *filesystemtype,
unsigned long mountflags, const void *_Nullable data)
{
return syscall(mount, source, target, filesystemtype, mountflags, data);
}
|