replace XZALLOC with XCNEW
[deliverable/binutils-gdb.git] / gdb / defs.h
index f3f034f314022218fd3da431974ce5bdd07cf4f3..4c70cf67ece42f39945b0bd04c448f9504e43e84 100644 (file)
@@ -556,7 +556,6 @@ extern int longest_to_int (LONGEST);
 /* Utility macros to allocate typed memory.  Avoids errors like:
    struct foo *foo = xmalloc (sizeof struct bar); and memset (foo,
    sizeof (struct foo), 0).  */
-#define XZALLOC(TYPE) ((TYPE*) xzalloc (sizeof (TYPE)))
 #define XMALLOC(TYPE) ((TYPE*) xmalloc (sizeof (TYPE)))
 #define XCALLOC(NMEMB, TYPE) ((TYPE*) xcalloc ((NMEMB), sizeof (TYPE)))
 
This page took 0.027172 seconds and 4 git commands to generate.