| OLD | NEW |
| 1 /* Main header file for the bfd library -- portable access to object files. | 1 /* Main header file for the bfd library -- portable access to object files. |
| 2 | 2 |
| 3 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, | 3 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, |
| 4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 | 4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, |
| 5 Free Software Foundation, Inc. | 5 2012 Free Software Foundation, Inc. |
| 6 | 6 |
| 7 Contributed by Cygnus Support. | 7 Contributed by Cygnus Support. |
| 8 | 8 |
| 9 This file is part of BFD, the Binary File Descriptor library. | 9 This file is part of BFD, the Binary File Descriptor library. |
| 10 | 10 |
| 11 This program is free software; you can redistribute it and/or modify | 11 This program is free software; you can redistribute it and/or modify |
| 12 it under the terms of the GNU General Public License as published by | 12 it under the terms of the GNU General Public License as published by |
| 13 the Free Software Foundation; either version 3 of the License, or | 13 the Free Software Foundation; either version 3 of the License, or |
| 14 (at your option) any later version. | 14 (at your option) any later version. |
| 15 | 15 |
| 16 This program is distributed in the hope that it will be useful, | 16 This program is distributed in the hope that it will be useful, |
| 17 but WITHOUT ANY WARRANTY; without even the implied warranty of | 17 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 GNU General Public License for more details. | 19 GNU General Public License for more details. |
| 20 | 20 |
| 21 You should have received a copy of the GNU General Public License | 21 You should have received a copy of the GNU General Public License |
| 22 along with this program; if not, write to the Free Software | 22 along with this program; if not, write to the Free Software |
| 23 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, US
A. */ | 23 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, US
A. */ |
| 24 | 24 |
| 25 #ifndef __BFD_H_SEEN__ | 25 #ifndef __BFD_H_SEEN__ |
| 26 #define __BFD_H_SEEN__ | 26 #define __BFD_H_SEEN__ |
| 27 | 27 |
| 28 /* PR 14072: Ensure that config.h is included first. */ |
| 29 #if !defined PACKAGE && !defined PACKAGE_VERSION |
| 30 #error config.h must be included before this header |
| 31 #endif |
| 32 |
| 28 #ifdef __cplusplus | 33 #ifdef __cplusplus |
| 29 extern "C" { | 34 extern "C" { |
| 30 #endif | 35 #endif |
| 31 | 36 |
| 32 #include "ansidecl.h" | 37 #include "ansidecl.h" |
| 33 #include "symcat.h" | 38 #include "symcat.h" |
| 34 #include <sys/stat.h> | 39 #include <sys/stat.h> |
| 35 | 40 |
| 36 #if defined (__STDC__) || defined (ALMOST_STDC) || defined (HAVE_STRINGIZE) | 41 #if defined (__STDC__) || defined (ALMOST_STDC) || defined (HAVE_STRINGIZE) |
| 37 #ifndef SABER | 42 #ifndef SABER |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 unsigned int line_number; /* Linenumber from start of function. */ | 268 unsigned int line_number; /* Linenumber from start of function. */ |
| 264 union | 269 union |
| 265 { | 270 { |
| 266 struct bfd_symbol *sym; /* Function name. */ | 271 struct bfd_symbol *sym; /* Function name. */ |
| 267 bfd_vma offset; /* Offset into section. */ | 272 bfd_vma offset; /* Offset into section. */ |
| 268 } u; | 273 } u; |
| 269 } | 274 } |
| 270 alent; | 275 alent; |
| 271 | 276 |
| 272 | 277 |
error: old chunk mismatch |
None
| OLD | NEW |