From 11c3a36649e5e5e77db499c92f3cdcbd619efd3a Mon Sep 17 00:00:00 2001 From: Thomas Hindoe Paaboel Andersen Date: Mon, 30 Nov 2015 21:43:37 +0100 Subject: basic: include only what we use This is a cleaned up result of running iwyu but without forward declarations on src/basic. --- src/basic/escape.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/basic/escape.c') diff --git a/src/basic/escape.c b/src/basic/escape.c index 42a84c9317..ab282efa3c 100644 --- a/src/basic/escape.c +++ b/src/basic/escape.c @@ -19,12 +19,15 @@ along with systemd; If not, see . ***/ +#include +#include +#include + #include "alloc-util.h" #include "escape.h" #include "hexdecoct.h" -#include "string-util.h" +#include "macro.h" #include "utf8.h" -#include "util.h" size_t cescape_char(char c, char *buf) { char * buf_old = buf; -- cgit v1.2.3-54-g00ecf