makeman revision 91586
191586Smarkm#!/bin/sh
291586Smarkm#	$NetBSD$
391586Smarkm#
491586Smarkm# Copyright (c) 2000 The NetBSD Foundation, Inc.
591586Smarkm# All rights reserved.
691586Smarkm#
791586Smarkm# This code is derived from software contributed to The NetBSD Foundation
891586Smarkm# by Christos Zoulas.
991586Smarkm#
1091586Smarkm# Redistribution and use in source and binary forms, with or without
1191586Smarkm# modification, are permitted provided that the following conditions
1291586Smarkm# are met:
1391586Smarkm# 1. Redistributions of source code must retain the above copyright
1491586Smarkm#    notice, this list of conditions and the following disclaimer.
1591586Smarkm# 2. Redistributions in binary form must reproduce the above copyright
1691586Smarkm#    notice, this list of conditions and the following disclaimer in the
1791586Smarkm#    documentation and/or other materials provided with the distribution.
1891586Smarkm# 3. All advertising materials mentioning features or use of this software
1991586Smarkm#    must display the following acknowledgement:
2091586Smarkm#        This product includes software developed by the NetBSD
2191586Smarkm#        Foundation, Inc. and its contributors.
2291586Smarkm# 4. Neither the name of The NetBSD Foundation nor the names of its
2391586Smarkm#    contributors may be used to endorse or promote products derived
2491586Smarkm#    from this software without specific prior written permission.
2591586Smarkm#
2691586Smarkm# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2791586Smarkm# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2891586Smarkm# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2991586Smarkm# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
3091586Smarkm# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
3191586Smarkm# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
3291586Smarkm# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
3391586Smarkm# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3491586Smarkm# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3591586Smarkm# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3691586Smarkm# POSSIBILITY OF SUCH DAMAGE.
3791586Smarkm
3891586Smarkm
3991586Smarkmcat << \__EOF
4091586Smarkm.\"	$NetBSD$
4191586Smarkm.\"
4291586Smarkm.\" Copyright (c) 2000 The NetBSD Foundation, Inc.
4391586Smarkm.\" All rights reserved.
4491586Smarkm.\"
4591586Smarkm.\" This code is derived from software contributed to The NetBSD Foundation
4691586Smarkm.\" by Christos Zoulas.
4791586Smarkm.\"
4891586Smarkm.\" Redistribution and use in source and binary forms, with or without
4991586Smarkm.\" modification, are permitted provided that the following conditions
5091586Smarkm.\" are met:
5191586Smarkm.\" 1. Redistributions of source code must retain the above copyright
5291586Smarkm.\"    notice, this list of conditions and the following disclaimer.
5391586Smarkm.\" 2. Redistributions in binary form must reproduce the above copyright
5491586Smarkm.\"    notice, this list of conditions and the following disclaimer in the
5591586Smarkm.\"    documentation and/or other materials provided with the distribution.
5691586Smarkm.\" 3. All advertising materials mentioning features or use of this software
5791586Smarkm.\"    must display the following acknowledgement:
5891586Smarkm.\"        This product includes software developed by the NetBSD
5991586Smarkm.\"        Foundation, Inc. and its contributors.
6091586Smarkm.\" 4. Neither the name of The NetBSD Foundation nor the names of its
6191586Smarkm.\"    contributors may be used to endorse or promote products derived
6291586Smarkm.\"    from this software without specific prior written permission.
6391586Smarkm.\"
6491586Smarkm.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
6591586Smarkm.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
6691586Smarkm.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
6791586Smarkm.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
6891586Smarkm.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
6991586Smarkm.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
7091586Smarkm.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
7191586Smarkm.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
7291586Smarkm.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
7391586Smarkm.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
7491586Smarkm.\" POSSIBILITY OF SUCH DAMAGE.
7591586Smarkm.Dd July 5, 2000
7691586Smarkm.Dt LINT 7
7791586Smarkm.Os
7891586Smarkm.Sh NAME
7991586Smarkm.Nm lint
8091586Smarkm.Nd Lint error message list
8191586Smarkm.Sh DESCRIPTION
8291586SmarkmThe following is a list of message id's and messages produced by
8391586Smarkm.Xr lint 1 .
8491586SmarkmIt is intended to be used with
8591586Smarkm.Fl X
8691586Smarkmflag of
8791586Smarkm.Xr lint 1 .
8891586Smarkm.Pp
8991586Smarkm.Bd -ragged -offset indent -compact
9091586Smarkm.Bl -column "Id# Message"
9191586Smarkm__EOF
9291586Smarkm"$@" | sed -e 's/^/.It /' -e 's/\\/\\e/g' -e "s/'/\\'/"
9391586Smarkmecho ".El"
9491586Smarkmecho ".Ed"
95