11.1Schristos/* $NetBSD: a.out.h,v 1.1 2018/12/31 13:35:16 christos Exp $ */ 21.1Schristos 31.1Schristos/*- 41.1Schristos * Copyright (c) 1991, 1993 51.1Schristos * The Regents of the University of California. All rights reserved. 61.1Schristos * 71.1Schristos * Redistribution and use in source and binary forms, with or without 81.1Schristos * modification, are permitted provided that the following conditions 91.1Schristos * are met: 101.1Schristos * 1. Redistributions of source code must retain the above copyright 111.1Schristos * notice, this list of conditions and the following disclaimer. 121.1Schristos * 2. Redistributions in binary form must reproduce the above copyright 131.1Schristos * notice, this list of conditions and the following disclaimer in the 141.1Schristos * documentation and/or other materials provided with the distribution. 151.1Schristos * 3. Neither the name of the University nor the names of its contributors 161.1Schristos * may be used to endorse or promote products derived from this software 171.1Schristos * without specific prior written permission. 181.1Schristos * 191.1Schristos * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 201.1Schristos * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 211.1Schristos * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 221.1Schristos * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 231.1Schristos * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 241.1Schristos * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 251.1Schristos * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 261.1Schristos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 271.1Schristos * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 281.1Schristos * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 291.1Schristos * SUCH DAMAGE. 301.1Schristos * 311.1Schristos * @(#)a.out.h 8.1 (Berkeley) 6/2/93 321.1Schristos */ 331.1Schristos 341.1Schristos/*- 351.1Schristos * Copyright (c) 1993 Theo de Raadt. All rights reserved. 361.1Schristos * 371.1Schristos * Redistribution and use in source and binary forms, with or without 381.1Schristos * modification, are permitted provided that the following conditions 391.1Schristos * are met: 401.1Schristos * 1. Redistributions of source code must retain the above copyright 411.1Schristos * notice, this list of conditions and the following disclaimer. 421.1Schristos * 2. Redistributions in binary form must reproduce the above copyright 431.1Schristos * notice, this list of conditions and the following disclaimer in the 441.1Schristos * documentation and/or other materials provided with the distribution. 451.1Schristos * 461.1Schristos * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 471.1Schristos * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 481.1Schristos * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 491.1Schristos * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 501.1Schristos * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 511.1Schristos * NOT LIMITED TO, PROUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 521.1Schristos * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 531.1Schristos * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 541.1Schristos * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 551.1Schristos * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 561.1Schristos * 571.1Schristos * @(#)a.out.h 8.1 (Berkeley) 6/2/93 581.1Schristos */ 591.1Schristos 601.1Schristos#ifndef _AOUT_H_ 611.1Schristos#define _AOUT_H_ 621.1Schristos 631.1Schristos#include <sys/exec_aout.h> 641.1Schristos 651.1Schristos#define _AOUT_INCLUDE_ 661.1Schristos#include <nlist.h> 671.1Schristos 681.1Schristos#endif /* !_AOUT_H_ */ 69