src/pwrite_mmap_blocked: Include signal.h instead of sys/signal.h

sys/signal.h is wrong and should not be used. Musl C library warns
about it.

Signed-off-by: Rostislav Skudnov <rostislav@tuxera.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Eryu Guan <eguan@redhat.com>
This commit is contained in:
Rostislav Skudnov
2018-01-22 15:57:19 +00:00
committed by Eryu Guan
parent 38a006979b
commit 04b7f069f1
+1 -1
View File
@@ -22,7 +22,7 @@
#include <errno.h>
#include <time.h>
#include <sys/mman.h>
#include <sys/signal.h>
#include <signal.h>
#include <sys/stat.h>