From 65441ac9e57369e2ae31ada6998bffa0b1ae7511 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 29 Jan 2014 14:23:45 +0000 Subject: [PATCH] Include strings.h for strcasecmp This fixes the following error with musl libc: In file included from start.c:59:0: log.h: In function 'lxc_log_priority_to_int': log.h:136:2: error: implicit declaration of function 'strcasecmp' [-Werror=implicit-function-declaration] Signed-off-by: Natanael Copa Acked-by: Serge E. Hallyn --- src/lxc/log.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lxc/log.h b/src/lxc/log.h index 4a426656d..4a9714ae9 100644 --- a/src/lxc/log.h +++ b/src/lxc/log.h @@ -28,6 +28,7 @@ #include #include #include +#include #include #ifndef O_CLOEXEC -- 2.47.2