blob: 0cb95fcff78faa69483f1ec4997960d854bb45c4 (
plain)
1
2
3
4
5
6
7
8
|
#include <syscall.h>
#include <sys/mount.h>
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);
}
|