* hppa-dis.c (print_insn_hppa): Don't print '%' before register names.
[binutils.git] / binutils / bucomm.h
blob09dce10f8cfb640ec229b55b3d49e59d5fabae24
1 /* bucomm.h -- binutils common include file.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
21 #ifndef _BUCOMM_H
22 #define _BUCOMM_H
24 #include "ansidecl.h"
25 #include <stdio.h>
26 #include <sys/types.h>
28 #include "config.h"
29 #include "bin-bugs.h"
31 #include <stdarg.h>
33 #ifdef USE_BINARY_FOPEN
34 #include "fopen-bin.h"
35 #else
36 #include "fopen-same.h"
37 #endif
39 #include <errno.h>
40 #ifndef errno
41 extern int errno;
42 #endif
44 #ifdef HAVE_UNISTD_H
45 #include <unistd.h>
46 #endif
48 #ifdef HAVE_STRING_H
49 #include <string.h>
50 #else
51 #ifdef HAVE_STRINGS_H
52 #include <strings.h>
53 #else
54 extern char *strchr ();
55 extern char *strrchr ();
56 #endif
57 #endif
59 #ifdef HAVE_STDLIB_H
60 #include <stdlib.h>
61 #endif
63 #ifdef HAVE_FCNTL_H
64 #include <fcntl.h>
65 #else
66 #ifdef HAVE_SYS_FILE_H
67 #include <sys/file.h>
68 #endif
69 #endif
71 #if !HAVE_DECL_STRSTR
72 extern char *strstr ();
73 #endif
75 #ifdef HAVE_SBRK
76 #if !HAVE_DECL_SBRK
77 extern char *sbrk ();
78 #endif
79 #endif
81 #if !HAVE_DECL_GETENV
82 extern char *getenv ();
83 #endif
85 #if !HAVE_DECL_ENVIRON
86 extern char **environ;
87 #endif
89 #ifndef O_RDONLY
90 #define O_RDONLY 0
91 #endif
93 #ifndef O_RDWR
94 #define O_RDWR 2
95 #endif
97 #ifndef SEEK_SET
98 #define SEEK_SET 0
99 #endif
100 #ifndef SEEK_CUR
101 #define SEEK_CUR 1
102 #endif
103 #ifndef SEEK_END
104 #define SEEK_END 2
105 #endif
107 #if defined(__GNUC__) && !defined(C_ALLOCA)
108 # undef alloca
109 # define alloca __builtin_alloca
110 #else
111 # if defined(HAVE_ALLOCA_H) && !defined(C_ALLOCA)
112 # include <alloca.h>
113 # else
114 # ifndef alloca /* predefined by HP cc +Olibcalls */
115 # if !defined (__STDC__) && !defined (__hpux)
116 char *alloca ();
117 # else
118 void *alloca ();
119 # endif /* __STDC__, __hpux */
120 # endif /* alloca */
121 # endif /* HAVE_ALLOCA_H */
122 #endif
124 #ifdef HAVE_LOCALE_H
125 # include <locale.h>
126 #endif
128 #ifdef ENABLE_NLS
129 # include <libintl.h>
130 # define _(String) gettext (String)
131 # ifdef gettext_noop
132 # define N_(String) gettext_noop (String)
133 # else
134 # define N_(String) (String)
135 # endif
136 #else
137 # define gettext(Msgid) (Msgid)
138 # define dgettext(Domainname, Msgid) (Msgid)
139 # define dcgettext(Domainname, Msgid, Category) (Msgid)
140 # define textdomain(Domainname) while (0) /* nothing */
141 # define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
142 # define _(String) (String)
143 # define N_(String) (String)
144 #endif
146 /* Used by ar.c and objcopy.c. */
147 #define BUFSIZE 8192
149 /* bucomm.c */
151 /* Return the filename in a static buffer. */
152 const char *bfd_get_archive_filename (bfd *);
154 void bfd_nonfatal (const char *);
156 void bfd_fatal (const char *) ATTRIBUTE_NORETURN;
158 void report (const char *, va_list) ATTRIBUTE_PRINTF(1,0);
160 void fatal (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
162 void non_fatal (const char *, ...) ATTRIBUTE_PRINTF_1;
164 void set_default_bfd_target (void);
166 void list_matching_formats (char **);
168 void list_supported_targets (const char *, FILE *);
170 void list_supported_architectures (const char *, FILE *);
172 int display_info (void);
174 void print_arelt_descr (FILE *, bfd *, bfd_boolean);
176 char *make_tempname (char *);
178 bfd_vma parse_vma (const char *, const char *);
180 off_t get_file_size (const char *);
182 extern char *program_name;
184 /* filemode.c */
185 void mode_string (unsigned long, char *);
187 /* version.c */
188 extern void print_version (const char *);
190 /* rename.c */
191 extern void set_times (const char *, const struct stat *);
193 extern int smart_rename (const char *, const char *, int);
195 /* libiberty. */
196 void *xmalloc (size_t);
198 void *xrealloc (void *, size_t);
200 #endif /* _BUCOMM_H */