mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
Put back FSF headers to ensure the provenance of this file is
understood. This file has been tested and works with FILO 0.5. Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@123 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
df8120a8a1
commit
2393fcedfa
1 changed files with 27 additions and 21 deletions
|
@ -1,29 +1,35 @@
|
||||||
/*
|
/* This file defines standard ELF types, structures, and macros.
|
||||||
* Copright (C) 2001 Eric Biederman
|
Copyright (C) 1995-2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
*
|
This file is part of the GNU C Library.
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
* the Free Software Foundation; version 2 of the License.
|
modify it under the terms of the GNU Lesser General Public
|
||||||
*
|
License as published by the Free Software Foundation; either
|
||||||
* This program is distributed in the hope that it will be useful,
|
version 2.1 of the License, or (at your option) any later version.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
The GNU C Library is distributed in the hope that it will be useful,
|
||||||
* GNU General Public License for more details.
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
*
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
* You should have received a copy of the GNU General Public License
|
Lesser General Public License for more details.
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with the GNU C Library; if not, write to the Free
|
||||||
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||||
|
02111-1307 USA.
|
||||||
*
|
*
|
||||||
|
* This file includes modifications made in 2001 by Eric Biederman for LinuxBIOS
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef ELF_H
|
#ifndef _ELF_H
|
||||||
#define ELF_H
|
#define _ELF_H 1
|
||||||
|
|
||||||
/* Standard ELF types. */
|
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <arch/elf.h>
|
#include <arch/elf.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
__BEGIN_DECLS
|
||||||
|
|
||||||
|
/* Standard ELF types. */
|
||||||
|
|
||||||
/* Type for a 16-bit quantity. */
|
/* Type for a 16-bit quantity. */
|
||||||
typedef uint16_t Elf32_Half;
|
typedef uint16_t Elf32_Half;
|
||||||
|
|
Loading…
Add table
Reference in a new issue