From 5b0d930e9e2605add559a70591573ffaa2fd8404 Mon Sep 17 00:00:00 2001 From: bpc2003 Date: Thu, 24 Apr 2025 10:18:03 -0400 Subject: Implemented Isolation int setkeys and getkeys --- src/lib/utils.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/lib/utils.c') 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) -- cgit v1.2.3