mirror of
https://github.com/fluencelabs/musl
synced 2025-06-19 18:01:43 +00:00
initial check-in, version 0.5.0
This commit is contained in:
8
src/linux/mount.c
Normal file
8
src/linux/mount.c
Normal file
@ -0,0 +1,8 @@
|
||||
#include <sys/mount.h>
|
||||
#define SYSCALL_STANDALONE
|
||||
#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);
|
||||
}
|
Reference in New Issue
Block a user