| OLD | NEW |
| 1 %{ | 1 %{ |
| 2 | 2 |
| 3 /* Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, | 3 /* Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, |
| 4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 | 4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 |
| 5 Free Software Foundation, Inc. | 5 Free Software Foundation, Inc. |
| 6 Written by Steve Chamberlain of Cygnus Support. | 6 Written by Steve Chamberlain of Cygnus Support. |
| 7 | 7 |
| 8 This file is part of the GNU Binutils. | 8 This file is part of the GNU Binutils. |
| 9 | 9 |
| 10 This program is free software; you can redistribute it and/or modify | 10 This program is free software; you can redistribute it and/or modify |
| 11 it under the terms of the GNU General Public License as published by | 11 it under the terms of the GNU General Public License as published by |
| 12 the Free Software Foundation; either version 3 of the License, or | 12 the Free Software Foundation; either version 3 of the License, or |
| 13 (at your option) any later version. | 13 (at your option) any later version. |
| 14 | 14 |
| 15 This program is distributed in the hope that it will be useful, | 15 This program is distributed in the hope that it will be useful, |
| 16 but WITHOUT ANY WARRANTY; without even the implied warranty of | 16 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 GNU General Public License for more details. | 18 GNU General Public License for more details. |
| 19 | 19 |
| 20 You should have received a copy of the GNU General Public License | 20 You should have received a copy of the GNU General Public License |
| 21 along with this program; if not, write to the Free Software | 21 along with this program; if not, write to the Free Software |
| 22 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | 22 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, |
| 23 MA 02110-1301, USA. */ | 23 MA 02110-1301, USA. */ |
| 24 | 24 |
| 25 #include "sysdep.h" | |
| 26 #include "bfd.h" | 25 #include "bfd.h" |
| 27 #include "safe-ctype.h" | 26 #include "safe-ctype.h" |
| 28 #include "bfdlink.h" | 27 #include "bfdlink.h" |
| 29 #include "ld.h" | 28 #include "ld.h" |
| 30 #include "ldmisc.h" | 29 #include "ldmisc.h" |
| 31 #include "ldexp.h" | 30 #include "ldexp.h" |
| 32 #include "ldlang.h" | 31 #include "ldlang.h" |
| 33 #include <ldgram.h> | 32 #include <ldgram.h> |
| 34 #include "ldfile.h" | 33 #include "ldfile.h" |
| 35 #include "ldlex.h" | 34 #include "ldlex.h" |
| (...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 } | 685 } |
| 687 | 686 |
| 688 if (! ISPRINT (*what)) | 687 if (! ISPRINT (*what)) |
| 689 { | 688 { |
| 690 sprintf (buf, "\\%03o", (unsigned int) *what); | 689 sprintf (buf, "\\%03o", (unsigned int) *what); |
| 691 what = buf; | 690 what = buf; |
| 692 } | 691 } |
| 693 | 692 |
| 694 einfo ("%P:%S: ignoring invalid character `%s'%s\n", what, where); | 693 einfo ("%P:%S: ignoring invalid character `%s'%s\n", what, where); |
| 695 } | 694 } |
| OLD | NEW |