summaryrefslogtreecommitdiff
path: root/src/libudev/hashmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libudev/hashmap.h')
-rw-r--r--src/libudev/hashmap.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libudev/hashmap.h b/src/libudev/hashmap.h
index 5135c885a0..3b65142eca 100644
--- a/src/libudev/hashmap.h
+++ b/src/libudev/hashmap.h
@@ -71,9 +71,3 @@ char **hashmap_get_strv(Hashmap *h);
#define HASHMAP_FOREACH(e, h, i) \
for ((i) = ITERATOR_FIRST, (e) = hashmap_iterate((h), &(i), NULL); (e); (e) = hashmap_iterate((h), &(i), NULL))
-
-#define HASHMAP_FOREACH_KEY(e, k, h, i) \
- for ((i) = ITERATOR_FIRST, (e) = hashmap_iterate((h), &(i), (const void**) &(k)); (e); (e) = hashmap_iterate((h), &(i), (const void**) &(k)))
-
-#define HASHMAP_FOREACH_BACKWARDS(e, h, i) \
- for ((i) = ITERATOR_LAST, (e) = hashmap_iterate_backwards((h), &(i), NULL); (e); (e) = hashmap_iterate_backwards((h), &(i), NULL))