summaryrefslogtreecommitdiff
path: root/include/sys/mount.h
blob: 1864e0efb5e45f40731b373452dc47ad0fd238ed (plain)
1
2
3
4
5
6
7
8
#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