aboutsummaryrefslogtreecommitdiff
path: root/src/uthash_extra.h
diff options
context:
space:
mode:
authorallusive-dev <[email protected]>2023-09-19 17:46:20 +1000
committerallusive-dev <[email protected]>2023-09-19 17:46:20 +1000
commit5650d887357bf2a3fac8c5fd4f467bf8795b5fc4 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/uthash_extra.h
parentUpdate picom.sample.conf (diff)
downloadcompfy-5650d887357bf2a3fac8c5fd4f467bf8795b5fc4.tar.xz
compfy-5650d887357bf2a3fac8c5fd4f467bf8795b5fc4.zip
reset
Diffstat (limited to 'src/uthash_extra.h')
-rw-r--r--src/uthash_extra.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/uthash_extra.h b/src/uthash_extra.h
deleted file mode 100644
index cbc1056..0000000
--- a/src/uthash_extra.h
+++ /dev/null
@@ -1,7 +0,0 @@
-#pragma once
-
-#include <uthash.h>
-
-#define HASH_ITER2(head, el) \
- for (__typeof__(head) el = (head), __tmp = el != NULL ? el->hh.next : NULL; \
- el != NULL; el = __tmp, __tmp = el != NULL ? el->hh.next : NULL)