aboutsummaryrefslogtreecommitdiff
path: root/lib/csu
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2018-11-24 18:23:53 +0000
committerAndrew Turner <andrew@FreeBSD.org>2018-11-24 18:23:53 +0000
commite5c0fd4be642b924743fbfaefcdfa2d656a5a112 (patch)
treea3304d20122fa86ceef1a362b26876409eedc22c /lib/csu
parentaca1c28a0a91e56c59b44ada314e2f3fbca20328 (diff)
Notes
Diffstat (limited to 'lib/csu')
-rw-r--r--lib/csu/common/crtend.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/csu/common/crtend.c b/lib/csu/common/crtend.c
index f37cf4e16c0d..6e83354614d9 100644
--- a/lib/csu/common/crtend.c
+++ b/lib/csu/common/crtend.c
@@ -41,6 +41,9 @@ static crt_func __CTOR_END__[] __section(".ctors") __used = {
static crt_func __DTOR_END__[] __section(".dtors") __used = {
(crt_func)0
};
+static crt_func __JCR_LIST__[] __section(".jcr") __used = {
+ (crt_func)0
+};
static void
__do_global_ctors_aux(void)