Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1085)

Side by Side Diff: bfd/sysdep.h

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « bfd/syms.c ('k') | bfd/targets.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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) */
OLDNEW
« no previous file with comments | « bfd/syms.c ('k') | bfd/targets.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698