Home | History | Annotate | Line # | Download | only in lint2
externs2.h revision 1.2
      1  1.2  cgd /*	$NetBSD: externs2.h,v 1.2 1995/07/03 21:24:46 cgd Exp $	*/
      2  1.2  cgd 
      3  1.1  cgd /*
      4  1.1  cgd  * Copyright (c) 1994, 1995 Jochen Pohl
      5  1.1  cgd  * All Rights Reserved.
      6  1.1  cgd  *
      7  1.1  cgd  * Redistribution and use in source and binary forms, with or without
      8  1.1  cgd  * modification, are permitted provided that the following conditions
      9  1.1  cgd  * are met:
     10  1.1  cgd  * 1. Redistributions of source code must retain the above copyright
     11  1.1  cgd  *    notice, this list of conditions and the following disclaimer.
     12  1.1  cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  cgd  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  cgd  *    documentation and/or other materials provided with the distribution.
     15  1.1  cgd  * 3. All advertising materials mentioning features or use of this software
     16  1.1  cgd  *    must display the following acknowledgement:
     17  1.1  cgd  *      This product includes software developed by Jochen Pohl for
     18  1.1  cgd  *	The NetBSD Project.
     19  1.1  cgd  * 4. The name of the author may not be used to endorse or promote products
     20  1.1  cgd  *    derived from this software without specific prior written permission.
     21  1.1  cgd  *
     22  1.1  cgd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  1.1  cgd  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  1.1  cgd  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  1.1  cgd  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  1.1  cgd  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  1.1  cgd  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  1.1  cgd  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  1.1  cgd  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  1.1  cgd  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  1.1  cgd  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  1.1  cgd  */
     33  1.1  cgd 
     34  1.1  cgd /*
     35  1.1  cgd  * main.c
     36  1.1  cgd  */
     37  1.1  cgd extern	int	xflag;
     38  1.1  cgd extern	int	uflag;
     39  1.1  cgd extern	int	Cflag;
     40  1.1  cgd extern	const	char *libname;
     41  1.1  cgd extern	int	pflag;
     42  1.1  cgd extern	int	sflag;
     43  1.1  cgd extern	int	tflag;
     44  1.1  cgd extern	int	Hflag;
     45  1.1  cgd extern	int	hflag;
     46  1.1  cgd extern	int	Fflag;
     47  1.1  cgd 
     48  1.1  cgd 
     49  1.1  cgd /*
     50  1.1  cgd  * hash.c
     51  1.1  cgd  */
     52  1.1  cgd extern	void	inithash __P((void));
     53  1.1  cgd extern	hte_t	*hsearch __P((const char *, int));
     54  1.1  cgd extern	void	forall __P((void (*)(hte_t *)));
     55  1.1  cgd 
     56  1.1  cgd /*
     57  1.1  cgd  * read.c
     58  1.1  cgd  */
     59  1.1  cgd extern	const	char **fnames;
     60  1.1  cgd extern	type_t	**tlst;
     61  1.1  cgd 
     62  1.1  cgd extern	void	readfile __P((const char *));
     63  1.1  cgd extern	void	mkstatic __P((hte_t *));
     64  1.1  cgd 
     65  1.1  cgd /*
     66  1.1  cgd  * mem2.c
     67  1.1  cgd  */
     68  1.1  cgd extern	void	initmem __P((void));
     69  1.1  cgd extern	void	*xalloc __P((size_t));
     70  1.1  cgd 
     71  1.1  cgd /*
     72  1.1  cgd  * chk.c
     73  1.1  cgd  */
     74  1.1  cgd extern	void	inittyp __P((void));
     75  1.1  cgd extern	void	mainused __P((void));
     76  1.1  cgd extern	void	chkname __P((hte_t *));
     77  1.1  cgd 
     78  1.1  cgd /*
     79  1.1  cgd  * msg.c
     80  1.1  cgd  */
     81  1.1  cgd extern	void	msg __P((int, ...));
     82  1.1  cgd extern	const	char *mkpos __P((pos_t *));
     83  1.1  cgd 
     84  1.1  cgd /*
     85  1.1  cgd  * emit2.c
     86  1.1  cgd  */
     87  1.1  cgd extern	void	outlib __P((const char *));
     88