mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
9 lines
202 B
C
9 lines
202 B
C
|
#include <shlib-compat.h>
|
||
|
|
||
|
#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2_2)
|
||
|
# define atexit __dyn_atexit
|
||
|
# include "atexit.c"
|
||
|
# undef atexit
|
||
|
compat_symbol (libc, __dyn_atexit, atexit, GLIBC_2_0);
|
||
|
#endif
|