mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-17 14:02:21 +08:00
* coffdump.c (xcalloc): Remove, in libiberty now.
* srconv.c (xcalloc): Likewise. * sysdump.c (xcalloc): Likewise.
This commit is contained in:
@ -32,15 +32,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||
|
||||
#define PROGRAM_VERSION "1.0"
|
||||
|
||||
char *xcalloc(a,b)
|
||||
int a;
|
||||
int b;
|
||||
{
|
||||
char *r = xmalloc(a*b);
|
||||
memset (r, 0, a * b);
|
||||
return r;
|
||||
}
|
||||
|
||||
static int atnl;
|
||||
static void dump_coff_scope ();
|
||||
|
||||
@ -485,7 +476,9 @@ main (ac, av)
|
||||
{ NULL, no_argument, 0, 0 }
|
||||
};
|
||||
|
||||
#ifdef HAVE_SETLOCALE
|
||||
setlocale (LC_MESSAGES, "");
|
||||
#endif
|
||||
bindtextdomain (PACKAGE, LOCALEDIR);
|
||||
textdomain (PACKAGE);
|
||||
|
||||
|
Reference in New Issue
Block a user