nlist.h revision 102287
1234285Sdim/*-
2234285Sdim * Copyright (c) 1991, 1993
3234285Sdim *	The Regents of the University of California.  All rights reserved.
4234285Sdim * (c) UNIX System Laboratories, Inc.
5234285Sdim * All or some portions of this file are derived from material licensed
6234285Sdim * to the University of California by American Telephone and Telegraph
7234285Sdim * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8234285Sdim * the permission of UNIX System Laboratories, Inc.
9234285Sdim *
10234285Sdim * Redistribution and use in source and binary forms, with or without
11234285Sdim * modification, are permitted provided that the following conditions
12234285Sdim * are met:
13234285Sdim * 1. Redistributions of source code must retain the above copyright
14234285Sdim *    notice, this list of conditions and the following disclaimer.
15234285Sdim * 2. Redistributions in binary form must reproduce the above copyright
16234285Sdim *    notice, this list of conditions and the following disclaimer in the
17234285Sdim *    documentation and/or other materials provided with the distribution.
18249423Sdim * 3. All advertising materials mentioning features or use of this software
19234285Sdim *    must display the following acknowledgement:
20249423Sdim *	This product includes software developed by the University of
21249423Sdim *	California, Berkeley and its contributors.
22234285Sdim * 4. Neither the name of the University nor the names of its contributors
23234285Sdim *    may be used to endorse or promote products derived from this software
24234285Sdim *    without specific prior written permission.
25234285Sdim *
26263508Sdim * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27234285Sdim * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28239462Sdim * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29249423Sdim * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30249423Sdim * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31249423Sdim * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32249423Sdim * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33249423Sdim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34249423Sdim * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35249423Sdim * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36249423Sdim * SUCH DAMAGE.
37249423Sdim *
38249423Sdim *	@(#)nlist.h	8.2 (Berkeley) 1/21/94
39249423Sdim *
40234285Sdim * $FreeBSD: head/include/nlist.h 102287 2002-08-22 20:37:57Z peter $
41234285Sdim */
42234285Sdim
43263508Sdim#ifndef _NLIST_H_
44234285Sdim#define	_NLIST_H_
45234285Sdim
46234285Sdim#include <sys/nlist_aout.h>
47263508Sdim#include <sys/cdefs.h>
48249423Sdim
49234285Sdim__BEGIN_DECLS
50263508Sdimint nlist(const char *, struct nlist *);
51249423Sdim__END_DECLS
52234285Sdim
53234285Sdim#endif /* !_NLIST_H_ */
54234285Sdim