chiark / gitweb /
copy: adjust directory times after writing to the directory
[elogind.git] / src / basic / prioq.c
index 75906989114bc4add71ccf8cd602e06b552e4129..d2ec516d297ccaca972cb8d9d85bb36e600c8716 100644 (file)
@@ -1,5 +1,3 @@
-/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
-
 /***
   This file is part of systemd.
 
  * The underlying algorithm used in this implementation is a Heap.
  */
 
+#include <errno.h>
+#include <stdlib.h>
+
 #include "alloc-util.h"
+#include "hashmap.h"
 #include "prioq.h"
-#include "util.h"
 
 struct prioq_item {
         void *data;