summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2004-03-08 11:31:58 +0000
committerColin Watson <cjwatson@debian.org>2004-03-08 11:31:58 +0000
commit06535d699fdaca0b4744e60c9f2a1b8b675bedcf (patch)
treefe677b42868ae0eba216a1537482765d409f66e7 /include
parent5c1b250a86c49632cf0f2313c5ac106309fdf7fc (diff)
* include/manconfig.h.in: Protect against multiple inclusion.
Diffstat (limited to 'include')
-rw-r--r--include/manconfig.h.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/manconfig.h.in b/include/manconfig.h.in
index 184f0dad..d80510d0 100644
--- a/include/manconfig.h.in
+++ b/include/manconfig.h.in
@@ -30,13 +30,16 @@
/* UNIX nroff with GNU tbl. */
/*--------------------------------------------------------------------------*/
+#ifndef MANCONFIG_H
+#define MANCONFIG_H
+
/* STD_SECTIONS must contain all of your man hierarchy subdirectories. The
order is important. Manual pages will be displayed in this order. Ie
if "1" comes before "2", then a kill(1) will be displayed in preference to
kill(2), or if `man --all kill', it will be displayed first. Section names
may be multi-character, but this is non-standard and probably best
avoided. */
-
+
#define STD_SECTIONS { \
"1", "n", "l", "8", "3", "2", "5", "4", "9", "6", "7", NULL \
}
@@ -395,3 +398,5 @@ typedef struct lexgrog {
char *whatis;
char *filters;
} lexgrog;
+
+#endif /* MANCONFIG_H */