1
0
mirror of https://github.com/fluencelabs/musl synced 2025-06-22 03:02:07 +00:00
Files
musl/src/linux/mount.c

8 lines
245 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <sys/mount.h>
#include "syscall.h"
int mount(const char *special, const char *dir, const char *fstype, unsigned long flags, const void *data)
{
return syscall5(__NR_mount, (long)special, (long)dir, (long)fstype, flags, (long)data);
}