From: Yann E. MORIN Date: Sun, 28 Aug 2016 14:26:04 +0000 (+0200) Subject: importd/export-raw: needs missing.h for O_TMPFILE X-Git-Tag: v232~250^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4a6d35237f96d07f3a783c874933f87bf14f93e0;p=thirdparty%2Fsystemd.git importd/export-raw: needs missing.h for O_TMPFILE O_TMPFILE may be missing from the system headers, so use our fallback definition. --- Changes v1 -> v2: - move include with local includes --- diff --git a/src/import/export-raw.c b/src/import/export-raw.c index db06e11b87b..6136b677dde 100644 --- a/src/import/export-raw.c +++ b/src/import/export-raw.c @@ -34,6 +34,7 @@ #include "fd-util.h" #include "fileio.h" #include "import-common.h" +#include "missing.h" #include "ratelimit.h" #include "string-util.h" #include "util.h"