From c69854247b64dbb00e823abaf4cefe6aa7be0623 Mon Sep 17 00:00:00 2001 From: Merlijn Wajer Date: Sat, 13 Dec 2014 15:07:25 +0100 Subject: [PATCH] btrfs-progs: include headers required for musl-libc This fixes various compilation errors where PATH_MAX and XATTR_SIZE_MAX were missing. To my knowledge, this should have no bad side effects. Signed-off-by: Merlijn Wajer Signed-off-by: David Sterba --- btrfs-convert.c | 1 + help.c | 1 + mkfs.c | 2 ++ 3 files changed, 4 insertions(+) diff --git a/btrfs-convert.c b/btrfs-convert.c index 4c6c793a..c503bf6e 100644 --- a/btrfs-convert.c +++ b/btrfs-convert.c @@ -31,6 +31,7 @@ #include #include #include +#include #include "ctree.h" #include "disk-io.h" diff --git a/help.c b/help.c index fab942b4..56aaf9c3 100644 --- a/help.c +++ b/help.c @@ -17,6 +17,7 @@ #include #include #include +#include #include "commands.h" #include "utils.h" diff --git a/mkfs.c b/mkfs.c index f930a535..98a1eddd 100644 --- a/mkfs.c +++ b/mkfs.c @@ -35,6 +35,8 @@ #include #include #include +#include +#include #include #include #include "ctree.h"