15851a365SJohn Polstra /*- 25851a365SJohn Polstra * Copyright (c) 1997 John D. Polstra. 35851a365SJohn Polstra * All rights reserved. 45851a365SJohn Polstra * 55851a365SJohn Polstra * Redistribution and use in source and binary forms, with or without 65851a365SJohn Polstra * modification, are permitted provided that the following conditions 75851a365SJohn Polstra * are met: 85851a365SJohn Polstra * 1. Redistributions of source code must retain the above copyright 95851a365SJohn Polstra * notice, this list of conditions and the following disclaimer. 105851a365SJohn Polstra * 2. Redistributions in binary form must reproduce the above copyright 115851a365SJohn Polstra * notice, this list of conditions and the following disclaimer in the 125851a365SJohn Polstra * documentation and/or other materials provided with the distribution. 135851a365SJohn Polstra * 145851a365SJohn Polstra * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 155851a365SJohn Polstra * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 165851a365SJohn Polstra * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 175851a365SJohn Polstra * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 185851a365SJohn Polstra * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 195851a365SJohn Polstra * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 205851a365SJohn Polstra * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 215851a365SJohn Polstra * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 225851a365SJohn Polstra * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 235851a365SJohn Polstra * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 245851a365SJohn Polstra * SUCH DAMAGE. 255851a365SJohn Polstra * 265851a365SJohn Polstra * $Id$ 275851a365SJohn Polstra */ 285851a365SJohn Polstra 295851a365SJohn Polstra #ifndef _ELF_H_ 305851a365SJohn Polstra #define _ELF_H_ 315851a365SJohn Polstra 325851a365SJohn Polstra #include <sys/types.h> 335851a365SJohn Polstra #include <machine/elf.h> 345851a365SJohn Polstra 355851a365SJohn Polstra #endif /* !_ELF_H_ */ 36