16 lines
577 B
C
16 lines
577 B
C
/* $FreeBSD$ */
|
|
|
|
/* default section entries that are used if configuration file is disabled*/
|
|
#define SECTION_COUNT 9
|
|
struct section_entry section_matrix[] = {
|
|
{ "1", "1", "General Commands (Tools and Utilities)" },
|
|
{ "2", "2", "System Calls and Error Numbers" },
|
|
{ "3", "3", "C Libraries" },
|
|
{ "4", "4", "Devices and Device Drivers" },
|
|
{ "5", "5", "File Formats" },
|
|
{ "6", "6", "Games" },
|
|
{ "7", "7", "Miscellaneous Information Pages" },
|
|
{ "8", "8", "System Maintenance and Operation Commands" },
|
|
{ "9", "9", "Kernel Interfaces" }
|
|
};
|
|
|