]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/basic/fdset.c
basic: include only what we use
[thirdparty/systemd.git] / src / basic / fdset.c
index e5452f3bb0e246a7b76032ffc6f967dbf760b573..654ec5a6390f1000331c6c70126ea033ddd5edd1 100644 (file)
   along with systemd; If not, see <http://www.gnu.org/licenses/>.
 ***/
 
+#include <alloca.h>
 #include <dirent.h>
 #include <errno.h>
 #include <fcntl.h>
+#include <stddef.h>
 
 #include "sd-daemon.h"
 
-#include "dirent-util.h"
 #include "fd-util.h"
 #include "fdset.h"
 #include "macro.h"
 #include "parse-util.h"
 #include "set.h"
-#include "util.h"
+#include "log.h"
+#include "path-util.h"
 
 #define MAKE_SET(s) ((Set*) s)
 #define MAKE_FDSET(s) ((FDSet*) s)