elf.h revision 77932
1132734Skan/*-
272566Sobrien * Copyright (c) 2001 David E. O'Brien.
3169699Skan * All rights reserved.
4169699Skan *
518334Speter * Redistribution and use in source and binary forms, with or without
690282Sobrien * modification, are permitted provided that the following conditions
718334Speter * are met:
890282Sobrien * 1. Redistributions of source code must retain the above copyright
990282Sobrien *    notice, this list of conditions and the following disclaimer.
1090282Sobrien * 2. Redistributions in binary form must reproduce the above copyright
1190282Sobrien *    notice, this list of conditions and the following disclaimer in the
1218334Speter *    documentation and/or other materials provided with the distribution.
1390282Sobrien *
1490282Sobrien * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1590282Sobrien * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1690282Sobrien * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1718334Speter * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1818334Speter * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1990282Sobrien * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20169699Skan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21169699Skan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2218334Speter * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2352558Sobrien * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2452558Sobrien * SUCH DAMAGE.
2518334Speter *
2618334Speter * $FreeBSD: head/include/elf.h 77932 2001-06-09 05:22:31Z obrien $
2718334Speter */
2818334Speter
2918334Speter#ifndef	_ELF_H_
3018334Speter#define	_ELF_H_
3150615Sobrien
3250615Sobrien#include <sys/types.h>
3350615Sobrien#include <machine/elf.h>
34132734Skan#include <sys/elf32.h>
35132734Skan#include <sys/elf64.h>
3618334Speter
3718334Speter#endif /* !_ELF_H_ */
3850615Sobrien