mirror of
https://github.com/fluencelabs/musl
synced 2025-06-22 03:02:07 +00:00
8 lines
245 B
C
8 lines
245 B
C
![]() |
#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);
|
||
|
}
|