diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2016-08-28 16:26:04 +0200 |
---|---|---|
committer | Yann E. MORIN <yann.morin.1998@free.fr> | 2016-08-29 12:40:22 +0200 |
commit | 4a6d35237f96d07f3a783c874933f87bf14f93e0 (patch) | |
tree | 9a79e498095e3e035668164551ec23745f367a24 /src/import/export-raw.c | |
parent | 2551d797f36975e75761cb9c3974edd7986325a1 (diff) |
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
Diffstat (limited to 'src/import/export-raw.c')
-rw-r--r-- | src/import/export-raw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/import/export-raw.c b/src/import/export-raw.c index db06e11b87..6136b677dd 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" |