summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2019-03-16 11:32:46 +0100
committerpgen <p.gen.progs@gmail.com>2019-03-17 20:54:37 +0100
commit230bf81e7c3f27049be219173a56a6f2b6eae1ad (patch)
tree1de63918f12731610801de71f897c03c4280b194
parent995801cb598c6cc2b8ac808733e0c8640dc8def7 (diff)
Include config.h where it's needed
-rw-r--r--list.c1
-rw-r--r--utils.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/list.c b/list.c
index 2f616e8..b217492 100644
--- a/list.c
+++ b/list.c
@@ -13,7 +13,6 @@
/* the structure members (head, tail, len, data, prev, next) */
/* ********************************************************************* */
-#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
diff --git a/utils.c b/utils.c
index 1b2fb04..3d66663 100644
--- a/utils.c
+++ b/utils.c
@@ -7,6 +7,7 @@
/* Various small utility functions */
/* ******************************* */
+#include "config.h"
#include <stdlib.h>
#include <limits.h>
#include <string.h>