]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - cddl/compat/opensolaris/include/mnttab.h
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / cddl / compat / opensolaris / include / mnttab.h
1 /* $FreeBSD$ */
2
3 #ifndef _OPENSOLARIS_MNTTAB_H_
4 #define _OPENSOLARIS_MNTTAB_H_
5
6 #include <stdio.h>
7 #include <paths.h>
8
9 #define MNTTAB          _PATH_DEVNULL
10 #define MNT_LINE_MAX    1024
11
12 struct mnttab {
13         char    *mnt_special;
14         char    *mnt_mountp;
15         char    *mnt_fstype;
16         char    *mnt_mntopts;
17 };
18
19 int getmntany(FILE *fd, struct mnttab *mgetp, struct mnttab *mrefp);
20
21 #endif  /* !_OPENSOLARIS_MNTTAB_H_ */