chiark / gitweb /
tree-wide: remove Emacs lines from all files
[elogind.git] / src / basic / mempool.c
index 19c0edfa6445f59eb7adc3c44814c9a87848394b..9ee6e6a76d622b36281208b9f4ae8fd9024a4516 100644 (file)
@@ -20,8 +20,8 @@
   along with systemd; If not, see <http://www.gnu.org/licenses/>.
 ***/
 
-#include "mempool.h"
 #include "macro.h"
+#include "mempool.h"
 #include "util.h"
 
 struct pool {
@@ -90,7 +90,7 @@ void mempool_free_tile(struct mempool *mp, void *p) {
 
 #ifdef VALGRIND
 
-// UNNEEDED void mempool_drop(struct mempool *mp) {
+void mempool_drop(struct mempool *mp) {
         struct pool *p = mp->first_pool;
         while (p) {
                 struct pool *n;