summaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2014-09-15 18:45:56 -0400
committerAnthony G. Basile <blueness@gentoo.org>2014-09-15 18:45:56 -0400
commit54a717b2078ef052c106e85bdf3b832e45e16c71 (patch)
tree77578baa3f85f57e4af44a7f4da78b4f6e174480 /src/shared
parent429c3a7f17db9d81c10b2190703bce5c033adaf3 (diff)
src/shared/set.h: remove unnecessary function declaration
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/set.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/shared/set.h b/src/shared/set.h
index b2f473428e..f1111d1bc8 100644
--- a/src/shared/set.h
+++ b/src/shared/set.h
@@ -38,7 +38,6 @@ void *set_get(Set *s, void *value);
bool set_contains(Set *s, void *value);
void *set_iterate(Set *s, Iterator *i);
-void *set_iterate_backwards(Set *s, Iterator *i);
DEFINE_TRIVIAL_CLEANUP_FUNC(Set*, set_free);
#define _cleanup_set_free_ _cleanup_(set_freep)