summaryrefslogblamecommitdiff
path: root/src/linux/mount.c
blob: 83a8db44168b2ca99ea8d837b2a59e0e08dab7c4 (plain) (tree)
1
2
3
4
5
6
7
                      



                                                                                                          
                                                                     
 
#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 syscall(SYS_mount, special, dir, fstype, flags, data);
}