aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Janda <felix.janda@posteo.de>2017-09-14 21:51:10 -0500
committerEric Sandeen <sandeen@redhat.com>2017-09-14 21:51:10 -0500
commit7a0a8e7dfd68a11523bc7f044625e9e4d8ad7f98 (patch)
tree13005d1c47d67d3fa1a7b3dd4a15992d4234132b
parenta03055f03f0c3a6b39c8989c560fb50fe93bf6ad (diff)
downloadxfsdump-dev-7a0a8e7dfd68a11523bc7f044625e9e4d8ad7f98.tar.gz
librmt/rmtopen: Prefer <signal.h> over <sys/signal.h>
[sandeen: fixes build with musl libc] Signed-off-by: Felix Janda <felix.janda@posteo.de> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
-rw-r--r--librmt/rmtopen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/librmt/rmtopen.c b/librmt/rmtopen.c
index 4bf9383b..09ba3e42 100644
--- a/librmt/rmtopen.c
+++ b/librmt/rmtopen.c
@@ -27,7 +27,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
-#include <sys/signal.h>
+#include <signal.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>