aboutsummaryrefslogtreecommitdiffstats
path: root/src/zunsetup.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-03-02 09:59:52 +0100
committerMattias Andrée <maandree@kth.se>2016-03-02 10:03:25 +0100
commita626bacf8e45af60727882250f9d3abeb15ff3cd (patch)
treeac2d8e6b806e8ffacdaa33b44279547ac0e32acf /src/zunsetup.c
parentSince zstr_length is a generalisation of zbits, add reference to each other in the man pages (diff)
downloadlibzahl-a626bacf8e45af60727882250f9d3abeb15ff3cd.tar.gz
libzahl-a626bacf8e45af60727882250f9d3abeb15ff3cd.tar.bz2
libzahl-a626bacf8e45af60727882250f9d3abeb15ff3cd.tar.xz
Add zsets and zstr
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--src/zunsetup.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/zunsetup.c b/src/zunsetup.c
index 0f766e1..e2d91f6 100644
--- a/src/zunsetup.c
+++ b/src/zunsetup.c
@@ -7,8 +7,13 @@ zunsetup(jmp_buf env)
{
if (libzahl_set_up) {
libzahl_set_up = 0;
-#define X(x) zfree(zahl_tmp_##x);
+#define X(x)\
+ zfree(x);
LIST_TEMPS;
#undef X
+#define X(x, f, v)\
+ zfree(x);
+ LIST_CONSTS;
+#undef X
}
}