aboutsummaryrefslogtreecommitdiffstats
path: root/src/zset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zset.c')
-rw-r--r--src/zset.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/zset.c b/src/zset.c
deleted file mode 100644
index b0188fc..0000000
--- a/src/zset.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#include "internals.h"
-
-
-void
-zset(z_t a, z_t b)
-{
- if (unlikely(b->sign == 0)) {
- a->sign = 0;
- } else {
- a->sign = b->sign;
- a->used = b->used;
- ENSURE_SIZE(a, b->used);
- zmemcpy(a->chars, b->chars, b->used);
- }
-}