summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Moore <paul@paul-moore.com>2016-02-10 11:36:42 -0500
committerPaul Moore <paul@paul-moore.com>2016-02-10 11:36:42 -0500
commitfaf6919f36eae556f1d4e40b8847070221f553c6 (patch)
tree9cffb906761afd31ecd25a3e3642c6fab527260e
parent43bc4449e534d09f8233f9d98f12b60d047ead0f (diff)
downloadlibseccomp-faf6919f36eae556f1d4e40b8847070221f553c6.tar.gz
system: use sys/prctl.h instead of linux/prctl.h
This should help on systems that use alternate libc implementations. Reported-by: anarchpenguin Reported-by: Kylie McClain somasis@exherbo.org Signed-off-by: Paul Moore <paul@paul-moore.com>
-rw-r--r--src/system.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/system.h b/src/system.h
index 4660679..02fd1e9 100644
--- a/src/system.h
+++ b/src/system.h
@@ -23,7 +23,7 @@
#define _SYSTEM_H
#include <linux/filter.h>
-#include <linux/prctl.h>
+#include <sys/prctl.h>
#include "configure.h"