chiark / gitweb /
Prep v221: Update and clean up build system to sync with upstream
[elogind.git] / src / basic / set.h
similarity index 98%
rename from src/shared/set.h
rename to src/basic/set.h
index 51e40d3a6c506c9ccfce9a51bb9587c2483807c4..1d16999595a96b5d74b9ef6ffed6a17cf7547512 100644 (file)
@@ -122,7 +122,7 @@ static inline char **set_get_strv(Set *s) {
 
 int set_consume(Set *s, void *value);
 int set_put_strdup(Set *s, const char *p);
-int set_put_strdupv(Set *s, char **l);
+// UNNEEDED int set_put_strdupv(Set *s, char **l);
 
 #define SET_FOREACH(e, s, i) \
         for ((i) = ITERATOR_FIRST; set_iterate((s), &(i), (void**)&(e)); )