diff options
author | kremlin <ian@kremlin.cc> | 2014-07-15 13:09:59 +0800 |
---|---|---|
committer | kremlin <ian@kremlin.cc> | 2014-07-15 13:09:59 +0800 |
commit | 4c04b514283b9d35d0e7693bd4e2a40545ec89ab (patch) | |
tree | f3df9b95e0c84c5f218502adbf6c4ddbdd25899b | |
parent | d5200a78f738245171a945526688e05b673a68e4 (diff) | |
download | systembsd-4c04b514283b9d35d0e7693bd4e2a40545ec89ab.tar systembsd-4c04b514283b9d35d0e7693bd4e2a40545ec89ab.tar.gz systembsd-4c04b514283b9d35d0e7693bd4e2a40545ec89ab.tar.bz2 systembsd-4c04b514283b9d35d0e7693bd4e2a40545ec89ab.tar.lz systembsd-4c04b514283b9d35d0e7693bd4e2a40545ec89ab.tar.xz systembsd-4c04b514283b9d35d0e7693bd4e2a40545ec89ab.tar.zst systembsd-4c04b514283b9d35d0e7693bd4e2a40545ec89ab.zip |
include gprintf.h in hostnamed.c/localed.c to allow strict compilation
-rw-r--r-- | src/interfaces/hostnamed/hostnamed.c | 2 | ||||
-rw-r--r-- | src/interfaces/localed/localed.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/interfaces/hostnamed/hostnamed.c b/src/interfaces/hostnamed/hostnamed.c index 0cdbd36..3d1b3d2 100644 --- a/src/interfaces/hostnamed/hostnamed.c +++ b/src/interfaces/hostnamed/hostnamed.c @@ -19,6 +19,8 @@ #include <sys/param.h> +#include <glib/gprintf.h> + #include "hostnamed-gen.h" GPtrArray *hostnamed_freeable; diff --git a/src/interfaces/localed/localed.c b/src/interfaces/localed/localed.c index d6bf1aa..1c628da 100644 --- a/src/interfaces/localed/localed.c +++ b/src/interfaces/localed/localed.c @@ -17,6 +17,8 @@ #include <unistd.h> #include <limits.h> +#include <glib/gprintf.h> + #include "localed-gen.h" GPtrArray *localed_freeable; |