diff options
| author | allusive-dev <[email protected]> | 2023-09-19 17:46:20 +1000 |
|---|---|---|
| committer | allusive-dev <[email protected]> | 2023-09-19 17:46:20 +1000 |
| commit | 5650d887357bf2a3fac8c5fd4f467bf8795b5fc4 (patch) | |
| tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/uthash_extra.h | |
| parent | Update picom.sample.conf (diff) | |
| download | compfy-5650d887357bf2a3fac8c5fd4f467bf8795b5fc4.tar.xz compfy-5650d887357bf2a3fac8c5fd4f467bf8795b5fc4.zip | |
reset
Diffstat (limited to 'src/uthash_extra.h')
| -rw-r--r-- | src/uthash_extra.h | 7 |
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) |