1 /* $NetBSD: main2.c,v 1.6 2002/01/31 19:36:55 tv Exp $ */
4 * Copyright (c) 1994, 1995 Jochen Pohl
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Jochen Pohl for
19 * 4. The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #if HAVE_NBTOOL_CONFIG_H
35 #include "nbtool_config.h"
38 #include <sys/cdefs.h>
39 #if defined(__RCSID) && !defined(lint)
40 __RCSID("$NetBSD: main2.c,v 1.6 2002/01/31 19:36:55 tv Exp $");
50 /* warnings for symbols which are declared but not defined or used */
54 * warnings for symbols which are used and not defined or defined
59 /* Create a lint library in the current directory with name libname. */
66 * warnings for (tentative) definitions of the same name in more than
67 * one translation unit
74 * If a complaint stems from a included file, print the name of the included
75 * file instead of the name spezified at the command line followed by '?'
81 /* Print full path names, not only the last component */
85 * List of libraries (from -l flag). These libraries are read after all
86 * other input files has been read and, for Cflag, after the new lint library
91 static void usage(void);
93 int main(int, char *[]);
96 main(int argc
, char *argv
[])
102 libs
= xcalloc(1, sizeof (char *));
105 while ((c
= getopt(argc
, argv
, "hpstxuC:HFl:")) != -1) {
123 len
= strlen(optarg
);
124 lname
= xmalloc(len
+ 10);
125 (void)sprintf(lname
, "llib-l%s.ln", optarg
);
140 for (i
= 0; libs
[i
] != NULL
; i
++)
142 libs
= xrealloc(libs
, (i
+ 2) * sizeof (char *));
143 libs
[i
] = xstrdup(optarg
);
159 /* initialize hash table */
164 for (i
= 0; i
< argc
; i
++)
167 /* write the lint library */
173 /* read additional libraries */
174 for (i
= 0; libs
[i
] != NULL
; i
++)
181 /* perform all tests */
191 (void)fprintf(stderr
,
192 "usage: lint2 -hpstxuHF -Clib -l lib ... src1 ...\n");