old_atexit.c 232 B

12345678
  1. #include <shlib-compat.h>
  2. #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2_2)
  3. # define atexit attribute_compat_text_section __dyn_atexit
  4. # include "atexit.c"
  5. # undef atexit
  6. compat_symbol (libc, __dyn_atexit, atexit, GLIBC_2_0);
  7. #endif