| OLD | NEW |
| 1 /* BFD back-end for MS-DOS executables. | 1 /* BFD back-end for MS-DOS executables. |
| 2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2001, 2002, | 2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2001, 2002, |
| 3 2003, 2004, 2005, 2006, 2007, 2009, 2011 Free Software Foundation, Inc. | 3 2003, 2004, 2005, 2006, 2007, 2009, 2011, 2012 |
| 4 Free Software Foundation, Inc. |
| 4 Written by Bryan Ford of the University of Utah. | 5 Written by Bryan Ford of the University of Utah. |
| 5 | 6 |
| 6 Contributed by the Center for Software Science at the | 7 Contributed by the Center for Software Science at the |
| 7 University of Utah (pa-gdb-bugs@cs.utah.edu). | 8 University of Utah (pa-gdb-bugs@cs.utah.edu). |
| 8 | 9 |
| 9 This file is part of BFD, the Binary File Descriptor library. | 10 This file is part of BFD, the Binary File Descriptor library. |
| 10 | 11 |
| 11 This program is free software; you can redistribute it and/or modify | 12 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 | 13 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 | 14 the Free Software Foundation; either version 3 of the License, or |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 BFD_JUMP_TABLE_CORE (_bfd_nocore), | 222 BFD_JUMP_TABLE_CORE (_bfd_nocore), |
| 222 BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive), | 223 BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive), |
| 223 BFD_JUMP_TABLE_SYMBOLS (msdos), | 224 BFD_JUMP_TABLE_SYMBOLS (msdos), |
| 224 BFD_JUMP_TABLE_RELOCS (msdos), | 225 BFD_JUMP_TABLE_RELOCS (msdos), |
| 225 BFD_JUMP_TABLE_WRITE (msdos), | 226 BFD_JUMP_TABLE_WRITE (msdos), |
| 226 BFD_JUMP_TABLE_LINK (msdos), | 227 BFD_JUMP_TABLE_LINK (msdos), |
| 227 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), | 228 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), |
| 228 | 229 |
| 229 NULL, | 230 NULL, |
| 230 | 231 |
| 231 (PTR) 0 | 232 NULL |
| 232 }; | 233 }; |
| 233 | 234 |
| 234 | 235 |
| OLD | NEW |