blob: a0765e2eeef011a0b1508984f0b4e10d47be6d1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _SYS_MOUNT_H
#define _SYS_MOUNT_H
#include <features.h>
__BEGIN_DECLS
extern int mount __P ((__const char* __specialfile,
__const char* __dir,__const char* __filesystemype,
unsigned long __rwflag,__const void *__data));
extern int umount __P ((__const char* __specialfile));
__END_DECLS
#endif
|