a.out.h revision 256281
178344Sobrien/*-
278344Sobrien * Copyright (c) 1991, 1993
398184Sgordon *	The Regents of the University of California.  All rights reserved.
478344Sobrien *
578344Sobrien * Redistribution and use in source and binary forms, with or without
678344Sobrien * modification, are permitted provided that the following conditions
778344Sobrien * are met:
898184Sgordon * 1. Redistributions of source code must retain the above copyright
978344Sobrien *    notice, this list of conditions and the following disclaimer.
1078344Sobrien * 2. Redistributions in binary form must reproduce the above copyright
1178344Sobrien *    notice, this list of conditions and the following disclaimer in the
1278344Sobrien *    documentation and/or other materials provided with the distribution.
1378344Sobrien * 3. Neither the name of the University nor the names of its contributors
1478344Sobrien *    may be used to endorse or promote products derived from this software
1578344Sobrien *    without specific prior written permission.
1678344Sobrien *
17121068Sdougb * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1898184Sgordon * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1978344Sobrien * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2078344Sobrien * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2178344Sobrien * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2278344Sobrien * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2378344Sobrien * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2478344Sobrien * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25179945Smtm * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2678344Sobrien * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2798184Sgordon * SUCH DAMAGE.
2878344Sobrien *
2998184Sgordon *	@(#)a.out.h	8.1 (Berkeley) 6/2/93
30121068Sdougb * $FreeBSD: stable/10/include/a.out.h 203964 2010-02-16 19:39:50Z imp $
31179945Smtm */
32121068Sdougb
33121068Sdougb#ifndef	_AOUT_H_
34121068Sdougb#define	_AOUT_H_
35121068Sdougb
36121068Sdougb#include <sys/types.h>
37121068Sdougb#include <machine/exec.h>
38121068Sdougb#include <sys/endian.h>
3998184Sgordon#include <sys/imgact_aout.h>
4098184Sgordon#include <machine/reloc.h>
4198184Sgordon
4298184Sgordon#define _AOUT_INCLUDE_
4378344Sobrien#include <nlist.h>
44121068Sdougb
45179945Smtm#endif /* !_AOUT_H_ */
4678344Sobrien