1{ 2 global: 3 /* actual exports */ 4 dl_iterate_phdr; 5 dladdr; 6 dlclose; 7 dlctl; 8 dlerror; 9 dlopen; 10 dlsym; 11 environ; 12 __progname; 13 14 /* alias in reserved namespace for libpthread to use */ 15 _dlctl; 16 17 /* TLS related bits */ 18 _dl_allocate_tib; 19 _dl_free_tib; 20 21 /* looked up by gdb */ 22 _dl_bind; 23 _dl_debug_state; 24 25 local: 26 *; 27}; 28