blob: 67f2d9af5176e5321089e7076fd56641f47f2dd3 (
plain)
1
2
3
4
5
6
7
8
|
#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);
}
|