aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/alpha
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2014-04-16 21:28:50 -0700
committerRichard Henderson <rth@twiddle.net>2014-04-16 21:35:27 -0700
commita3df56fcae737c71508c7f8d38f0728642b66d66 (patch)
tree8d199a50f9d8fd0e8199da12a5f3cfa5a2fbf9b2 /sysdeps/unix/alpha
parent95fc5fa3db2692b2f5a214b5be9076970e1afadc (diff)
downloadglibc-a3df56fcae737c71508c7f8d38f0728642b66d66.zip
glibc-a3df56fcae737c71508c7f8d38f0728642b66d66.tar.gz
glibc-a3df56fcae737c71508c7f8d38f0728642b66d66.tar.bz2
alpha: Fix __pointer_chk_guard definition for the testsuite
Diffstat (limited to 'sysdeps/unix/alpha')
-rw-r--r--sysdeps/unix/alpha/sysdep.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/alpha/sysdep.h b/sysdeps/unix/alpha/sysdep.h
index 7425026..0c40ca6 100644
--- a/sysdeps/unix/alpha/sysdep.h
+++ b/sysdeps/unix/alpha/sysdep.h
@@ -377,7 +377,7 @@ extern uintptr_t __pointer_chk_guard_local attribute_relro attribute_hidden;
# define PTR_MANGLE(var) \
(var) = (__typeof (var)) ((uintptr_t) (var) ^ __pointer_chk_guard_local)
# else
-extern const uintptr_t __pointer_chk_guard attribute_relro;
+extern uintptr_t __pointer_chk_guard attribute_relro;
# define PTR_MANGLE(var) \
(var) = (__typeof(var)) ((uintptr_t) (var) ^ __pointer_chk_guard)
# endif