aboutsummaryrefslogtreecommitdiffstats
path: root/src/zfree.c
blob: 95eb08438dcae32c7b858557a816a4881d8068c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
/* See LICENSE file for copyright and license details. */
#include "internals.h"


void
zfree(z_t a)
{
	free(a->chars);
}