summaryrefslogtreecommitdiff
path: root/include/sys/mount.h
blob: 66207be370ccbb1f4ef7715b58605103533d7604 (plain)
1
2
3
4
5
6
7
8
9
#ifndef __SYS_MOUNT_H
#define __SYS_MOUNT_H

int mount(const char *, const char *, const char *, unsigned long,
	  const void *);
int umount(const char *);
int umount2(const char *, int);

#endif