This patch fixes the compiler warning message as below. warning: implicit declaration of function ‘install_sighandler’ [-Wimplicit-function-declaration]
Signed-off-by: Ruoyu <[email protected]> --- lib/work.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/work.c b/lib/work.c index 14e3117..01f9d73 100644 --- a/lib/work.c +++ b/lib/work.c @@ -27,6 +27,7 @@ #include <linux/types.h> #include <signal.h> +#include "common.h" #include "list.h" #include "util.h" #include "bitops.h" -- 1.8.3.2 -- sheepdog mailing list [email protected] https://lists.wpkg.org/mailman/listinfo/sheepdog
