Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
conf.c conf.h \
list.h \
log.c log.h \
+ macro.h \
namespace.c namespace.h \
utils.c utils.h
endif
#include "conf.h"
#include "list.h"
#include "log.h"
+#include "macro.h"
#include "namespace.h"
#include "utils.h"
-#ifndef MS_REC
-#define MS_REC 16384
-#endif
-
-#ifndef MS_SLAVE
-#define MS_SLAVE (1 << 19)
-#endif
-
extern int lxc_log_fd;
-int unshare(int flags);
-
static void usage(const char *name)
{
printf("usage: %s [-h] [-m <uid-maps>] -- [command [arg ..]]\n", name);
#define NLMSG_ERROR 0x2
#endif
+/* mount */
+#ifndef MS_REC
+#define MS_REC 16384
+#endif
+
+#ifndef MS_SLAVE
+#define MS_SLAVE (1 << 19)
+#endif
+
#endif /* __LXC_MACRO_H */