Skip to content

Commit

Permalink
Remove unused macro.
Browse files Browse the repository at this point in the history
  • Loading branch information
madler committed Oct 15, 2016
1 parent 94339ce commit 3369676
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pigz.c
Expand Up @@ -655,7 +655,6 @@ local void zlib_free(voidpf opaque, voidpf address)
free_track(opaque, address);
}

#define MALLOC(s) malloc_track(&mem_track, s)
#define REALLOC(p, s) realloc_track(&mem_track, p, s)
#define FREE(p) free_track(&mem_track, p)
#define OPAQUE (&mem_track)
Expand All @@ -664,7 +663,6 @@ local void zlib_free(voidpf opaque, voidpf address)

#else /* !PIGZ_DEBUG */

#define MALLOC malloc
#define REALLOC realloc
#define FREE free
#define OPAQUE Z_NULL
Expand Down

0 comments on commit 3369676

Please sign in to comment.