mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
* stdlib/atexit.c (atexit): Don't mark as hidden when used to
generate compatibility version.
This commit is contained in:
parent
416b630981
commit
2a0c7376d0
@ -1,3 +1,8 @@
|
||||
2006-10-31 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* stdlib/atexit.c (atexit): Don't mark as hidden when used to
|
||||
generate compatibility version.
|
||||
|
||||
2006-10-29 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* configure.in: Relax -z relro requirement a bit.
|
||||
|
@ -43,7 +43,9 @@ extern void *__dso_handle __attribute__ ((__weak__));
|
||||
|
||||
/* Register FUNC to be executed by `exit'. */
|
||||
int
|
||||
#ifndef atexit
|
||||
attribute_hidden
|
||||
#endif
|
||||
atexit (void (*func) (void))
|
||||
{
|
||||
return __cxa_atexit ((void (*) (void *)) func, NULL,
|
||||
|
Loading…
Reference in New Issue
Block a user