* bucomm.c: Replace CONST with const.
* nm.c: Likewise. * objdump.c: Likewise.
This commit is contained in:
parent
5a38dc70b4
commit
b1f88ebebf
4 changed files with 21 additions and 15 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2002-06-08 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* bucomm.c: Replace CONST with const.
|
||||||
|
* nm.c: Likewise.
|
||||||
|
* objdump.c: Likewise.
|
||||||
|
|
||||||
2002-06-07 H.J. Lu <hjl@gnu.org>
|
2002-06-07 H.J. Lu <hjl@gnu.org>
|
||||||
|
|
||||||
* readelf.c (DW_CFA_GNU_args_size): Don't define.
|
* readelf.c (DW_CFA_GNU_args_size): Don't define.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* bucomm.c -- Bin Utils COMmon code.
|
/* bucomm.c -- Bin Utils COMmon code.
|
||||||
Copyright 1991, 1992, 1993, 1994, 1995, 1997, 1998, 2000, 2001
|
Copyright 1991, 1992, 1993, 1994, 1995, 1997, 1998, 2000, 2001, 2002
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GNU Binutils.
|
This file is part of GNU Binutils.
|
||||||
|
@ -42,9 +42,9 @@ char *program_name;
|
||||||
|
|
||||||
void
|
void
|
||||||
bfd_nonfatal (string)
|
bfd_nonfatal (string)
|
||||||
CONST char *string;
|
const char *string;
|
||||||
{
|
{
|
||||||
CONST char *errmsg = bfd_errmsg (bfd_get_error ());
|
const char *errmsg = bfd_errmsg (bfd_get_error ());
|
||||||
|
|
||||||
if (string)
|
if (string)
|
||||||
fprintf (stderr, "%s: %s: %s\n", program_name, string, errmsg);
|
fprintf (stderr, "%s: %s: %s\n", program_name, string, errmsg);
|
||||||
|
@ -54,7 +54,7 @@ bfd_nonfatal (string)
|
||||||
|
|
||||||
void
|
void
|
||||||
bfd_fatal (string)
|
bfd_fatal (string)
|
||||||
CONST char *string;
|
const char *string;
|
||||||
{
|
{
|
||||||
bfd_nonfatal (string);
|
bfd_nonfatal (string);
|
||||||
xexit (1);
|
xexit (1);
|
||||||
|
@ -178,7 +178,7 @@ print_arelt_descr (file, abfd, verbose)
|
||||||
char modebuf[11];
|
char modebuf[11];
|
||||||
char timebuf[40];
|
char timebuf[40];
|
||||||
time_t when = buf.st_mtime;
|
time_t when = buf.st_mtime;
|
||||||
CONST char *ctime_result = (CONST char *) ctime (&when);
|
const char *ctime_result = (const char *) ctime (&when);
|
||||||
|
|
||||||
/* POSIX format: skip weekday and seconds from ctime output. */
|
/* POSIX format: skip weekday and seconds from ctime output. */
|
||||||
sprintf (timebuf, "%.12s %.4s", ctime_result + 4, ctime_result + 20);
|
sprintf (timebuf, "%.12s %.4s", ctime_result + 4, ctime_result + 20);
|
||||||
|
|
|
@ -133,13 +133,13 @@ print_archive_filename_posix PARAMS ((char *filename));
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
print_archive_member_bsd PARAMS ((char *archive, CONST char *filename));
|
print_archive_member_bsd PARAMS ((char *archive, const char *filename));
|
||||||
|
|
||||||
static void
|
static void
|
||||||
print_archive_member_sysv PARAMS ((char *archive, CONST char *filename));
|
print_archive_member_sysv PARAMS ((char *archive, const char *filename));
|
||||||
|
|
||||||
static void
|
static void
|
||||||
print_archive_member_posix PARAMS ((char *archive, CONST char *filename));
|
print_archive_member_posix PARAMS ((char *archive, const char *filename));
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -177,7 +177,7 @@ struct output_fns
|
||||||
void (*print_archive_filename) PARAMS ((char *filename));
|
void (*print_archive_filename) PARAMS ((char *filename));
|
||||||
|
|
||||||
/* Print the name of an archive member file. */
|
/* Print the name of an archive member file. */
|
||||||
void (*print_archive_member) PARAMS ((char *archive, CONST char *filename));
|
void (*print_archive_member) PARAMS ((char *archive, const char *filename));
|
||||||
|
|
||||||
/* Print the name of the file (and archive, if there is one)
|
/* Print the name of the file (and archive, if there is one)
|
||||||
containing a symbol. */
|
containing a symbol. */
|
||||||
|
@ -1384,7 +1384,7 @@ print_archive_filename_posix (filename)
|
||||||
static void
|
static void
|
||||||
print_archive_member_bsd (archive, filename)
|
print_archive_member_bsd (archive, filename)
|
||||||
char *archive ATTRIBUTE_UNUSED;
|
char *archive ATTRIBUTE_UNUSED;
|
||||||
CONST char *filename;
|
const char *filename;
|
||||||
{
|
{
|
||||||
if (!filename_per_symbol)
|
if (!filename_per_symbol)
|
||||||
printf ("\n%s:\n", filename);
|
printf ("\n%s:\n", filename);
|
||||||
|
@ -1393,7 +1393,7 @@ print_archive_member_bsd (archive, filename)
|
||||||
static void
|
static void
|
||||||
print_archive_member_sysv (archive, filename)
|
print_archive_member_sysv (archive, filename)
|
||||||
char *archive;
|
char *archive;
|
||||||
CONST char *filename;
|
const char *filename;
|
||||||
{
|
{
|
||||||
if (undefined_only)
|
if (undefined_only)
|
||||||
printf (_("\n\nUndefined symbols from %s[%s]:\n\n"), archive, filename);
|
printf (_("\n\nUndefined symbols from %s[%s]:\n\n"), archive, filename);
|
||||||
|
@ -1406,7 +1406,7 @@ Name Value Class Type Size Line Section\n\n
|
||||||
static void
|
static void
|
||||||
print_archive_member_posix (archive, filename)
|
print_archive_member_posix (archive, filename)
|
||||||
char *archive;
|
char *archive;
|
||||||
CONST char *filename;
|
const char *filename;
|
||||||
{
|
{
|
||||||
if (!filename_per_symbol)
|
if (!filename_per_symbol)
|
||||||
printf ("%s[%s]:\n", archive, filename);
|
printf ("%s[%s]:\n", archive, filename);
|
||||||
|
|
|
@ -957,8 +957,8 @@ show_line (abfd, section, addr_offset)
|
||||||
asection *section;
|
asection *section;
|
||||||
bfd_vma addr_offset;
|
bfd_vma addr_offset;
|
||||||
{
|
{
|
||||||
CONST char *filename;
|
const char *filename;
|
||||||
CONST char *functionname;
|
const char *functionname;
|
||||||
unsigned int line;
|
unsigned int line;
|
||||||
|
|
||||||
if (! with_line_numbers && ! with_source_code)
|
if (! with_line_numbers && ! with_source_code)
|
||||||
|
@ -2543,7 +2543,7 @@ dump_reloc_set (abfd, sec, relpp, relcount)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (section_name == (CONST char *) NULL)
|
if (section_name == (const char *) NULL)
|
||||||
section_name = "*unknown*";
|
section_name = "*unknown*";
|
||||||
bfd_printf_vma (abfd, q->address);
|
bfd_printf_vma (abfd, q->address);
|
||||||
printf (" %-16s [%s]",
|
printf (" %-16s [%s]",
|
||||||
|
|
Loading…
Reference in a new issue