a.out.h revision 130927
1251018Sgonzo/*-
2251018Sgonzo * Copyright (c) 1991, 1993
3251018Sgonzo *	The Regents of the University of California.  All rights reserved.
4251018Sgonzo *
5251018Sgonzo * Redistribution and use in source and binary forms, with or without
6251018Sgonzo * modification, are permitted provided that the following conditions
7251018Sgonzo * are met:
8251018Sgonzo * 1. Redistributions of source code must retain the above copyright
9251018Sgonzo *    notice, this list of conditions and the following disclaimer.
10251018Sgonzo * 2. Redistributions in binary form must reproduce the above copyright
11251018Sgonzo *    notice, this list of conditions and the following disclaimer in the
12251018Sgonzo *    documentation and/or other materials provided with the distribution.
13251018Sgonzo * 3. All advertising materials mentioning features or use of this software
14251018Sgonzo *    must display the following acknowledgement:
15251018Sgonzo *	This product includes software developed by the University of
16251018Sgonzo *	California, Berkeley and its contributors.
17251018Sgonzo * 4. Neither the name of the University nor the names of its contributors
18251018Sgonzo *    may be used to endorse or promote products derived from this software
19251018Sgonzo *    without specific prior written permission.
20251018Sgonzo *
21251018Sgonzo * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22251018Sgonzo * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23251018Sgonzo * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24251018Sgonzo * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25251018Sgonzo * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26251018Sgonzo * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27251018Sgonzo * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28251018Sgonzo * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29251018Sgonzo * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30277716Sgonzo * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31251018Sgonzo * SUCH DAMAGE.
32251018Sgonzo *
33251018Sgonzo *	@(#)a.out.h	8.1 (Berkeley) 6/2/93
34251018Sgonzo * $FreeBSD: head/include/a.out.h 130927 2004-06-22 17:05:39Z obrien $
35251018Sgonzo */
36251018Sgonzo
37251018Sgonzo#ifndef	_AOUT_H_
38251018Sgonzo#define	_AOUT_H_
39251018Sgonzo
40251018Sgonzo#include <sys/types.h>
41251018Sgonzo#include <machine/exec.h>
42251018Sgonzo#include <sys/endian.h>
43251018Sgonzo#include <sys/imgact_aout.h>
44251018Sgonzo#include <machine/reloc.h>
45252282Sgonzo
46252282Sgonzo#define _AOUT_INCLUDE_
47252282Sgonzo#include <nlist.h>
48251018Sgonzo
49251018Sgonzo#endif /* !_AOUT_H_ */
50251018Sgonzo