mnttab.h revision 168404
195158Sjmallett#ifndef	_OPENSOLARIS_MNTTAB_H_
2#define	_OPENSOLARIS_MNTTAB_H_
3
4#include <stdio.h>
5#include <paths.h>
6
7#define	MNTTAB		_PATH_DEVNULL
8#define	MNT_LINE_MAX	1024
9
10struct mnttab {
11	char	*mnt_special;
12	char	*mnt_mountp;
13	char	*mnt_fstype;
14	char	*mnt_mntopts;
15};
16
17int getmntany(FILE *fd, struct mnttab *mgetp, struct mnttab *mrefp);
18
19#endif	/* !_OPENSOLARIS_MNTTAB_H_ */
20