diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1993-07-07 23:07:02 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1993-07-07 23:07:02 +0000 |
commit | f629c45f00659cfa94841e41e809eb31702009d0 (patch) | |
tree | 764da6a607f55e005379c8b6d1e51dbe0f5c53ea /gnu/usr.bin/man/manpath/manpath.h | |
parent | 76be1e42b9d8848a00a13afb0cd54d3f871e3a75 (diff) |
Notes
Diffstat (limited to 'gnu/usr.bin/man/manpath/manpath.h')
-rw-r--r-- | gnu/usr.bin/man/manpath/manpath.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/usr.bin/man/manpath/manpath.h b/gnu/usr.bin/man/manpath/manpath.h new file mode 100644 index 000000000000..a61761f6762a --- /dev/null +++ b/gnu/usr.bin/man/manpath/manpath.h @@ -0,0 +1,26 @@ +/* + * manpath.h + * + * Copyright (c) 1990, 1991, John W. Eaton. + * + * You may distribute under the terms of the GNU General Public + * License as specified in the file COPYING that comes with the man + * distribution. + * + * John W. Eaton + * jwe@che.utexas.edu + * Department of Chemical Engineering + * The University of Texas at Austin + * Austin, Texas 78712 + */ + +typedef struct +{ + char mandir[MAXPATHLEN]; + char bin[MAXPATHLEN]; + int mandatory; +} DIRLIST; + +DIRLIST list[MAXDIRS]; + +char *tmplist[MAXDIRS]; |