diff options
author | 2013-12-28 18:41:48 +0000 | |
---|---|---|
committer | 2013-12-28 18:41:48 +0000 | |
commit | 1ca77deec00638a02c32bec7557fae25cdf73e3d (patch) | |
tree | 053255603855ae04e311e216e10cb8c78b8d695a | |
parent | Move atexit(3) into crtbegin.c and certbeginS.c such that we can pass the (diff) | |
download | wireguard-openbsd-1ca77deec00638a02c32bec7557fae25cdf73e3d.tar.xz wireguard-openbsd-1ca77deec00638a02c32bec7557fae25cdf73e3d.zip |
Do not need __guard anymore
Discussion with miod
ok kettenis
-rw-r--r-- | libexec/ld.so/util.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libexec/ld.so/util.c b/libexec/ld.so/util.c index d8d5a435da8..f97c7a2025f 100644 --- a/libexec/ld.so/util.c +++ b/libexec/ld.so/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.27 2013/11/13 05:41:42 deraadt Exp $ */ +/* $OpenBSD: util.c,v 1.28 2013/12/28 18:41:48 deraadt Exp $ */ /* * Copyright (c) 1998 Per Fogelstrom, Opsycon AB @@ -38,7 +38,6 @@ * Ideally, a scheme to compile these stubs from libc should be used, but * this would end up dragging too much code from libc here. */ -long __guard[8] __dso_public __attribute__((section(".openbsd.randomdata"))); long __guard_local __dso_hidden __attribute__((section(".openbsd.randomdata"))); void __stack_smash_handler(char [], int); |