1 /* bucomm.c -- Bin Utils COMmon code.
2 Copyright (C) 1991 Free Software Foundation, Inc.
4 This file is part of GNU Binutils.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
20 /* We might put this in a library someday so it could be dynamically
21 loaded, but for now it's not necessary. */
33 char *target = NULL; /* default as late as possible */
35 /* Yes, this is what atexit is for, but that isn't guaranteed yet.
36 And yes, I know this isn't as good, but it does what is needed just fine. */
37 void (*exit_handler) ();
48 CONST char *errmsg = bfd_errmsg (bfd_error);
51 fprintf (stderr, "%s: %s: %s\n", program_name, string, errmsg);
53 fprintf (stderr, "%s: %s\n", program_name, errmsg);
60 bfd_nonfatal (string);
62 if (NULL != exit_handler)
69 fatal (const char *format, ...)
73 fprintf (stderr, "%s: ", program_name);
74 va_start (args, format);
75 vfprintf (stderr, format, args);
78 if (NULL != exit_handler)
90 fprintf (stderr, "%s: ", program_name);
92 Format = va_arg (args, char *);
93 vfprintf (stderr, Format, args);
96 if (NULL != exit_handler)
102 /* Display the archive header for an element as if it were an ls -l listing:
104 Mode User\tGroup\tSize\tDate Name */
107 print_arelt_descr (file, abfd, verbose)
116 if (bfd_stat_arch_elt (abfd, &buf) == 0)
120 time_t when = buf.st_mtime;
121 CONST char *ctime_result = (CONST char *) ctime (&when);
123 /* POSIX format: skip weekday and seconds from ctime output. */
124 sprintf (timebuf, "%.12s %.4s", ctime_result + 4, ctime_result + 20);
126 mode_string (buf.st_mode, modebuf);
128 /* POSIX 1003.2/D11 says to skip first character (entry type). */
129 fprintf (file, "%s %d/%d %6ld %s ", modebuf + 1,
130 buf.st_uid, buf.st_gid, buf.st_size, timebuf);
134 fprintf (file, "%s\n", abfd->filename);