diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 1999-08-16 11:34:57 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 1999-08-16 11:34:57 +0000 |
| commit | 80e770cf633bb4bb205ab3523c1c1c046df4c130 (patch) | |
| tree | c00c544e56871a68ce27a127aadef1a00e5cf5a7 /gnu/usr.bin/man/manpath/manpath.h | |
| parent | 0f8c8396c54ff940ad46d951de62d4fb64222769 (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/man/manpath/manpath.h')
| -rw-r--r-- | gnu/usr.bin/man/manpath/manpath.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/usr.bin/man/manpath/manpath.h b/gnu/usr.bin/man/manpath/manpath.h index 3039bd91ef91..ab6eb0ef6a98 100644 --- a/gnu/usr.bin/man/manpath/manpath.h +++ b/gnu/usr.bin/man/manpath/manpath.h @@ -18,9 +18,15 @@ typedef struct { char mandir[MAXPATHLEN]; char bin[MAXPATHLEN]; - int mandatory; + int type; } DIRLIST; +/* manpath types */ +#define MANPATH_NONE 0 +#define MANPATH_MANDATORY 1 /* manpath is mandatory */ +#define MANPATH_OPTIONAL 2 /* manpath is optional */ +#define MANPATH_MAP 3 /* maps path to manpath */ + DIRLIST list[MAXDIRS]; char *tmplist[MAXDIRS]; |
