summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/atexit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/stdlib/atexit.c')
-rw-r--r--src/lib/libc/stdlib/atexit.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libc/stdlib/atexit.c b/src/lib/libc/stdlib/atexit.c
index a33080571f..4ccf84562c 100644
--- a/src/lib/libc/stdlib/atexit.c
+++ b/src/lib/libc/stdlib/atexit.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: atexit.c,v 1.21 2015/04/07 01:27:07 guenther Exp $ */ 1/* $OpenBSD: atexit.c,v 1.22 2015/10/25 18:01:24 guenther Exp $ */
2/* 2/*
3 * Copyright (c) 2002 Daniel Hartmeier 3 * Copyright (c) 2002 Daniel Hartmeier
4 * All rights reserved. 4 * All rights reserved.
@@ -103,6 +103,7 @@ unlock:
103 _ATEXIT_UNLOCK(); 103 _ATEXIT_UNLOCK();
104 return (ret); 104 return (ret);
105} 105}
106DEF_STRONG(__cxa_atexit);
106 107
107/* 108/*
108 * Call all handlers registered with __cxa_atexit() for the shared 109 * Call all handlers registered with __cxa_atexit() for the shared
@@ -180,6 +181,7 @@ restart:
180 181
181 } 182 }
182} 183}
184DEF_STRONG(__cxa_finalize);
183 185
184/* 186/*
185 * Register the cleanup function 187 * Register the cleanup function