diff options
author | Stefan Liebler <stli@linux.ibm.com> | 2019-09-19 12:26:18 +0200 |
---|---|---|
committer | Stefan Liebler <stli@linux.ibm.com> | 2019-09-19 12:26:18 +0200 |
commit | 64fab3633aecc8eadc1338aa8953f8b2f37e3ebf (patch) | |
tree | 55621ea20d301acd3c05122c6428ed3ca03d4d6d /support | |
parent | 73d9051da47eda4c69397df6e7468087975fcf47 (diff) | |
download | glibc-64fab3633aecc8eadc1338aa8953f8b2f37e3ebf.tar glibc-64fab3633aecc8eadc1338aa8953f8b2f37e3ebf.tar.gz glibc-64fab3633aecc8eadc1338aa8953f8b2f37e3ebf.tar.bz2 glibc-64fab3633aecc8eadc1338aa8953f8b2f37e3ebf.zip |
Fix building support_ptrace.c on i686-gnu.
On i686-gnu the build is broken:
In file included from support_ptrace.c:22:
../include/sys/prctl.h:2:15: fatal error: sys/prctl.h: No such file or directory
#include_next <sys/prctl.h>
This patch just removes the unused prctl.h inclusion.
ChangeLog:
* support/support_ptrace.c: Remove inclusion of sys/prctl.h.
Diffstat (limited to 'support')
-rw-r--r-- | support/support_ptrace.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/support/support_ptrace.c b/support/support_ptrace.c index 616b08cff3..a733adf2c8 100644 --- a/support/support_ptrace.c +++ b/support/support_ptrace.c @@ -19,7 +19,6 @@ #include <support/check.h> #include <support/xstdio.h> #include <support/xptrace.h> -#include <sys/prctl.h> int support_ptrace_scope (void) |