| OLD | NEW |
| 1 /* sysdep.h -- handle host dependencies for the BFD library | 1 /* sysdep.h -- handle host dependencies for the BFD library |
| 2 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2005, 2007, 2009 | 2 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2005, 2007, 2009 |
| 3 Free Software Foundation, Inc. | 3 Free Software Foundation, Inc. |
| 4 Written by Cygnus Support. | 4 Written by Cygnus Support. |
| 5 | 5 |
| 6 This file is part of BFD, the Binary File Descriptor library. | 6 This file is part of BFD, the Binary File Descriptor library. |
| 7 | 7 |
| 8 This program is free software; you can redistribute it and/or modify | 8 This program is free software; you can redistribute it and/or modify |
| 9 it under the terms of the GNU General Public License as published by | 9 it under the terms of the GNU General Public License as published by |
| 10 the Free Software Foundation; either version 3 of the License, or | 10 the Free Software Foundation; either version 3 of the License, or |
| 11 (at your option) any later version. | 11 (at your option) any later version. |
| 12 | 12 |
| 13 This program is distributed in the hope that it will be useful, | 13 This program is distributed in the hope that it will be useful, |
| 14 but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 GNU General Public License for more details. | 16 GNU General Public License for more details. |
| 17 | 17 |
| 18 You should have received a copy of the GNU General Public License | 18 You should have received a copy of the GNU General Public License |
| 19 along with this program; if not, write to the Free Software | 19 along with this program; if not, write to the Free Software |
| 20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | 20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, |
| 21 MA 02110-1301, USA. */ | 21 MA 02110-1301, USA. */ |
| 22 | 22 |
| 23 #ifndef BFD_SYSDEP_H | 23 #ifndef BFD_SYSDEP_H |
| 24 #define BFD_SYSDEP_H | 24 #define BFD_SYSDEP_H |
| 25 | 25 |
| 26 #ifdef PACKAGE |
| 27 #error sysdep.h must be included in lieu of config.h |
| 28 #endif |
| 29 |
| 26 #include "config.h" | 30 #include "config.h" |
| 27 | 31 |
| 28 #include "ansidecl.h" | 32 #include "ansidecl.h" |
| 29 | 33 |
| 30 #ifdef HAVE_STDDEF_H | 34 #ifdef HAVE_STDDEF_H |
| 31 #include <stddef.h> | 35 #include <stddef.h> |
| 32 #endif | 36 #endif |
| 33 | 37 |
| 34 #include <stdio.h> | 38 #include <stdio.h> |
| 35 #include <sys/types.h> | 39 #include <sys/types.h> |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 # define gettext(Msgid) (Msgid) | 197 # define gettext(Msgid) (Msgid) |
| 194 # define dgettext(Domainname, Msgid) (Msgid) | 198 # define dgettext(Domainname, Msgid) (Msgid) |
| 195 # define dcgettext(Domainname, Msgid, Category) (Msgid) | 199 # define dcgettext(Domainname, Msgid, Category) (Msgid) |
| 196 # define textdomain(Domainname) while (0) /* nothing */ | 200 # define textdomain(Domainname) while (0) /* nothing */ |
| 197 # define bindtextdomain(Domainname, Dirname) while (0) /* nothing */ | 201 # define bindtextdomain(Domainname, Dirname) while (0) /* nothing */ |
| 198 # define _(String) (String) | 202 # define _(String) (String) |
| 199 # define N_(String) (String) | 203 # define N_(String) (String) |
| 200 #endif | 204 #endif |
| 201 | 205 |
| 202 #endif /* ! defined (BFD_SYSDEP_H) */ | 206 #endif /* ! defined (BFD_SYSDEP_H) */ |
| OLD | NEW |