sim: punt zfree()
[deliverable/binutils-gdb.git] / sim / common / sim-utils.c
index 1dbc4fbdd599bd19e7bdcd69cab19404aa519fce..c5c8e9876b31a52faad7581e5953e47a8c99a979 100644 (file)
@@ -62,12 +62,6 @@ zalloc (unsigned long size)
   return xcalloc (1, size);
 }
 
-void
-zfree (void *data)
-{
-  free (data);
-}
-
 /* Allocate a sim_state struct.  */
 
 SIM_DESC
@@ -118,7 +112,7 @@ sim_state_free (SIM_DESC sd)
   SIM_STATE_FREE (sd);
 #endif
 
-  zfree (sd);
+  free (sd);
 }
 
 /* Return a pointer to the cpu data for CPU_NAME, or NULL if not found.  */
This page took 0.023658 seconds and 4 git commands to generate.