repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add opendir alias
[minix.git]
/
lib
/
libpuffs
/
mntopts.h
blob
1db0d2bc6a3e1fca1806586abec404b7096f5427
1
#ifndef _MNTOPTS_H_
2
#define _MNTOPTS_H_
3
4
struct
mntopt
{
5
const char
*
m_option
;
/* option name */
6
int
m_inverse
;
/* if a negative option, eg "dev" */
7
int
m_flag
;
/* bit to set, eg. MNT_RDONLY */
8
int
m_altloc
;
/* 1 => set bit in altflags */
9
};
10
11
12
13
#endif