diff options
Diffstat (limited to 'mdoc_strings.c')
-rw-r--r-- | mdoc_strings.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mdoc_strings.c b/mdoc_strings.c index 13549a94..9c7d8b83 100644 --- a/mdoc_strings.c +++ b/mdoc_strings.c @@ -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__ |