summaryrefslogtreecommitdiff
path: root/src/lib/utils.c
diff options
context:
space:
mode:
authorbpc2003 <wpesfriendnva@gmail.com>2025-04-24 10:18:03 -0400
committerbpc2003 <wpesfriendnva@gmail.com>2025-04-24 10:18:03 -0400
commit5b0d930e9e2605add559a70591573ffaa2fd8404 (patch)
tree6d227666ae79a2100410e881aafc07c04d329655 /src/lib/utils.c
parent49a24bf62efc8d46e813d769dac2c36c413c21e8 (diff)
Implemented Isolation int setkeys and getkeys
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)