1 /* bucomm.h -- binutils common include file.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
3 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 2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
26 #include <sys/types.h>
31 #ifdef ANSI_PROTOTYPES
37 #ifdef USE_BINARY_FOPEN
38 #include "fopen-bin.h"
40 #include "fopen-same.h"
58 extern char *strchr ();
59 extern char *strrchr ();
70 #ifdef HAVE_SYS_FILE_H
75 #ifdef NEED_DECLARATION_STRSTR
76 extern char *strstr ();
80 #ifdef NEED_DECLARATION_SBRK
85 #ifdef NEED_DECLARATION_GETENV
86 extern char *getenv ();
89 #ifdef NEED_DECLARATION_ENVIRON
90 extern char **environ
;
111 #if defined(__GNUC__) && !defined(C_ALLOCA)
113 # define alloca __builtin_alloca
115 # if defined(HAVE_ALLOCA_H) && !defined(C_ALLOCA)
118 # ifndef alloca /* predefined by HP cc +Olibcalls */
119 # if !defined (__STDC__) && !defined (__hpux)
123 # endif /* __STDC__, __hpux */
125 # endif /* HAVE_ALLOCA_H */
133 # include <libintl.h>
134 # define _(String) gettext (String)
136 # define N_(String) gettext_noop (String)
138 # define N_(String) (String)
141 # define gettext(Msgid) (Msgid)
142 # define dgettext(Domainname, Msgid) (Msgid)
143 # define dcgettext(Domainname, Msgid, Category) (Msgid)
144 # define textdomain(Domainname) while (0) /* nothing */
145 # define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
146 # define _(String) (String)
147 # define N_(String) (String)
151 void bfd_nonfatal
PARAMS ((const char *));
153 void bfd_fatal
PARAMS ((const char *)) ATTRIBUTE_NORETURN
;
155 void report
PARAMS ((const char *, va_list));
157 void fatal
PARAMS ((const char *, ...)) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN
;
159 void non_fatal
PARAMS ((const char *, ...)) ATTRIBUTE_PRINTF_1
;
161 void set_default_bfd_target
PARAMS ((void));
163 void list_matching_formats
PARAMS ((char **p
));
165 void list_supported_targets
PARAMS ((const char *, FILE *));
167 void list_supported_architectures
PARAMS ((const char *, FILE *));
169 void print_arelt_descr
PARAMS ((FILE *file
, bfd
*abfd
, boolean verbose
));
171 char *make_tempname
PARAMS ((char *));
173 bfd_vma parse_vma
PARAMS ((const char *, const char *));
175 extern char *program_name
;
178 void mode_string
PARAMS ((unsigned long mode
, char *buf
));
181 extern void print_version
PARAMS ((const char *));
184 extern void set_times
PARAMS ((const char *, const struct stat
*));
186 extern int smart_rename
PARAMS ((const char *, const char *, int));
189 PTR xmalloc
PARAMS ((size_t));
191 PTR xrealloc
PARAMS ((PTR
, size_t));
193 #endif /* _BUCOMM_H */