OSDN Git Service

sim: punt zfree()
[pf3gnuchains/sourceware.git] / sim / common / sim-utils.h
index 6f1ca3b..5c18843 100644 (file)
@@ -28,8 +28,6 @@ void *zalloc (unsigned long size);
 #define ZALLOC(TYPE) (TYPE*)zalloc(sizeof (TYPE))
 #define NZALLOC(TYPE,N) (TYPE*)zalloc(sizeof (TYPE) * (N))
 
-void zfree(void*);
-
 /* Turn VALUE into a string with commas.  */
 char *sim_add_commas (char *, int, unsigned long);