From: Alistair Francis Date: Mon, 17 Apr 2017 21:33:11 +0000 (-0700) Subject: tools: Use POSIX signal.h instead of sys/signal.h X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~2226 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b4cd5173183fbc118e2dc2a0d2e0d5038daf4fb5;p=xen.git tools: Use POSIX signal.h instead of sys/signal.h The POSIX spec specifies to use: #include instead of: #include as seen here: http://pubs.opengroup.org/onlinepubs/009695399/functions/signal.html This removes the warning: #warning redirecting incorrect #include to when building with the musl C-library. Signed-off-by: Alistair Francis Acked-by: Wei Liu Acked-by: Razvan Cojocaru Acked-by: Ian Jackson Release-acked-by: Julien Grall --- diff --git a/tools/blktap2/drivers/tapdisk-server.c b/tools/blktap2/drivers/tapdisk-server.c index eecde3d23f..71315bb069 100644 --- a/tools/blktap2/drivers/tapdisk-server.c +++ b/tools/blktap2/drivers/tapdisk-server.c @@ -30,7 +30,7 @@ #include #include #include -#include +#include #include "tapdisk-utils.h" #include "tapdisk-server.h"