xalloc.h needs string.h for declaration of strdup(). Otherwise we can get implicit declaration warning. This patch prevents it. Signed-off-by: Marek Polacek <mpolacek@xxxxxxxxxx> --- include/xalloc.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/xalloc.h b/include/xalloc.h index fc2f886..fe30797 100644 --- a/include/xalloc.h +++ b/include/xalloc.h @@ -12,6 +12,7 @@ #include <stdlib.h> #include <err.h> +#include <string.h> #ifndef XALLOC_EXIT_CODE # define XALLOC_EXIT_CODE EXIT_FAILURE -- 1.7.3.4 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html