Deleted Added
full compact
mnttab.h (168404) mnttab.h (178414)
1/* $FreeBSD: head/cddl/compat/opensolaris/include/mnttab.h 178414 2008-04-22 07:43:00Z jb $ */
2
1#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_ */
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
12struct mnttab {
13 char *mnt_special;
14 char *mnt_mountp;
15 char *mnt_fstype;
16 char *mnt_mntopts;
17};
18
19int getmntany(FILE *fd, struct mnttab *mgetp, struct mnttab *mrefp);
20
21#endif /* !_OPENSOLARIS_MNTTAB_H_ */