1 /* sysdep.h -- handle host dependencies for binutils
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
27 #include <sys/types.h>
33 #ifdef USE_BINARY_FOPEN
34 #include "fopen-bin.h"
36 #include "fopen-same.h"
54 extern char *strchr ();
55 extern char *strrchr ();
66 #ifdef HAVE_SYS_FILE_H
72 extern char *stpcpy (char *, const char *);
76 extern char *strstr ();
86 extern char *getenv ();
89 #if !HAVE_DECL_ENVIRON
90 extern char **environ
;
93 #if !HAVE_DECL_FPRINTF
94 extern int fprintf (FILE *, const char *, ...);
97 #if !HAVE_DECL_SNPRINTF
98 extern int snprintf(char *, size_t, const char *, ...);
101 #if !HAVE_DECL_VSNPRINTF
102 extern int vsnprintf(char *, size_t, const char *, va_list);
123 #if defined(__GNUC__) && !defined(C_ALLOCA)
125 # define alloca __builtin_alloca
127 # if defined(HAVE_ALLOCA_H) && !defined(C_ALLOCA)
130 # ifndef alloca /* predefined by HP cc +Olibcalls */
131 # if !defined (__STDC__) && !defined (__hpux)
135 # endif /* __STDC__, __hpux */
137 # endif /* HAVE_ALLOCA_H */
142 /* The Solaris version of locale.h always includes libintl.h. If we have
143 been configured with --disable-nls then ENABLE_NLS will not be defined
144 and the dummy definitions of bindtextdomain (et al) below will conflict
145 with the defintions in libintl.h. So we define these values to prevent
146 the bogus inclusion of libintl.h. */
148 # define _LIBGETTEXT_H
154 # include <libintl.h>
155 # define _(String) gettext (String)
157 # define N_(String) gettext_noop (String)
159 # define N_(String) (String)
162 # define gettext(Msgid) (Msgid)
163 # define dgettext(Domainname, Msgid) (Msgid)
164 # define dcgettext(Domainname, Msgid, Category) (Msgid)
165 # define textdomain(Domainname) while (0) /* nothing */
166 # define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
167 # define _(String) (String)
168 # define N_(String) (String)
171 /* Used by ar.c and objcopy.c. */
174 #endif /* _BIN_SYSDEP_H */