61299d482c5e8a11a624b7bd600b117e12cb47d4
[musl] / src / linux / mount.c
1 #include <sys/mount.h>
2 #define SYSCALL_STANDALONE
3 #include "syscall.h"
4
5 int mount(const char *special, const char *dir, const char *fstype, unsigned long flags, const void *data)
6 {
7         return syscall5(__NR_mount, (long)special, (long)dir, (long)fstype, flags, (long)data);
8 }