aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/options/bsd/include/fstab.h
blob: 2a445f048159e2e09883b163a36f7a9d7cdabae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _FSTAB_H
#define _FSTAB_H

#define _PATH_FSTAB "/etc/fstab"
#define FSTAB "/etc/fstab"

#define FSTAB_RW "rw"
#define FSTAB_RQ "rq"
#define FSTAB_RO "ro"
#define FSTAB_SW "sw"
#define FSTAB_XX "xx"

struct fstab {
	char *fs_spec;
	char *fs_file;
	char *fs_vfstype;
	char *fs_mntops;
	const char *fs_type;
	int fs_freq;
	int fs_passno;
};

#endif /* _FSTAB_H */