chiark / gitweb /
util: include `stdarg.h`
[elogind.git] / src / util.h
index fcaeac4ab9da127622908edfb93112771b7d05f2..79e98be20bd067cc661a616f994ba3ef9277afe2 100644 (file)
@@ -25,6 +25,7 @@
 #include <inttypes.h>
 #include <time.h>
 #include <sys/time.h>
+#include <stdarg.h>
 #include <stdbool.h>
 #include <stdlib.h>
 #include <stdio.h>
@@ -224,6 +225,7 @@ char *path_make_absolute_cwd(const char *p);
 
 char **strv_path_make_absolute_cwd(char **l);
 char **strv_path_canonicalize(char **l);
+char **strv_path_remove_empty(char **l);
 
 int reset_all_signal_handlers(void);
 
@@ -441,4 +443,5 @@ int signal_from_string(const char *s);
 
 int signal_from_string_try_harder(const char *s);
 
+int conf_files_list(char ***strv, const char *suffix, const char *dir, ...);
 #endif