1163000Sjb/*-
2163000Sjb * Copyright (c) 2001 David E. O'Brien.
3163000Sjb * All rights reserved.
4163000Sjb *
5163000Sjb * Redistribution and use in source and binary forms, with or without
6163000Sjb * modification, are permitted provided that the following conditions
7163000Sjb * are met:
8163000Sjb * 1. Redistributions of source code must retain the above copyright
9163000Sjb *    notice, this list of conditions and the following disclaimer.
10163000Sjb * 2. Redistributions in binary form must reproduce the above copyright
11163000Sjb *    notice, this list of conditions and the following disclaimer in the
12163000Sjb *    documentation and/or other materials provided with the distribution.
13163000Sjb *
14163000Sjb * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15163000Sjb * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16163000Sjb * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17163000Sjb * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18163000Sjb * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19163000Sjb * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20163000Sjb * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21163000Sjb * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22163000Sjb * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23163000Sjb * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24163000Sjb * SUCH DAMAGE.
25163000Sjb *
26163000Sjb * $FreeBSD$
27163000Sjb */
28163000Sjb
29163000Sjb/*
30163000Sjb * This is a Solaris compatibility header
31163000Sjb */
32163000Sjb
33163000Sjb#ifndef	_SYS_ELF_H_
34163000Sjb#define	_SYS_ELF_H_
35163000Sjb
36163000Sjb#include <sys/types.h>
37163000Sjb#include <machine/elf.h>
38163000Sjb#include <sys/elf32.h>
39163000Sjb#include <sys/elf64.h>
40163000Sjb
41163000Sjb#endif /* !_SYS_ELF_H_ */
42