diff options
| author | Mattias Andrée <maandree@kth.se> | 2016-03-02 09:59:52 +0100 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2016-03-02 10:03:25 +0100 |
| commit | a626bacf8e45af60727882250f9d3abeb15ff3cd (patch) | |
| tree | ac2d8e6b806e8ffacdaa33b44279547ac0e32acf /src/zunsetup.c | |
| parent | Since zstr_length is a generalisation of zbits, add reference to each other in the man pages (diff) | |
| download | libzahl-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 'src/zunsetup.c')
| -rw-r--r-- | src/zunsetup.c | 7 |
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 } } |
