Fix the following build failure with musl libc: xfs_scrub.c: In function ‘main’: xfs_scrub.c:670:11: error: ‘_PATH_MOUNTED’ undeclared (first use in this function) mtab = _PATH_MOUNTED; ^~~~~~~~~~~~~ Signed-off-by: Baruch Siach <baruch@xxxxxxxxxx> --- scrub/xfs_scrub.c | 1 + 1 file changed, 1 insertion(+) diff --git a/scrub/xfs_scrub.c b/scrub/xfs_scrub.c index ab26e6335948..eedbe34ec7b3 100644 --- a/scrub/xfs_scrub.c +++ b/scrub/xfs_scrub.c @@ -21,6 +21,7 @@ #include <pthread.h> #include <stdbool.h> #include <stdlib.h> +#include <paths.h> #include <sys/time.h> #include <sys/resource.h> #include <sys/statvfs.h> -- 2.16.2 -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html