summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/sys/mount.h
blob: 2e9e8677432a384d81b99b9a0c40bacb2c1ec7fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _SYS_MOUNT_H
#define _SYS_MOUNT_H

#include <sys/cdefs.h>
#include <sys/types.h>
#include <linux/fs.h>

int  mount(const char* specialfile, const char* dir, const char* filesystemtype,
	   unsigned long rwflag, const void * data) __THROW;

int umount(const char *specialfile) __THROW;

int umount(const char *dir) __THROW;

int umount2(const char *specialfile, int mflag) __THROW;

int umount2(const char *dir, int mflag) __THROW;

#endif