diff options
author | gordon <gordon@FreeBSD.org> | 2011-04-21 07:14:10 +0000 |
---|---|---|
committer | gordon <gordon@FreeBSD.org> | 2011-04-21 07:14:10 +0000 |
commit | 6ea4b2e0af6b400b92646e0e08d615a9af0faab2 (patch) | |
tree | 43a1ec2774b7346c9489da8715a583c4f5492432 /gnu/usr.bin/man/manpath/manpath.h | |
parent | 582666352393e5b7a5a00ec55b4c3f44dbedc556 (diff) | |
download | FreeBSD-src-6ea4b2e0af6b400b92646e0e08d615a9af0faab2.zip FreeBSD-src-6ea4b2e0af6b400b92646e0e08d615a9af0faab2.tar.gz |
Remove GNU man implemenation now that the BSD version has cooked for a while.
Diffstat (limited to 'gnu/usr.bin/man/manpath/manpath.h')
-rw-r--r-- | gnu/usr.bin/man/manpath/manpath.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/gnu/usr.bin/man/manpath/manpath.h b/gnu/usr.bin/man/manpath/manpath.h deleted file mode 100644 index ab6eb0e..0000000 --- a/gnu/usr.bin/man/manpath/manpath.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * 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 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]; |