diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-26 16:41:43 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 13:25:55 +0100 |
commit | e4e73a632524c382139034d4271f53b6089ab4cb (patch) | |
tree | 48e286e7dbac59a562431ad05d506833db968f6e /src/basic/bus-label.c | |
parent | 6bedfcbb2970e06a4d3280c8fb62083d252ede73 (diff) |
util-lib: split out hex/dec/oct encoding/decoding into its own file
Diffstat (limited to 'src/basic/bus-label.c')
-rw-r--r-- | src/basic/bus-label.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/basic/bus-label.c b/src/basic/bus-label.c index ccc9f2bf8e..6f39528f13 100644 --- a/src/basic/bus-label.c +++ b/src/basic/bus-label.c @@ -21,10 +21,10 @@ #include <stdlib.h> -#include "util.h" -#include "macro.h" - #include "bus-label.h" +#include "macro.h" +#include "hexdecoct.h" +#include "util.h" char *bus_label_escape(const char *s) { char *r, *t; |