aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdoc_strings.c')
-rw-r--r--mdoc_strings.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/mdoc_strings.c b/mdoc_strings.c
index c299ccfd..d83551d6 100644
--- a/mdoc_strings.c
+++ b/mdoc_strings.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_strings.c,v 1.9 2009/07/04 09:01:55 kristaps Exp $ */
+/* $Id: mdoc_strings.c,v 1.10 2009/08/20 13:32:09 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -30,7 +30,7 @@ struct mdoc_secname {
enum mdoc_sec sec; /* Corresponding section. */
};
-#define SECNAME_MAX (18)
+#define SECNAME_MAX (20)
static const struct mdoc_secname secnames[SECNAME_MAX] = {
{ "NAME", SEC_NAME },
@@ -38,6 +38,7 @@ static const struct mdoc_secname secnames[SECNAME_MAX] = {
{ "SYNOPSIS", SEC_SYNOPSIS },
{ "DESCRIPTION", SEC_DESCRIPTION },
{ "IMPLEMENTATION NOTES", SEC_IMPLEMENTATION },
+ { "EXIT STATUS", SEC_EXIT_STATUS },
{ "RETURN VALUES", SEC_RETURN_VALUES },
{ "ENVIRONMENT", SEC_ENVIRONMENT },
{ "FILES", SEC_FILES },
@@ -51,6 +52,7 @@ static const struct mdoc_secname secnames[SECNAME_MAX] = {
{ "AUTHORS", SEC_AUTHORS },
{ "CAVEATS", SEC_CAVEATS },
{ "BUGS", SEC_BUGS },
+ { "SECURITY CONSIDERATIONS", SEC_SECURITY }
};
#ifdef __linux__