From 19b4bb652f5cdc2797b66595eaf8811881aa9873 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Wed, 2 Oct 2013 11:53:33 +0200 Subject: Include external headers with #include I find it more readable to include headers from outside the sssd tree with , not "foo.h". The latter should be used for in-tree headers only. --- src/util/memory.c | 3 ++- src/util/util.c | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'src/util') diff --git a/src/util/memory.c b/src/util/memory.c index a2c8b54b8..672129ee5 100644 --- a/src/util/memory.c +++ b/src/util/memory.c @@ -18,7 +18,8 @@ along with this program. If not, see . */ -#include "talloc.h" +#include + #include "util/util.h" /* diff --git a/src/util/util.c b/src/util/util.c index 9ab154db3..5931549f4 100644 --- a/src/util/util.c +++ b/src/util/util.c @@ -23,11 +23,11 @@ #include #include #include +#include +#include -#include "talloc.h" #include "util/util.h" #include "util/sss_utf8.h" -#include "dhash.h" int split_on_separator(TALLOC_CTX *mem_ctx, const char *str, const char sep, bool trim, bool skip_empty, -- cgit