diff options
-rw-r--r-- | src/missing.h | 4 | ||||
-rw-r--r-- | src/nspawn.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/missing.h b/src/missing.h index ff5dcb4092..c0cb3eaea7 100644 --- a/src/missing.h +++ b/src/missing.h @@ -122,4 +122,8 @@ struct btrfs_ioctl_vol_args { #define BTRFS_SUPER_MAGIC 0x9123683E #endif +#ifndef MS_MOVE +#define MS_MOVE 8192 +#endif + #endif diff --git a/src/nspawn.c b/src/nspawn.c index fa70e86c46..bf4e6de2ab 100644 --- a/src/nspawn.c +++ b/src/nspawn.c @@ -36,6 +36,7 @@ #include "log.h" #include "util.h" +#include "missing.h" static char *arg_directory = NULL; |