summaryrefslogtreecommitdiff
path: root/src/lib/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/utils.c')
-rw-r--r--src/lib/utils.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/utils.c b/src/lib/utils.c
index 9961c11..909c123 100644
--- a/src/lib/utils.c
+++ b/src/lib/utils.c
@@ -23,13 +23,6 @@ int hash(char *key)
return h % TABLEN;
}
-int *clone(int n)
-{
- int *c = calloc(1, sizeof(int));
- *c = n;
- return c;
-}
-
tablist_t *copytab(tablist_t *dst, tablist_t *src)
{
if (dst == NULL)