objdump.libc6-2.3 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277
  1. /lib/libc.so.6: file format elf32-i386
  2. architecture: i386, flags 0x00000150:
  3. HAS_SYMS, DYNAMIC, D_PAGED
  4. start address 0x000161b0
  5. Program Header:
  6. PHDR off 0x00000034 vaddr 0x00000034 paddr 0x00000034 align 2**2
  7. filesz 0x00000120 memsz 0x00000120 flags r-x
  8. INTERP off 0x0010f4a0 vaddr 0x0010f4a0 paddr 0x0010f4a0 align 2**0
  9. filesz 0x00000013 memsz 0x00000013 flags r--
  10. LOAD off 0x00000000 vaddr 0x00000000 paddr 0x00000000 align 2**12
  11. filesz 0x00110208 memsz 0x00110208 flags r-x
  12. LOAD off 0x00110c0c vaddr 0x00111c0c paddr 0x00111c0c align 2**12
  13. filesz 0x00006300 memsz 0x00008d28 flags rw-
  14. DYNAMIC off 0x00115d3c vaddr 0x00116d3c paddr 0x00116d3c align 2**2
  15. filesz 0x000000e0 memsz 0x000000e0 flags rw-
  16. NOTE off 0x00000154 vaddr 0x00000154 paddr 0x00000154 align 2**2
  17. filesz 0x00000020 memsz 0x00000020 flags r--
  18. EH_FRAME off 0x0010f4b4 vaddr 0x0010f4b4 paddr 0x0010f4b4 align 2**2
  19. filesz 0x00000d54 memsz 0x00000d54 flags r--
  20. STACK off 0x00000000 vaddr 0x00000000 paddr 0x00000000 align 2**2
  21. filesz 0x00000000 memsz 0x00000000 flags rw-
  22. RELRO off 0x00110c0c vaddr 0x00111c0c paddr 0x00111c0c align 2**5
  23. filesz 0x00005200 memsz 0x00005200 flags r--
  24. Dynamic Section:
  25. NEEDED ld-linux.so.2
  26. SONAME libc.so.6
  27. INIT 0x15280
  28. FINI_ARRAY 0x1152d4
  29. FINI_ARRAYSZ 0x4
  30. HASH 0x174
  31. STRTAB 0xbbc8
  32. SYMTAB 0x3388
  33. STRSZ 0x530f
  34. SYMENT 0x10
  35. PLTGOT 0x116ff4
  36. PLTRELSZ 0xa8
  37. PLTREL 0x11
  38. JMPREL 0x14fe8
  39. REL 0x122a0
  40. RELSZ 0x2d48
  41. RELENT 0x8
  42. VERDEF 0x11fe0
  43. VERDEFNUM 0x12
  44. VERNEED 0x12250
  45. VERNEEDNUM 0x1
  46. VERSYM 0x10ed8
  47. RELCOUNT 0x548
  48. Version definitions:
  49. 1 0x01 0x0865f4e6 libc.so.6
  50. 2 0x00 0x0d696910 GLIBC_2.0
  51. 3 0x00 0x0d696911 GLIBC_2.1
  52. GLIBC_2.0
  53. 4 0x00 0x09691f71 GLIBC_2.1.1
  54. GLIBC_2.1
  55. 5 0x00 0x09691f72 GLIBC_2.1.2
  56. GLIBC_2.1.1
  57. 6 0x00 0x09691f73 GLIBC_2.1.3
  58. GLIBC_2.1.2
  59. 7 0x00 0x0d696912 GLIBC_2.2
  60. GLIBC_2.1.3
  61. 8 0x00 0x09691a71 GLIBC_2.2.1
  62. GLIBC_2.2
  63. 9 0x00 0x09691a72 GLIBC_2.2.2
  64. GLIBC_2.2.1
  65. 10 0x00 0x09691a73 GLIBC_2.2.3
  66. GLIBC_2.2.2
  67. 11 0x00 0x09691a74 GLIBC_2.2.4
  68. GLIBC_2.2.3
  69. 12 0x00 0x09691a76 GLIBC_2.2.6
  70. GLIBC_2.2.4
  71. 13 0x00 0x0d696913 GLIBC_2.3
  72. GLIBC_2.2.6
  73. 14 0x00 0x09691972 GLIBC_2.3.2
  74. GLIBC_2.3
  75. 15 0x00 0x09691973 GLIBC_2.3.3
  76. GLIBC_2.3.2
  77. 16 0x00 0x09691974 GLIBC_2.3.4
  78. GLIBC_2.3.3
  79. 17 0x00 0x0963cf85 GLIBC_PRIVATE
  80. GLIBC_2.3.4
  81. 18 0x00 0x0b792650 GCC_3.0
  82. Version References:
  83. required from ld-linux.so.2:
  84. 0x0d696911 0x00 22 GLIBC_2.1
  85. 0x0d696913 0x00 21 GLIBC_2.3
  86. 0x0963cf85 0x00 20 GLIBC_PRIVATE
  87. 0x0d696910 0x00 19 GLIBC_2.0
  88. DYNAMIC SYMBOL TABLE:
  89. 000151f0 l d .text 00000000 .text
  90. 000f47a0 l d __libc_freeres_fn 00000000 __libc_freeres_fn
  91. 000f5480 l d __libc_thread_freeres_fn 00000000 __libc_thread_freeres_fn
  92. 000f5620 l d .rodata 00000000 .rodata
  93. 0010f4a0 l d .interp 00000000 .interp
  94. 0010f4b4 l d .eh_frame_hdr 00000000 .eh_frame_hdr
  95. 00111c0c l d .eh_frame 00000000 .eh_frame
  96. 001152d8 l d .ctors 00000000 .ctors
  97. 001152e8 l d .dtors 00000000 .dtors
  98. 001152f0 l d __libc_subfreeres 00000000 __libc_subfreeres
  99. 00115344 l d __libc_atexit 00000000 __libc_atexit
  100. 00115348 l d __libc_thread_subfreeres 00000000 __libc_thread_subfreeres
  101. 00115360 l d .data.rel.ro 00000000 .data.rel.ro
  102. 00117060 l d .data 00000000 .data
  103. 00117f20 l d .bss 00000000 .bss
  104. 000036fc g D *ABS* 00000000 Base __bss_start
  105. 00056ef0 g DF .text 000000db GLIBC_2.2 getwchar
  106. 0002c1e0 w DF .text 00000049 GLIBC_2.0 seed48_r
  107. 000e3fc0 g DF .text 00000068 GLIBC_2.0 xdr_cryptkeyres
  108. 000286a0 w DF .text 00000063 GLIBC_2.0 longjmp
  109. 000579f0 g DF .text 000000fa GLIBC_2.0 putchar
  110. 00069c20 w DF .text 00000041 GLIBC_2.0 stpcpy
  111. 000b89f0 w DF .text 00000129 GLIBC_2.0 tsearch
  112. 00117a10 g DO .data 00000004 GLIBC_2.0 __morecore
  113. 001078f8 g DO .rodata 00000010 GLIBC_2.1 in6addr_any
  114. 00085440 g DF .text 00000054 GLIBC_2.1 ntp_gettime
  115. 000874d0 g DF .text 000000a8 GLIBC_2.0 setgrent
  116. 0005fee0 g DF .text 00000028 GLIBC_2.0 _IO_remove_marker
  117. 000be0a0 w DF .text 0000007d GLIBC_2.3 iswalpha_l
  118. 00028900 g DF .text 0000013c GLIBC_PRIVATE __libc_sigaction
  119. 000281d0 g DF .text 00000048 GLIBC_2.0 __isnanl
  120. 000c60d0 g DF .text 00000033 GLIBC_2.3.2 pthread_cond_wait
  121. 00015700 g DF .text 00000038 (GLIBC_2.0) __cmpdi2
  122. 000ba670 g DF .text 00000036 (GLIBC_2.0) vm86
  123. 000379e0 g DF .text 00000027 GLIBC_2.1 wcstoimax
  124. 00053110 g DF .text 00000041 GLIBC_2.0 putw
  125. 0006f110 w DF .text 00000048 GLIBC_2.0 mbrlen
  126. 00068500 g DF .text 00000020 GLIBC_2.0 strcpy
  127. 000b3be0 g DF .text 00000036 GLIBC_2.0 chroot
  128. 000b7910 g DF .text 0000005e GLIBC_2.0 qgcvt
  129. 00058900 g DF .text 000000db GLIBC_2.2 _IO_wdefault_xsgetn
  130. 0007ad70 g DF .text 0000002d GLIBC_2.0 asctime
  131. 000ee2b0 g DF .text 000000f0 GLIBC_PRIVATE _dl_vsym
  132. 00060a60 g DF .text 00000115 GLIBC_2.0 _IO_link_in
  133. 000ba2c0 g DF .text 00000066 GLIBC_2.2 __sysctl
  134. 000c6110 g DF .text 0000003a GLIBC_2.3.2 pthread_cond_timedwait
  135. 00118d40 g DO .bss 00000004 GLIBC_2.0 __daylight
  136. 000b2c00 g DF .text 0000006a GLIBC_2.1 setrlimit64
  137. 000d30b0 g DF .text 00000040 GLIBC_2.0 rcmd
  138. 000efb40 g DF .text 00000096 GCC_3.0 _Unwind_Find_FDE
  139. 0002a9a0 w DF .text 00000115 GLIBC_2.0 unsetenv
  140. 00117d78 w DO .data 00000004 GLIBC_2.0 __malloc_hook
  141. 0011732c g DO .data 00000004 GLIBC_2.0 h_nerr
  142. 000d8a10 g DF .text 00000226 GLIBC_2.0 authunix_create
  143. 00028850 w DF .text 00000046 GLIBC_2.0 gsignal
  144. 000c5cf0 g DF .text 0000002a GLIBC_2.1 pthread_attr_init
  145. 0005fd90 g DF .text 00000049 GLIBC_2.0 _IO_sputbackc
  146. 00060cc0 g DF .text 000000a5 GLIBC_2.0 _IO_default_finish
  147. 000b4170 g DF .text 0000002c GLIBC_2.2 mkstemp64
  148. 00025bc0 w DF .text 000000f3 GLIBC_2.0 textdomain
  149. 000dfe70 g DF .text 0000002a GLIBC_2.1.1 xdr_longlong_t
  150. 000b9020 g DF .text 0000001d GLIBC_2.0 warnx
  151. 000a28c0 g DF .text 000000f2 GLIBC_2.3.4 regexec
  152. 00069960 w DF .text 0000001e GLIBC_2.0 bcmp
  153. 000f2a60 g DF .text 0000005f (GLIBC_2.0) getgrgid_r
  154. 00028630 g DF .text 00000038 GLIBC_2.0 setjmp
  155. 00020870 g DF .text 0000050d (GLIBC_2.0) localeconv
  156. 00022800 g DF .text 00000017 GLIBC_2.1 __isxdigit_l
  157. 00118640 w DO .bss 00000004 GLIBC_2.0 __malloc_initialize_hook
  158. 00066c00 g DF .text 00000021 GLIBC_2.0 __default_morecore
  159. 000c6000 g DF .text 0000002a (GLIBC_2.0) pthread_cond_broadcast
  160. 000891a0 w DF .text 0000007c GLIBC_2.0 waitpid
  161. 00000000 g DO *ABS* 00000000 GCC_3.0 GCC_3.0
  162. 001157a0 g DO .data.rel.ro 00000100 (GLIBC_2.1) sys_sigabbrev
  163. 000d76d0 g DF .text 000000e1 GLIBC_2.3.3 inet6_option_alloc
  164. 000e1210 g DF .text 00000195 GLIBC_2.0 xdrrec_create
  165. 00000000 g DO *ABS* 00000000 GLIBC_2.2.6 GLIBC_2.2.6
  166. 000e9700 g DF .text 00000015 GLIBC_2.1 fdetach
  167. 000dda40 g DF .text 000000f7 GLIBC_2.0 xprt_register
  168. 000ac030 g DF .text 00000032 (GLIBC_2.1) __lxstat64
  169. 00089890 w DF .text 00000061 GLIBC_2.0 pause
  170. 000b3130 w DF .text 0000003c GLIBC_2.0 ioctl
  171. 000dbe00 g DF .text 00000675 GLIBC_2.0 clnt_broadcast
  172. 000b35c0 w DF .text 00000072 GLIBC_2.0 writev
  173. 00056450 g DF .text 0000012f GLIBC_2.0 _IO_setbuffer
  174. 000ba9e0 g DF .text 00000036 GLIBC_2.0 get_kernel_syms
  175. 000290b0 g DF .text 000000b9 GLIBC_2.0 siginterrupt
  176. 00000000 DO *UND* 00000014 GLIBC_2.0 _r_debug
  177. 000ebd40 g DF .text 00000021 GLIBC_2.1 pututxline
  178. 0005ba90 w DF .text 0000003a GLIBC_2.0 vscanf
  179. 000becc0 g DF .text 000003b8 GLIBC_2.0 putspent
  180. 000cffb0 g DF .text 000000a2 GLIBC_2.0 getservent
  181. 000d5810 g DF .text 0000009c GLIBC_2.1 if_indextoname
  182. 000abfb0 g DF .text 00000032 (GLIBC_2.1) __xstat64
  183. 000865f0 g DF .text 00000071 GLIBC_2.2 getdirentries64
  184. 000280d0 w DF .text 00000082 GLIBC_2.0 ldexpf
  185. 00069660 w DF .text 000000fe GLIBC_2.0 strtok_r
  186. 00058040 g DF .text 0000007c GLIBC_2.2 _IO_wdoallocbuf
  187. 000b7260 g DF .text 0000002e GLIBC_2.0 munlockall
  188. 000cb740 g DF .text 0000008a GLIBC_2.0 __nss_hosts_lookup
  189. 000e9ab0 w DF .text 00000068 GLIBC_2.0 getutid
  190. 000ad4a0 g DF .text 00000035 GLIBC_2.1 chown
  191. 0006e900 g DF .text 00000084 GLIBC_2.0 wcstok
  192. 0008a470 w DF .text 0000000c GLIBC_2.0 getgid
  193. 0008a430 g DF .text 00000008 GLIBC_2.0 __getpid
  194. 000b9cc0 g DF .text 00000132 GLIBC_2.2 getloadavg
  195. 000cc6f0 g DF .text 00000072 GLIBC_2.3.4 __strcpy_chk
  196. 00054ca0 g DF .text 00000113 GLIBC_2.0 _IO_fread
  197. 00060150 g DF .text 0000002d GLIBC_2.2 _IO_list_lock
  198. 00087760 g DF .text 000001de GLIBC_2.1.2 getgrnam_r
  199. 00043ce0 g DF .text 00000039 GLIBC_2.0 printf
  200. 0008b0f0 w DF .text 00000673 GLIBC_2.0 sysconf
  201. 0002dcb0 g DF .text 00000052 GLIBC_2.0 __strtod_internal
  202. 001178e0 g DO .data 00000004 GLIBC_2.0 stdout
  203. 000567f0 w DF .text 000000c4 GLIBC_2.0 vsprintf
  204. 0002b740 w DF .text 00000062 GLIBC_2.0 random
  205. 000b3970 g DF .text 00000094 GLIBC_2.0 __select
  206. 000b4460 g DF .text 00000017 GLIBC_2.0 setfsent
  207. 000abcf0 g DF .text 0000003a GLIBC_2.0 utime
  208. 000f29f0 g DF .text 00000024 (GLIBC_2.1) versionsort64
  209. 000dee30 g DF .text 0000027e GLIBC_2.0 svcudp_enablecache
  210. 00070650 w DF .text 00000052 GLIBC_2.0 wcstof
  211. 00118d40 w DO .bss 00000004 GLIBC_2.0 daylight
  212. 00060de0 g DF .text 00000081 GLIBC_2.0 _IO_default_doallocate
  213. 000f1830 g DF .text 000001bc (GLIBC_2.0) _IO_file_xsputn
  214. 0006d3f0 g DF .text 00000038 GLIBC_2.1.1 __memset_gcn_by2
  215. 0002c080 g DF .text 0000002e GLIBC_2.0 lrand48_r
  216. 0005c8d0 g DF .text 0000003b GLIBC_2.2 __fsetlocking
  217. 000b3790 w DF .text 00000039 GLIBC_2.0 getdtablesize
  218. 00067fd0 g DF .text 00000021 GLIBC_2.0 _obstack_memory_used
  219. 0002dbc0 w DF .text 0000002e GLIBC_2.1 __strtoull_l
  220. 000b2390 g DF .text 00000010 GLIBC_2.0 cfgetospeed
  221. 000e4100 g DF .text 0000003b GLIBC_2.1 xdr_netnamestr
  222. 00057d10 w DF .text 000000f5 GLIBC_2.2 vswprintf
  223. 000ce800 g DF .text 000000b2 GLIBC_2.0 sethostent
  224. 000be020 w DF .text 0000007d GLIBC_2.3 iswalnum_l
  225. 000d0200 g DF .text 000000ad GLIBC_2.0 setservent
  226. 000f2640 g DF .text 0000018f (GLIBC_2.1) readdir64_r
  227. 000d1ab0 g DF .text 00000060 GLIBC_2.0 __ivaliduser
  228. 00021520 w DF .text 00000159 GLIBC_2.3 duplocale
  229. 000e9580 g DF .text 0000001f GLIBC_2.1 isastream
  230. 0005d0b0 g DF .text 0000003b GLIBC_2.0 putc_unlocked
  231. 0008a810 g DF .text 000000dd GLIBC_2.0 getlogin
  232. 00057f60 g DF .text 00000033 GLIBC_2.2 _IO_least_wmarker
  233. 000c5c90 g DF .text 0000002a GLIBC_2.0 pthread_attr_destroy
  234. 000540c0 g DF .text 00000251 GLIBC_2.1 _IO_fdopen
  235. 000bb060 w DF .text 00000078 GLIBC_2.0 recv
  236. 000ba030 g DF .text 0000003c GLIBC_2.3 llistxattr
  237. 000baee0 w DF .text 00000078 GLIBC_2.0 connect
  238. 000eede0 g DF .text 0000004e GLIBC_2.0 __register_frame
  239. 00055ec0 g DF .text 0000008b GLIBC_2.1 _IO_popen
  240. 000acf00 g DF .text 00000125 GLIBC_2.1 lockf64
  241. 000567f0 g DF .text 000000c4 GLIBC_2.0 _IO_vsprintf
  242. 00086070 g DF .text 000000cb GLIBC_2.2 readdir64
  243. 000be3a0 w DF .text 0000007d GLIBC_2.3 iswprint_l
  244. 00056710 w DF .text 000000d4 GLIBC_2.0 ungetc
  245. 0002c5b0 g DF .text 00000059 GLIBC_2.0 __strtoull_internal
  246. 000ebd10 g DF .text 00000021 GLIBC_2.1 getutxline
  247. 000dd320 g DF .text 00000036 GLIBC_2.0 svcerr_auth
  248. 000b2a30 g DF .text 000000a9 GLIBC_2.1 tcgetsid
  249. 000d4570 g DF .text 00000052 GLIBC_2.0 endnetgrent
  250. 00087340 g DF .text 000000db GLIBC_2.1.2 getgrent_r
  251. 00000000 w D *UND* 00000000 __pthread_once
  252. 00022700 g DF .text 00000015 GLIBC_2.1 __iscntrl_l
  253. 00055a50 g DF .text 0000017d GLIBC_2.1 _IO_proc_close
  254. 0002dbc0 w DF .text 0000002e GLIBC_2.3 strtoull_l
  255. 00086560 g DF .text 00000024 GLIBC_2.2 versionsort64
  256. 000d79a0 g DF .text 0000014d GLIBC_2.3.4 setipv4sourcefilter
  257. 000e9b20 w DF .text 00000068 GLIBC_2.0 getutline
  258. 00054320 g DF .text 000000eb GLIBC_2.0 _IO_fflush
  259. 000582d0 g DF .text 00000082 GLIBC_2.2 _IO_seekwmark
  260. 000cc6a0 g DF .text 00000047 GLIBC_2.3.4 __strcat_chk
  261. 000d4b30 g DF .text 00000165 GLIBC_2.1.2 getaliasbyname_r
  262. 000d0980 g DF .text 00000165 GLIBC_2.1.2 getrpcbynumber_r
  263. 00116840 g DO .data.rel.ro 00000054 GLIBC_2.2 _IO_wfile_jumps
  264. 00029200 g DF .text 00000034 GLIBC_2.0 sigemptyset
  265. 000be2a0 w DF .text 0000007d GLIBC_2.3 iswlower_l
  266. 00015430 w DF .text 00000016 GLIBC_2.1 gnu_get_libc_version
  267. 0005c770 g DF .text 0000002c GLIBC_2.2 __fbufsize
  268. 000b5190 w DF .text 000000ce GLIBC_2.0 utimes
  269. 000ba990 g DF .text 00000042 GLIBC_2.3.2 epoll_wait
  270. 000291d0 g DF .text 00000022 GLIBC_2.0 __sigdelset
  271. 000579a0 g DF .text 0000004f GLIBC_2.2 putwchar_unlocked
  272. 0005ad00 g DF .text 00000068 GLIBC_2.0 _IO_ferror
  273. 000687f0 g DF .text 000000b2 GLIBC_2.0 strerror
  274. 0008b770 w DF .text 00000201 GLIBC_2.0 fpathconf
  275. 000e9690 g DF .text 00000048 GLIBC_2.1 putpmsg
  276. 000540c0 g DF .text 00000251 GLIBC_2.1 fdopen
  277. 000ddfd0 g DF .text 00000043 GLIBC_2.0 svc_exit
  278. 0006e270 w DF .text 000000db GLIBC_2.2 memrchr
  279. 00068780 w DF .text 00000064 GLIBC_2.0 strndup
  280. 0008a460 w DF .text 0000000c GLIBC_2.0 geteuid
  281. 000ba0b0 g DF .text 00000048 GLIBC_2.3 lsetxattr
  282. 000c6ed0 g DF .text 000002b4 GLIBC_2.0 inet_pton
  283. 000bb960 g DF .text 00000055 GLIBC_2.2 msgctl
  284. 000f1520 g DF .text 00000101 (GLIBC_2.0) fsetpos
  285. 0006f110 g DF .text 00000048 GLIBC_2.0 __mbrlen
  286. 00065ed0 w DF .text 00000199 GLIBC_2.0 malloc_get_state
  287. 0006af40 w DF .text 000000a4 GLIBC_2.0 argz_add_sep
  288. 0006e120 g DF .text 00000071 GLIBC_2.1.1 __strncpy_by2
  289. 000a4490 g DF .text 00000036 GLIBC_2.0 __sched_get_priority_max
  290. 00115480 g DO .data.rel.ro 000001f8 GLIBC_2.3 sys_errlist
  291. 00055bd0 g DF .text 000002e9 GLIBC_2.1 _IO_proc_open
  292. 000e3d50 g DF .text 0000008f GLIBC_2.1 key_secretkey_is_set
  293. 000d4710 g DF .text 000000db GLIBC_2.1.2 getaliasent_r
  294. 00029590 g DF .text 00000067 GLIBC_PRIVATE __libc_allocate_rtsig_private
  295. 00036f80 g DF .text 000000a4 GLIBC_2.0 __xpg_basename
  296. 00028ec0 w DF .text 00000019 GLIBC_2.0 sigpause
  297. 00069980 g DF .text 0000008d GLIBC_2.0 memmove
  298. 000b9e30 g DF .text 00000042 GLIBC_2.3 fgetxattr
  299. 000b8000 g DF .text 00000045 GLIBC_2.0 hsearch
  300. 0006ddf0 g DF .text 0000003b GLIBC_2.1.1 __strpbrk_c2
  301. 0011a820 g DO .bss 00000004 GLIBC_2.0 __rcmd_errstr
  302. 000c6400 g DF .text 00000034 GLIBC_2.0 pthread_exit
  303. 000a4310 g DF .text 00000045 GLIBC_2.0 getopt_long
  304. 000e4a10 g DF .text 000001c6 GLIBC_2.1 authdes_getucred
  305. 0005c8a0 g DF .text 0000002c GLIBC_2.2 __fpending
  306. 00029880 g DF .text 00000074 GLIBC_2.1 sighold
  307. 000ceed0 g DF .text 000000a9 GLIBC_2.0 endnetent
  308. 00043d20 w DF .text 0000003b GLIBC_2.0 snprintf
  309. 000b6d40 g DF .text 0000004d GLIBC_2.0 syscall
  310. 000610f0 g DF .text 000000be GLIBC_2.0 _IO_default_xsgetn
  311. 0008acd0 w DF .text 000001ea GLIBC_2.0 pathconf
  312. 00069660 g DF .text 000000fe GLIBC_2.0 __strtok_r
  313. 000b4d70 g DF .text 0000002a GLIBC_2.2 __endmntent
  314. 000d1f40 g DF .text 0000009f GLIBC_2.2 ruserok_af
  315. 000db810 g DF .text 0000013c GLIBC_2.0 pmap_set
  316. 000b6fd0 w DF .text 0000003a GLIBC_2.0 munmap
  317. 00022700 w DF .text 00000015 GLIBC_2.3 iscntrl_l
  318. 000a43a0 g DF .text 0000003a GLIBC_2.0 __sched_getparam
  319. 0005ad70 w DF .text 00000027 GLIBC_2.0 fileno_unlocked
  320. 000bfab0 w DF .text 0000007a GLIBC_2.0 ulckpwdf
  321. 000a43a0 w DF .text 0000003a GLIBC_2.0 sched_getparam
  322. 000afea0 g DF .text 00000032 GLIBC_2.0 fts_set
  323. 0007db40 w DF .text 0000056c GLIBC_2.1 getdate_r
  324. 000286a0 w DF .text 00000063 GLIBC_2.0 _longjmp
  325. 000b57a0 g DF .text 000004b7 GLIBC_2.0 getttyent
  326. 000703b0 g DF .text 00000058 GLIBC_2.1 wcstoull
  327. 0011a824 g DO .bss 00000004 GLIBC_2.0 rexecoptions
  328. 0005c5f0 g DF .text 0000017a GLIBC_2.1 ftello64
  329. 000caf70 g DF .text 000006a4 GLIBC_2.2.2 __nss_hostname_digits_dots
  330. 000e7010 g DF .text 00000068 GLIBC_2.1 xdr_uint8_t
  331. 000e08f0 g DF .text 00000032 GLIBC_2.0 xdrmem_create
  332. 00069ba0 g DF .text 00000010 GLIBC_2.0 __ffs
  333. 00029bb0 g DF .text 00000028 GLIBC_2.0 atol
  334. 000bdfb0 g DF .text 0000006d GLIBC_2.1 __towupper_l
  335. 00027bb0 g DF .text 00000027 GLIBC_2.0 __isnan
  336. 000dcab0 g DF .text 00000033 GLIBC_2.0 xdr_des_block
  337. 000f23c0 g DF .text 0000006f (GLIBC_2.0) _IO_file_init
  338. 000d44a0 g DF .text 00000034 GLIBC_PRIVATE __internal_setnetgrent
  339. 000e2660 g DF .text 0000002a GLIBC_2.1 ecb_crypt
  340. 000acaa0 w DF .text 0000007c GLIBC_2.0 __write
  341. 000dcaf0 g DF .text 00000062 GLIBC_2.0 xdr_opaque_auth
  342. 000f1100 g DF .text 00000088 (GLIBC_2.0) popen
  343. 000661b0 w DF .text 00000225 GLIBC_2.0 malloc_stats
  344. 0005fa90 g DF .text 0000002a GLIBC_2.0 _IO_sgetn
  345. 00070530 g DF .text 00000052 GLIBC_2.0 __wcstold_internal
  346. 000b4390 g DF .text 00000030 GLIBC_2.0 endfsent
  347. 000d38f0 g DF .text 00000445 GLIBC_2.0 ruserpass
  348. 0005d000 w DF .text 00000028 GLIBC_2.0 getc_unlocked
  349. 0011a5a0 g DO .bss 00000004 GLIBC_2.0 _nl_domain_bindings
  350. 00086f30 g DF .text 00000125 GLIBC_2.0 getgrgid
  351. 000890b0 w DF .text 00000036 GLIBC_2.0 times
  352. 000d9240 g DF .text 000000dd GLIBC_2.0 clnt_spcreateerror
  353. 000ac0f0 w DF .text 0000012f GLIBC_2.1 statfs64
  354. 00027fb0 w DF .text 0000009a GLIBC_2.0 modff
  355. 0011a6b8 g DO .bss 00000004 GLIBC_2.0 re_syntax_options
  356. 000afe70 g DF .text 00000024 GLIBC_2.1 ftw64
  357. 0002be50 g DF .text 00000037 GLIBC_2.0 nrand48
  358. 000f3b50 g DF .text 00000031 (GLIBC_2.0) chown
  359. 00037980 g DF .text 00000027 GLIBC_2.1 strtoimax
  360. 0011a6e0 g DO .bss 00000004 GLIBC_2.1 argp_program_bug_address
  361. 000cf210 g DF .text 00000125 GLIBC_2.0 getprotobynumber
  362. 000d85d0 g DF .text 0000016c GLIBC_2.0 authunix_create_default
  363. 000d3ed0 g DF .text 000001d2 GLIBC_PRIVATE __internal_getnetgrent_r
  364. 000d93b0 g DF .text 00000090 GLIBC_2.0 clnt_perrno
  365. 0002a780 g DF .text 000000ef GLIBC_2.0 getenv
  366. 0005d470 g DF .text 0000003b GLIBC_2.0 _IO_file_seek
  367. 0006e580 w DF .text 00000064 GLIBC_2.0 wcslen
  368. 000bd4c0 w DF .text 000000d5 GLIBC_2.0 iswcntrl
  369. 000be5a0 w DF .text 0000006d GLIBC_2.3 towlower_l
  370. 000cc440 g DF .text 00000005 GLIBC_2.2 __cyg_profile_func_exit
  371. 000ab0a0 w DF .text 00000094 GLIBC_2.1 pwrite64
  372. 000ac7a0 w DF .text 0000003a GLIBC_2.0 fchmod
  373. 000f21e0 g DF .text 00000063 (GLIBC_2.0) _IO_file_setbuf
  374. 00087190 g DF .text 000001ac GLIBC_2.1 putgrent
  375. 00104d78 g DO .rodata 00000004 (GLIBC_2.1) _sys_nerr
  376. 000bd920 w DF .text 000000d5 GLIBC_2.0 iswpunct
  377. 000674f0 g DF .text 000001e5 GLIBC_2.0 mtrace
  378. 000b4e30 g DF .text 0000035f GLIBC_2.2 __getmntent_r
  379. 000ba530 g DF .text 00000013 GLIBC_2.0 setfsuid
  380. 0002ddd0 w DF .text 00000052 GLIBC_2.0 strtold
  381. 0008a480 w DF .text 0000000c GLIBC_2.0 getegid
  382. 00022640 g DF .text 0000007b GLIBC_2.0 isblank
  383. 00115680 g DO .data.rel.ro 00000104 GLIBC_2.3.3 sys_siglist
  384. 000ebc80 g DF .text 00000017 GLIBC_2.1 setutxent
  385. 0005b7e0 g DF .text 00000038 GLIBC_2.0 setlinebuf
  386. 0006a7d0 g DF .text 000000c6 GLIBC_2.1 __rawmemchr
  387. 000b2f80 g DF .text 0000003c GLIBC_2.0 setpriority
  388. 0002b2b0 g DF .text 0000000d GLIBC_2.0 labs
  389. 000702f0 g DF .text 00000058 GLIBC_2.1 wcstoll
  390. 00054a80 g DF .text 000000cc GLIBC_2.2 fopencookie
  391. 000ab140 g DF .text 00000034 GLIBC_2.2 posix_spawn_file_actions_init
  392. 000b2f30 g DF .text 00000042 GLIBC_2.0 getpriority
  393. 000bd300 w DF .text 000000d5 GLIBC_2.0 iswalpha
  394. 000557d0 w DF .text 0000016f GLIBC_2.0 gets
  395. 000f2570 g DF .text 000000cb (GLIBC_2.1) readdir64
  396. 000c85f0 g DF .text 00000029 GLIBC_2.2 __res_ninit
  397. 000babe0 w DF .text 00000036 GLIBC_2.0 personality
  398. 00000000 w D *UND* 00000000 __pthread_key_create
  399. 000bd3e0 w DF .text 000000d5 GLIBC_2.1 iswblank
  400. 0005fe70 g DF .text 0000006a GLIBC_2.0 _IO_init_marker
  401. 0006a740 g DF .text 00000082 GLIBC_2.0 memmem
  402. 0002c370 g DF .text 00000059 GLIBC_2.0 __strtol_internal
  403. 0005f670 g DF .text 0000008f GLIBC_2.1 _IO_file_finish
  404. 00000000 g DO *ABS* 00000000 GLIBC_2.3.4 GLIBC_2.3.4
  405. 0008a710 w DF .text 00000035 GLIBC_2.0 getresuid
  406. 00029e20 g DF .text 0000006c GLIBC_2.0 bsearch
  407. 00029900 g DF .text 00000074 GLIBC_2.1 sigrelse
  408. 000bc350 g DF .text 000001c1 GLIBC_2.0 __monstartup
  409. 000b4250 g DF .text 0000003c GLIBC_2.0 usleep
  410. 000f3b90 g DF .text 0000002b (GLIBC_2.1) nftw
  411. 000f2490 g DF .text 000000d5 (GLIBC_2.0) _IO_file_close_it
  412. 000ce670 g DF .text 000000da GLIBC_2.1.2 gethostent_r
  413. 0006edd0 w DF .text 00000034 GLIBC_2.2 wmempcpy
  414. 000cbf50 w DF .text 000002bd GLIBC_2.1 backtrace_symbols
  415. 00117d88 g DO .data 00000008 GLIBC_2.0 __tzname
  416. 00058490 g DF .text 00000054 GLIBC_2.2 __woverflow
  417. 00117960 g DO .data 00000050 GLIBC_2.0 _IO_stdout_
  418. 000e4610 g DF .text 0000005d GLIBC_2.1 getnetname
  419. 00089a40 w DF .text 00000068 GLIBC_2.0 execve
  420. 00117560 g DO .data 00000098 GLIBC_2.1 _IO_2_1_stdout_
  421. 000cf7b0 g DF .text 00000125 GLIBC_2.0 getprotobyname
  422. 00029560 g DF .text 00000027 GLIBC_2.1 __libc_current_sigrtmax
  423. 00070410 g DF .text 00000059 GLIBC_2.0 __wcstoull_internal
  424. 000568c0 w DF .text 00000093 GLIBC_2.0 vsscanf
  425. 000bba10 g DF .text 0000004f GLIBC_2.0 semget
  426. 000c5fd0 g DF .text 0000002a GLIBC_2.0 pthread_condattr_init
  427. 000e6ec0 g DF .text 00000069 GLIBC_2.1 xdr_int16_t
  428. 0006adb0 w DF .text 00000122 GLIBC_2.0 argz_insert
  429. 0008a430 w DF .text 00000008 GLIBC_2.0 getpid
  430. 000b3760 w DF .text 00000026 GLIBC_2.0 getpagesize
  431. 00000000 w D *UND* 00000000 __pthread_rwlock_wrlock
  432. 000d74b0 g DF .text 00000033 GLIBC_2.3.3 inet6_option_init
  433. 0002bfe0 w DF .text 00000099 GLIBC_2.0 erand48_r
  434. 000ba070 g DF .text 0000003a GLIBC_2.3 lremovexattr
  435. 000ebda0 g DF .text 0000002a GLIBC_2.1 updwtmpx
  436. 00035000 w DF .text 00000027 GLIBC_2.1 __strtold_l
  437. 000dfdb0 g DF .text 000000bd GLIBC_2.1.1 xdr_u_hyper
  438. 00054410 g DF .text 000001b8 GLIBC_2.2 _IO_fgetpos
  439. 0006b410 g DF .text 00000042 GLIBC_2.0 envz_get
  440. 000b8050 g DF .text 000001e0 GLIBC_2.0 hsearch_r
  441. 000ad070 g DF .text 0000003a GLIBC_2.0 __dup2
  442. 0002a630 g DF .text 00000147 GLIBC_2.0 qsort
  443. 000d44e0 w DF .text 00000086 GLIBC_2.0 getnetgrent_r
  444. 000d47f0 g DF .text 000000a6 GLIBC_2.0 endaliasent
  445. 0006e870 g DF .text 00000035 GLIBC_2.0 wcsrchr
  446. 000ad4e0 w DF .text 00000035 GLIBC_2.0 fchown
  447. 000b5430 w DF .text 0000003a GLIBC_2.0 truncate
  448. 0002bae0 w DF .text 00000103 GLIBC_2.0 setstate_r
  449. 00052290 g DF .text 00000024 GLIBC_2.0 fscanf
  450. 000e3ae0 g DF .text 00000073 GLIBC_2.1 key_decryptsession
  451. 000545d0 w DF .text 00000151 GLIBC_2.0 fgets
  452. 00060640 g DF .text 00000177 GLIBC_2.0 _IO_flush_all_linebuffered
  453. 000b9af0 g DF .text 000000cb GLIBC_2.0 dirname
  454. 000f2c20 g DF .text 00000e58 (GLIBC_2.1) glob64
  455. 00073ea0 w DF .text 00000037 GLIBC_2.1 __wcstod_l
  456. 00057bd0 g DF .text 00000036 GLIBC_2.2 vwprintf
  457. 000bf2c0 g DF .text 00000165 GLIBC_2.1.2 getspnam_r
  458. 000ced40 g DF .text 000000a4 GLIBC_2.0 getnetent
  459. 0002c4f0 g DF .text 00000059 GLIBC_2.0 __strtoll_internal
  460. 000f2a20 g DF .text 00000037 (GLIBC_2.0) getgrent_r
  461. 000ba280 g DF .text 0000003a GLIBC_2.3.4 vm86
  462. 000bd140 w DF .text 000000d5 GLIBC_2.0 iswxdigit
  463. 0005a4f0 g DF .text 0000014c GLIBC_2.2 _IO_wdo_write
  464. 000b3af0 g DF .text 000000a2 GLIBC_PRIVATE __libc_pselect
  465. 0006e350 g DF .text 000000ac GLIBC_2.3.4 __xpg_strerror_r
  466. 000d7590 g DF .text 000000c1 GLIBC_2.3.3 inet6_option_find
  467. 00055380 w DF .text 0000024e GLIBC_2.0 __getdelim
  468. 0006d650 g DF .text 0000003f GLIBC_2.1.1 __strcmp_gg
  469. 000aca20 w DF .text 0000007c GLIBC_2.0 __read
  470. 000b9380 w DF .text 00000185 GLIBC_2.0 error_at_line
  471. 0006b620 g DF .text 000000fb GLIBC_2.0 envz_add
  472. 000beb20 g DF .text 00000195 GLIBC_2.0 fgetspent
  473. 000cea20 g DF .text 000001d0 GLIBC_2.1.2 getnetbyaddr_r
  474. 000b7fd0 g DF .text 0000002d GLIBC_2.0 hcreate
  475. 00087fe0 w DF .text 000000d2 GLIBC_2.0 getpw
  476. 000e3be0 g DF .text 0000005a GLIBC_2.1 key_setsecret
  477. 000abff0 g DF .text 00000032 (GLIBC_2.1) __fxstat64
  478. 000b1610 g DF .text 0000005f GLIBC_2.3.3 posix_fadvise64
  479. 000ccca0 g DF .text 000000ff GLIBC_2.3.4 __fprintf_chk
  480. 00053270 g DF .text 0000002d GLIBC_2.0 _IO_funlockfile
  481. 000f3e40 g DF .text 0000005f (GLIBC_2.0) getspnam_r
  482. 000e3900 g DF .text 0000005f GLIBC_2.1 key_get_conv
  483. 000c7280 g DF .text 00000287 GLIBC_2.0 inet_nsap_addr
  484. 000ba100 g DF .text 0000003a GLIBC_2.3 removexattr
  485. 0005b220 w DF .text 000000cc GLIBC_2.0 getc
  486. 000227e0 w DF .text 00000017 GLIBC_2.3 isupper_l
  487. 00057170 g DF .text 000000a2 GLIBC_2.2 fgetws_unlocked
  488. 000bac60 w DF .text 00000048 GLIBC_2.0 prctl
  489. 000f3bc0 g DF .text 0000002b (GLIBC_2.1) nftw64
  490. 000be4a0 g DF .text 0000007d GLIBC_2.1 __iswspace_l
  491. 000ad1e0 w DF .text 00000036 GLIBC_2.0 fchdir
  492. 000580c0 g DF .text 00000075 GLIBC_2.2 _IO_switch_to_wget_mode
  493. 000bb840 w DF .text 000000c4 GLIBC_2.0 msgrcv
  494. 000bbb20 g DF .text 00000066 GLIBC_2.0 shmat
  495. 00117d7c w DO .data 00000004 GLIBC_2.0 __realloc_hook
  496. 000ba570 g DF .text 00000028 GLIBC_2.3.3 gnu_dev_major
  497. 000a27a0 w DF .text 00000048 GLIBC_2.0 re_search_2
  498. 00069ef0 g DF .text 00000046 GLIBC_2.0 memcpy
  499. 00052700 g DF .text 0000009d GLIBC_2.1 tmpfile
  500. 0007d9a0 w DF .text 0000003c GLIBC_2.0 setitimer
  501. 0006e990 w DF .text 0000012c GLIBC_2.1 wcswcs
  502. 000601e0 g DF .text 000000ee GLIBC_2.0 _IO_default_xsputn
  503. 00104d78 g DO .rodata 00000004 (GLIBC_2.1) sys_nerr
  504. 001179c0 g DO .data 00000050 GLIBC_2.0 _IO_stderr_
  505. 000f2bc0 g DF .text 0000005f (GLIBC_2.0) getpwuid_r
  506. 00029560 g DF .text 00000027 GLIBC_PRIVATE __libc_current_sigrtmax_private
  507. 000dbb10 g DF .text 000001ae GLIBC_2.0 pmap_getport
  508. 00056580 w DF .text 0000018f GLIBC_2.0 setvbuf
  509. 0006aad0 w DF .text 0000003e GLIBC_2.0 argz_count
  510. 00089da0 g DF .text 00000195 GLIBC_2.0 execl
  511. 0006d500 g DF .text 00000031 GLIBC_2.1.1 __mempcpy_byn
  512. 00085950 g DF .text 0000007a GLIBC_2.0 seekdir
  513. 00055210 g DF .text 00000167 GLIBC_2.0 _IO_fwrite
  514. 000a4510 w DF .text 0000003a GLIBC_2.0 sched_rr_get_interval
  515. 0005b5a0 g DF .text 00000021 GLIBC_2.1 pclose
  516. 0005fde0 g DF .text 0000004c GLIBC_2.0 _IO_sungetc
  517. 000bb460 g DF .text 00000050 GLIBC_2.0 isfdtype
  518. 00022820 g DF .text 00000011 GLIBC_2.1 __tolower_l
  519. 0008c350 g DF .text 00000e58 GLIBC_2.0 glob
  520. 000dd1e0 g DF .text 0000004e GLIBC_2.0 svc_sendreply
  521. 000ebce0 g DF .text 00000021 GLIBC_2.1 getutxid
  522. 00052410 g DF .text 000000c8 GLIBC_2.0 perror
  523. 0001dc90 g DF .text 00000016 GLIBC_PRIVATE __gconv_get_cache
  524. 000db460 g DF .text 0000002d GLIBC_2.0 _rpc_dtablesize
  525. 000e3b60 g DF .text 00000073 GLIBC_2.1 key_encryptsession
  526. 00000000 g DO *ABS* 00000000 GLIBC_2.1.1 GLIBC_2.1.1
  527. 000c60a0 g DF .text 0000002a (GLIBC_2.0) pthread_cond_signal
  528. 0006a600 g DF .text 0000003e GLIBC_2.0 swab
  529. 00022580 g DF .text 00000015 GLIBC_2.1 __isblank_l
  530. 0002d5c0 w DF .text 0000002e GLIBC_2.3 strtoll_l
  531. 000ad0f0 w DF .text 00000078 GLIBC_2.0 creat
  532. 00088970 g DF .text 000001de GLIBC_2.1.2 getpwuid_r
  533. 000adf50 w DF .text 0000003c GLIBC_2.0 readlink
  534. 00067440 g DF .text 00000005 GLIBC_2.0 tr_break
  535. 000b2b20 g DF .text 00000032 GLIBC_2.2 setrlimit
  536. 0006dbb0 g DF .text 000000b2 GLIBC_2.1.1 __stpcpy_small
  537. 00027f20 w DF .text 00000024 GLIBC_2.0 isinff
  538. 000b3970 w DF .text 00000094 GLIBC_PRIVATE __libc_select
  539. 00059e40 g DF .text 00000233 GLIBC_2.2 _IO_wfile_overflow
  540. 00065960 g DF .text 00000225 GLIBC_2.0 __libc_memalign
  541. 000c6150 g DF .text 00000036 GLIBC_2.0 pthread_equal
  542. 0005c7f0 g DF .text 00000013 GLIBC_2.2 __fwritable
  543. 00055f50 w DF .text 0000017f GLIBC_2.0 puts
  544. 000d4670 g DF .text 00000098 GLIBC_2.0 getnetgrent
  545. 0002b1e0 g DF .text 000000b6 GLIBC_2.1.3 __cxa_finalize
  546. 000611b0 g DF .text 00000067 GLIBC_2.0 __overflow
  547. 0006d480 g DF .text 00000033 GLIBC_2.1.1 __mempcpy_by4
  548. 000b8ff0 g DF .text 00000022 GLIBC_2.0 errx
  549. 000ad070 w DF .text 0000003a GLIBC_2.0 dup2
  550. 000f09a0 g DF .text 00000095 (GLIBC_2.0) _IO_fopen
  551. 00029530 g DF .text 00000027 GLIBC_2.1 __libc_current_sigrtmin
  552. 00022250 g DF .text 0000007d GLIBC_2.0 islower
  553. 00070350 g DF .text 00000059 GLIBC_2.0 __wcstoll_internal
  554. 000b95d0 g DF .text 00000068 GLIBC_2.0 ustat
  555. 0006f160 w DF .text 0000024b GLIBC_2.0 mbrtowc
  556. 000bb660 g DF .text 0000002c GLIBC_2.2.4 sockatmark
  557. 00023d90 w DF .text 00000041 GLIBC_2.2 dngettext
  558. 000b2940 g DF .text 00000033 GLIBC_2.0 tcflush
  559. 00089bf0 g DF .text 000001ad GLIBC_2.0 execle
  560. 00056960 g DF .text 000001a3 GLIBC_2.2 fgetpos64
  561. 00053200 g DF .text 0000002d GLIBC_2.0 _IO_flockfile
  562. 0005c820 g DF .text 00000076 GLIBC_2.2 __fpurge
  563. 00021f60 g DF .text 00000068 GLIBC_2.0 tolower
  564. 0008a450 w DF .text 0000000c GLIBC_2.0 getuid
  565. 000b6010 g DF .text 000002f6 GLIBC_2.0 getpass
  566. 0006aa80 w DF .text 00000047 GLIBC_2.0 argz_add
  567. 00022ec0 w DF .text 00000023 GLIBC_2.0 dgettext
  568. 00027b80 g DF .text 0000002d GLIBC_2.0 __isinf
  569. 000858d0 g DF .text 00000077 GLIBC_2.0 rewinddir
  570. 000b2980 g DF .text 00000077 GLIBC_2.0 tcsendbreak
  571. 000bd680 w DF .text 000000d5 GLIBC_2.0 iswlower
  572. 0006dee0 g DF .text 00000063 GLIBC_2.1.1 __strsep_2c
  573. 0002bfb0 g DF .text 0000002e GLIBC_2.0 drand48_r
  574. 00035550 w DF .text 0000007d GLIBC_2.0 system
  575. 0005ac90 w DF .text 00000068 GLIBC_2.0 feof
  576. 00057010 g DF .text 00000151 GLIBC_2.2 fgetws
  577. 000b4870 w DF .text 00000083 GLIBC_2.0 hasmntopt
  578. 000dd0f0 g DF .text 00000039 GLIBC_2.2.3 __rpc_thread_svc_max_pollfd
  579. 0005e190 g DF .text 00000032 GLIBC_2.0 _IO_file_close
  580. 0006e820 g DF .text 00000041 GLIBC_2.0 wcspbrk
  581. 0006aee0 w DF .text 00000054 GLIBC_2.0 argz_stringify
  582. 000701d0 g DF .text 00000058 GLIBC_2.0 wcstol
  583. 00022820 w DF .text 00000011 GLIBC_2.3 tolower_l
  584. 00067d40 g DF .text 000000ba GLIBC_2.0 _obstack_begin_1
  585. 000dde40 g DF .text 0000009d GLIBC_2.0 svcraw_create
  586. 00065780 g DF .text 000001d4 GLIBC_2.0 malloc
  587. 0011a5a4 g DO .bss 00000004 GLIBC_2.0 _nl_msg_cat_cntr
  588. 00053160 g DF .text 00000057 GLIBC_2.0 remove
  589. 000ac840 w DF .text 0000007c GLIBC_2.0 __open
  590. 0005fff0 g DF .text 00000036 GLIBC_2.0 _IO_unsave_markers
  591. 000155f0 g DF .text 0000002a (GLIBC_2.0) __floatdidf
  592. 000ade90 w DF .text 00000032 GLIBC_2.0 isatty
  593. 000ab520 g DF .text 0000004e GLIBC_2.2 posix_spawn
  594. 000b23a0 g DF .text 00000018 GLIBC_2.0 cfgetispeed
  595. 000bdf30 w DF .text 0000007d GLIBC_2.3 iswxdigit_l
  596. 00022ec0 g DF .text 00000023 GLIBC_2.0 __dgettext
  597. 000a2a10 g DF .text 000003af GLIBC_2.0 confstr
  598. 0006e010 g DF .text 00000045 GLIBC_2.1.1 __strcat_c
  599. 000bda00 w DF .text 000000d5 GLIBC_2.0 iswspace
  600. 00000000 g DO *ABS* 00000000 GLIBC_2.1 GLIBC_2.1
  601. 00088630 g DF .text 000000a6 GLIBC_2.0 endpwent
  602. 000286a0 w DF .text 00000063 GLIBC_2.0 siglongjmp
  603. 00054dc0 g DF .text 00000131 GLIBC_2.2 fsetpos
  604. 000c5f20 g DF .text 00000033 GLIBC_2.0 pthread_attr_getscope
  605. 000dea50 g DF .text 000002a5 GLIBC_2.0 svctcp_create
  606. 001174c0 g DO .data 00000098 GLIBC_2.1 _IO_2_1_stdin_
  607. 00089640 w DF .text 0000024e GLIBC_2.0 sleep
  608. 000f0a40 g DF .text 000001c7 (GLIBC_2.0) fdopen
  609. 0011a6bc g DO .bss 00000004 GLIBC_2.0 optarg
  610. 00022780 g DF .text 00000017 GLIBC_2.1 __isprint_l
  611. 000a43e0 w DF .text 0000003c GLIBC_2.0 sched_setscheduler
  612. 00043da0 g DF .text 00000034 GLIBC_2.1 __asprintf
  613. 000688b0 g DF .text 00000154 GLIBC_2.0 __strerror_r
  614. 00069b60 g DF .text 00000032 GLIBC_2.0 __bzero
  615. 0006ee10 w DF .text 0000017c GLIBC_2.0 btowc
  616. 000bada0 g DF .text 00000036 GLIBC_2.0 sysinfo
  617. 00027e80 w DF .text 00000083 GLIBC_2.0 ldexp
  618. 0011a6d0 g DO .bss 00000004 GLIBC_2.0 loc2
  619. 0002c550 g DF .text 00000058 GLIBC_2.0 strtoll
  620. 0005bb50 w DF .text 000000f5 GLIBC_2.0 vsnprintf
  621. 00080aa0 g DF .text 00001e8b GLIBC_2.3 __strftime_l
  622. 000e3f30 g DF .text 0000008f GLIBC_2.1 xdr_unixcred
  623. 00015be0 g DF .text 00000113 GLIBC_2.1 iconv_open
  624. 00115480 g DO .data.rel.ro 000001ec (GLIBC_2.0) sys_errlist
  625. 0002c5b0 g DF .text 00000059 (GLIBC_2.0) __strtouq_internal
  626. 000e2410 g DF .text 0000006b GLIBC_2.1 authdes_create
  627. 0007a030 w DF .text 00000063 GLIBC_2.3 wcscasecmp_l
  628. 000ce0c0 g DF .text 0000027e GLIBC_2.1.2 gethostbyname2_r
  629. 0006d580 g DF .text 0000003c GLIBC_2.1.1 __strncpy_gg
  630. 0005b3d0 g DF .text 000000c2 GLIBC_2.0 open_memstream
  631. 000e4180 g DF .text 00000032 GLIBC_2.0 xdr_keystatus
  632. 0011a4cc g DO .bss 00000004 GLIBC_PRIVATE _dl_open_hook
  633. 000bb0e0 w DF .text 00000078 GLIBC_2.0 recvfrom
  634. 00117dd4 g DO .data 00000014 GLIBC_2.0 h_errlist
  635. 000b2850 w DF .text 000000a8 GLIBC_2.0 tcdrain
  636. 000dd280 g DF .text 00000042 GLIBC_2.0 svcerr_decode
  637. 000e0480 g DF .text 00000166 GLIBC_2.0 xdr_bytes
  638. 000ede60 g DF .text 00000033 GLIBC_2.1 _dl_mcount_wrapper
  639. 000379b0 g DF .text 00000027 GLIBC_2.1 strtoumax
  640. 000f0a40 g DF .text 000001c7 (GLIBC_2.0) _IO_fdopen
  641. 000ac070 w DF .text 0000003a GLIBC_2.0 statfs
  642. 000e6ca0 g DF .text 000000d3 GLIBC_2.1.1 xdr_int64_t
  643. 0006e6b0 g DF .text 000000bf GLIBC_2.0 wcsncmp
  644. 00089ab0 g DF .text 000000f1 GLIBC_2.0 fexecve
  645. 000c9960 g DF .text 00000360 GLIBC_PRIVATE __nss_lookup_function
  646. 000bac20 g DF .text 0000003a GLIBC_2.2.1 pivot_root
  647. 000ebdd0 g DF .text 00000033 GLIBC_2.1.1 getutmpx
  648. 0006d9a0 g DF .text 00000036 GLIBC_2.1.1 __strstr_cg
  649. 00000000 w D *UND* 00000000 __pthread_rwlock_rdlock
  650. 000225a0 g DF .text 00000042 GLIBC_2.0 _toupper
  651. 000e0cf0 g DF .text 0000005d GLIBC_2.0 xdrrec_endofrecord
  652. 000286a0 g DF .text 00000063 GLIBC_PRIVATE __libc_longjmp
  653. 0002b910 w DF .text 000000b9 GLIBC_2.0 random_r
  654. 0002c490 g DF .text 00000058 GLIBC_2.0 strtoul
  655. 0006c810 w DF .text 00000a85 GLIBC_2.3 strxfrm_l
  656. 000bcb80 w DF .text 000004b8 GLIBC_2.2.3 sprofil
  657. 000e9720 w DF .text 00000068 GLIBC_2.0 getutent
  658. 00061f40 g DF .text 000000a5 GLIBC_PRIVATE __libc_malloc_pthread_startup
  659. 00070e50 w DF .text 0000003e GLIBC_2.1 __wcstoul_l
  660. 000a4420 w DF .text 00000036 GLIBC_2.0 sched_getscheduler
  661. 0006e990 g DF .text 0000012c GLIBC_2.0 wcsstr
  662. 00057c50 g DF .text 0000003f GLIBC_2.2 wscanf
  663. 00085740 w DF .text 0000018f GLIBC_2.0 readdir_r
  664. 000ebcc0 g DF .text 00000017 GLIBC_2.1 endutxent
  665. 000b4100 g DF .text 0000003e GLIBC_2.0 mktemp
  666. 00035000 w DF .text 00000027 GLIBC_2.3 strtold_l
  667. 00057fa0 g DF .text 0000002b GLIBC_2.2 _IO_switch_to_main_wget_area
  668. 000ba630 w DF .text 0000003c GLIBC_2.1 modify_ldt
  669. 000223d0 g DF .text 0000007b GLIBC_2.0 ispunct
  670. 000c6500 g DF .text 00000048 GLIBC_PRIVATE __libc_pthread_init
  671. 0007b830 w DF .text 0000003a GLIBC_2.0 settimeofday
  672. 000cd920 g DF .text 00000162 GLIBC_2.0 gethostbyaddr
  673. 00022780 w DF .text 00000017 GLIBC_2.3 isprint_l
  674. 00022e70 g DF .text 00000043 GLIBC_2.0 __dcgettext
  675. 0002b690 g DF .text 000000a3 GLIBC_2.0 wctomb
  676. 00027f70 w DF .text 00000011 GLIBC_2.0 finitef
  677. 0006a720 g DF .text 0000001b GLIBC_2.0 memfrob
  678. 00067e00 g DF .text 00000199 GLIBC_2.0 _obstack_newchunk
  679. 000702f0 w DF .text 00000058 GLIBC_2.0 wcstoq
  680. 00054f00 g DF .text 000001d8 GLIBC_2.0 _IO_ftell
  681. 00080aa0 w DF .text 00001e8b GLIBC_2.3 strftime_l
  682. 0011728c g DO .data 00000004 GLIBC_2.0 opterr
  683. 000d8e80 g DF .text 000002dc GLIBC_2.0 clnt_create
  684. 00029070 w DF .text 0000003a GLIBC_2.0 sigaltstack
  685. 000616c0 g DF .text 0000004e GLIBC_2.0 _IO_str_init_readonly
  686. 000adfd0 w DF .text 00000036 GLIBC_2.0 rmdir
  687. 0007b870 w DF .text 00000119 GLIBC_2.0 adjtime
  688. 000ba780 g DF .text 00000036 GLIBC_2.0 __adjtimex
  689. 0002b640 g DF .text 00000046 GLIBC_2.0 wcstombs
  690. 00027df0 w DF .text 0000000d GLIBC_2.1 scalbln
  691. 0006d9e0 g DF .text 00000046 GLIBC_2.1.1 __strstr_g
  692. 000bf830 w DF .text 00000082 GLIBC_2.0 sgetspent_r
  693. 000226c0 w DF .text 00000015 GLIBC_2.3 isalnum_l
  694. 000bb3e0 w DF .text 00000039 GLIBC_2.0 socket
  695. 000b3970 w DF .text 00000094 GLIBC_2.0 select
  696. 000baa20 g DF .text 00000048 GLIBC_2.0 init_module
  697. 000efc80 g DF .text 0000007c GLIBC_2.0 __frame_state_for
  698. 00000000 w D *UND* 00000000 _pthread_cleanup_pop_restore
  699. 00027f70 g DF .text 00000011 GLIBC_2.0 __finitef
  700. 00085670 w DF .text 000000cb GLIBC_2.0 readdir
  701. 0005c810 g DF .text 0000000f GLIBC_2.2 __flbf
  702. 000ac0b0 w DF .text 0000003a GLIBC_2.0 fstatfs
  703. 000581e0 g DF .text 0000003f GLIBC_2.2 _IO_adjust_wcolumn
  704. 000ad520 w DF .text 00000035 GLIBC_2.0 lchown
  705. 0006ed00 w DF .text 000000c8 GLIBC_2.0 wcpncpy
  706. 000e21e0 g DF .text 00000228 GLIBC_2.1 authdes_pk_create
  707. 000a2880 w DF .text 00000039 GLIBC_2.0 re_match
  708. 00086e40 g DF .text 00000032 GLIBC_2.0 setgroups
  709. 000dc610 g DF .text 00000100 GLIBC_2.0 pmap_rmtcall
  710. 0002b070 g DF .text 00000036 GLIBC_PRIVATE __on_exit
  711. 0002c430 g DF .text 00000059 GLIBC_2.0 __strtoul_internal
  712. 00061290 g DF .text 0000015c GLIBC_2.0 _IO_str_seekoff
  713. 00065520 w DF .text 00000147 GLIBC_2.0 pvalloc
  714. 000ba8c0 g DF .text 0000003c GLIBC_2.0 delete_module
  715. 0005e560 g DF .text 0000055b GLIBC_2.1 _IO_file_seekoff
  716. 000d96f0 g DF .text 00000094 GLIBC_2.0 clnt_perror
  717. 0005cf90 g DF .text 0000000b GLIBC_2.0 clearerr_unlocked
  718. 000d05c0 g DF .text 000000e2 GLIBC_2.1.2 getrpcent_r
  719. 000d1fe0 g DF .text 00000031 GLIBC_2.0 ruserok
  720. 0011a6c4 g DO .bss 00000004 GLIBC_2.0 error_message_count
  721. 00022450 g DF .text 0000007d GLIBC_2.0 isspace
  722. 00057cd0 g DF .text 0000003a GLIBC_2.2 vwscanf
  723. 000c5da0 g DF .text 00000033 GLIBC_2.0 pthread_attr_getinheritsched
  724. 00119118 w DO .bss 00000004 GLIBC_2.0 ___brk_addr
  725. 000f4490 g DF .text 00000037 (GLIBC_2.0) getaliasent_r
  726. 00000000 w D *UND* 00000000 __pthread_rwlock_unlock
  727. 000b8280 g DF .text 000000ce GLIBC_2.0 hcreate_r
  728. 00022840 w DF .text 00000011 GLIBC_2.3 toupper_l
  729. 000bf8c0 w DF .text 000001d7 GLIBC_2.0 fgetspent_r
  730. 00069a70 g DF .text 00000044 GLIBC_2.1 mempcpy
  731. 000b0d70 g DF .text 00000273 GLIBC_2.0 fts_open
  732. 00043ce0 g DF .text 00000039 GLIBC_2.0 _IO_printf
  733. 00062aa0 g DF .text 00000087 GLIBC_2.0 __libc_mallinfo
  734. 000156c0 g DF .text 00000038 (GLIBC_2.0) __ucmpdi2
  735. 00054320 w DF .text 000000eb GLIBC_2.0 fflush
  736. 001190fc w DO .bss 00000004 GLIBC_2.0 _environ
  737. 0011a6b4 g DO .bss 00000004 GLIBC_2.1 getdate_err
  738. 0008a660 g DF .text 00000013 GLIBC_2.0 __bsd_getpgrp
  739. 000ad170 g DF .text 00000023 GLIBC_2.1 creat64
  740. 000dfba0 g DF .text 0000000a GLIBC_2.0 xdr_void
  741. 000e4140 g DF .text 0000003b GLIBC_2.0 xdr_keybuf
  742. 000e6ca0 g DF .text 000000d3 GLIBC_2.3.4 xdr_quad_t
  743. 00022e30 w DF .text 00000015 GLIBC_2.2 bind_textdomain_codeset
  744. 000abc90 g DF .text 00000018 GLIBC_2.2 posix_madvise
  745. 000c4600 w DF .text 000001b5 GLIBC_2.1 argp_error
  746. 000aae90 g DF .text 00000082 GLIBC_PRIVATE __libc_pwrite
  747. 000f4430 g DF .text 0000005f (GLIBC_2.0) getrpcbynumber_r
  748. 000d0810 g DF .text 00000165 GLIBC_2.1.2 getrpcbyname_r
  749. 000f42e0 g DF .text 00000066 (GLIBC_2.0) getservbyport_r
  750. 000b5470 w DF .text 0000003a GLIBC_2.0 ftruncate
  751. 000d12a0 g DF .text 00000158 GLIBC_2.0 ether_ntohost
  752. 00027f50 w DF .text 00000018 GLIBC_2.0 isnanf
  753. 000b42d0 g DF .text 00000032 GLIBC_2.0 stty
  754. 000dbcc0 g DF .text 00000077 GLIBC_2.0 xdr_pmap
  755. 0005eac0 g DF .text 000000da GLIBC_2.1 _IO_file_sync
  756. 000f43d0 g DF .text 0000005f (GLIBC_2.0) getrpcbyname_r
  757. 000baba0 g DF .text 0000003c GLIBC_2.0 nfsservctl
  758. 000dd3d0 g DF .text 0000004e GLIBC_2.0 svcerr_progvers
  759. 0006d320 g DF .text 00000031 GLIBC_2.1.1 __memcpy_g
  760. 00028770 w DF .text 000000da GLIBC_2.0 ssignal
  761. 000be720 g DF .text 00000071 GLIBC_2.2 __wctrans_l
  762. 00086670 g DF .text 0000018a GLIBC_2.0 fgetgrent
  763. 0008b9f0 w DF .text 00000082 GLIBC_2.0 glob_pattern_p
  764. 000ba330 g DF .text 0000008e GLIBC_2.0 __clone
  765. 000dd230 g DF .text 00000042 GLIBC_2.0 svcerr_noproc
  766. 00056ec0 w DF .text 0000002a GLIBC_2.2 getwc_unlocked
  767. 0006dc70 g DF .text 00000039 GLIBC_2.1.1 __strcspn_c1
  768. 00057870 g DF .text 00000038 GLIBC_2.2 putwc_unlocked
  769. 00000000 w D *UND* 00000000 __pthread_kill_other_threads_np
  770. 000f1260 g DF .text 00000124 (GLIBC_2.0) _IO_fgetpos
  771. 00015aa0 g DF .text 00000035 (GLIBC_2.0) __udivdi3
  772. 000f29c0 g DF .text 00000024 (GLIBC_2.1) alphasort64
  773. 000d0360 g DF .text 00000125 GLIBC_2.0 getrpcbyname
  774. 0002b520 g DF .text 00000046 GLIBC_2.0 mbstowcs
  775. 0002a870 g DF .text 00000091 GLIBC_2.0 putenv
  776. 0006ab10 w DF .text 000000a3 GLIBC_2.0 argz_create
  777. 000acb20 w DF .text 0000003c GLIBC_2.0 lseek
  778. 00065c60 g DF .text 0000021c GLIBC_2.0 __libc_realloc
  779. 00020e00 g DF .text 00000049 GLIBC_2.2 __nl_langinfo_l
  780. 0006ebd0 w DF .text 00000058 GLIBC_2.0 wmemcpy
  781. 00029270 g DF .text 00000040 GLIBC_2.0 sigaddset
  782. 000ba5a0 g DF .text 0000001d GLIBC_2.3.3 gnu_dev_minor
  783. 000159e0 g DF .text 000000ba (GLIBC_2.0) __moddi3
  784. 00028c20 g DF .text 00000066 GLIBC_PRIVATE __libc_sigwait
  785. 0002a910 w DF .text 00000082 GLIBC_2.0 clearenv
  786. 001190fc g DO .bss 00000004 GLIBC_2.0 __environ
  787. 0005f700 g DF .text 0000019b GLIBC_2.1 _IO_file_close_it
  788. 00020870 g DF .text 0000050d GLIBC_2.2 localeconv
  789. 000890f0 w DF .text 000000a9 GLIBC_2.0 __wait
  790. 000ab4f0 g DF .text 00000012 GLIBC_2.2 posix_spawnattr_getpgroup
  791. 000b6f00 w DF .text 0000005e GLIBC_2.0 mmap
  792. 00057e90 g DF .text 000000a0 GLIBC_2.2 vswscanf
  793. 000e1970 g DF .text 000000ef GLIBC_2.0 getsecretkey
  794. 00069d80 w DF .text 00000085 GLIBC_2.0 strncasecmp
  795. 00089a28 w DF .text 00000013 GLIBC_2.1.1 _Exit
  796. 00117280 g DO .data 00000004 GLIBC_2.0 obstack_exit_failure
  797. 000e05f0 g DF .text 00000050 GLIBC_2.0 xdr_vector
  798. 000dd4d0 g DF .text 000001f7 GLIBC_2.2 svc_getreq_common
  799. 0002caf0 w DF .text 0000002e GLIBC_2.3 strtol_l
  800. 0006fd70 w DF .text 0000034d GLIBC_2.0 wcsnrtombs
  801. 000dc480 g DF .text 000000fe GLIBC_2.0 xdr_rmtcall_args
  802. 000cf560 g DF .text 000000e2 GLIBC_2.1.2 getprotoent_r
  803. 000d30f0 g DF .text 000005d3 GLIBC_2.2 rexec_af
  804. 00069b60 w DF .text 00000032 GLIBC_2.0 bzero
  805. 0006da30 g DF .text 000000df GLIBC_2.1.1 __mempcpy_small
  806. 0005c7d0 g DF .text 00000013 GLIBC_2.2 __freadable
  807. 0008a610 w DF .text 0000003a GLIBC_2.0 setpgid
  808. 000eb230 w DF .text 000000f3 GLIBC_2.2.1 posix_openpt
  809. 000bb1e0 w DF .text 00000078 GLIBC_2.0 send
  810. 000b38b0 g DF .text 00000074 GLIBC_2.0 getdomainname
  811. 00104d74 g DO .rodata 00000004 (GLIBC_2.0) _sys_nerr
  812. 000dd420 g DF .text 00000036 GLIBC_2.0 svc_getreq
  813. 00056450 w DF .text 0000012f GLIBC_2.0 setbuffer
  814. 000a4710 g DF .text 00000042 GLIBC_2.0 freeaddrinfo
  815. 000e6400 g DF .text 00000012 GLIBC_2.1 svcunixfd_create
  816. 00029c10 g DF .text 00000210 GLIBC_2.0 abort
  817. 00071940 w DF .text 0000003e GLIBC_2.1 __wcstoull_l
  818. 000cf650 g DF .text 000000a6 GLIBC_2.0 endprotoent
  819. 000eb330 w DF .text 00000031 GLIBC_2.1 getpt
  820. 00022800 w DF .text 00000017 GLIBC_2.3 isxdigit_l
  821. 000e9c70 w DF .text 00000072 GLIBC_2.0 getutline_r
  822. 0002c0b0 w DF .text 00000054 GLIBC_2.0 nrand48_r
  823. 000dd8e0 g DF .text 000000b5 GLIBC_2.0 xprt_unregister
  824. 0006b380 g DF .text 00000081 GLIBC_2.0 envz_entry
  825. 000ba940 g DF .text 00000042 GLIBC_2.3.2 epoll_ctl
  826. 000c5ea0 g DF .text 00000033 GLIBC_2.0 pthread_attr_getschedpolicy
  827. 00115680 g DO .data.rel.ro 00000100 (GLIBC_2.1) sys_siglist
  828. 00000000 DO *UND* 00000438 GLIBC_PRIVATE _rtld_global
  829. 00069ba0 w DF .text 00000010 GLIBC_2.1 ffsl
  830. 00078520 w DF .text 0000004b GLIBC_2.0 wcscoll
  831. 000be610 w DF .text 0000008c GLIBC_2.3 wctype_l
  832. 000ecf50 g DF .text 00000a90 GLIBC_PRIVATE _dl_close
  833. 00020e90 g DF .text 0000068a GLIBC_2.1 __newlocale
  834. 000ebd70 g DF .text 00000021 GLIBC_2.1 utmpxname
  835. 00056ec0 w DF .text 0000002a GLIBC_2.2 fgetwc_unlocked
  836. 0003f2d0 g DF .text 000024e5 GLIBC_2.0 __printf_fp
  837. 00117d88 w DO .data 00000008 GLIBC_2.0 tzname
  838. 0007aee0 w DF .text 00000030 GLIBC_2.0 gmtime_r
  839. 0002bf40 g DF .text 00000039 GLIBC_2.0 seed48
  840. 000ac760 w DF .text 0000003a GLIBC_2.0 chmod
  841. 000d4fb0 g DF .text 0000085d GLIBC_2.1 getnameinfo
  842. 00079660 w DF .text 000008f6 GLIBC_2.3 wcsxfrm_l
  843. 00053230 w DF .text 00000032 GLIBC_2.0 ftrylockfile
  844. 0002b9d0 w DF .text 0000010e GLIBC_2.0 srandom_r
  845. 00021fd0 g DF .text 0000007d GLIBC_2.0 isxdigit
  846. 000b8600 w DF .text 000003eb GLIBC_2.0 tdelete
  847. 000d77c0 g DF .text 00000075 GLIBC_2.3.3 inet6_option_append
  848. 00054b50 g DF .text 00000146 GLIBC_2.0 _IO_fputs
  849. 0008a5d0 g DF .text 00000036 GLIBC_2.0 __getpgid
  850. 000abbd0 g DF .text 0000003a GLIBC_2.2 posix_spawnattr_getschedparam
  851. 0011a6c8 g DO .bss 00000004 GLIBC_2.0 error_print_progname
  852. 000dffb0 g DF .text 0000004e GLIBC_2.0 xdr_char
  853. 0006d7f0 g DF .text 00000035 GLIBC_2.1.1 __strcspn_cg
  854. 0005f620 g DF .text 00000047 GLIBC_2.1 _IO_file_init
  855. 00089600 g DF .text 00000036 GLIBC_2.0 alarm
  856. 0005c7a0 g DF .text 0000001a GLIBC_2.2 __freading
  857. 00061440 g DF .text 00000042 GLIBC_2.0 _IO_str_pbackfail
  858. 000d9320 g DF .text 00000090 GLIBC_2.0 clnt_pcreateerror
  859. 00055ec0 g DF .text 0000008b GLIBC_2.1 popen
  860. 000f5480 g DF __libc_thread_freeres_fn 00000041 GLIBC_PRIVATE __libc_thread_freeres
  861. 00059430 g DF .text 000001c6 GLIBC_2.2 _IO_wfile_xsputn
  862. 000b71a0 g DF .text 0000003a GLIBC_2.0 mlock
  863. 000b3ba0 g DF .text 00000036 GLIBC_2.0 acct
  864. 000f3f80 g DF .text 00000066 (GLIBC_2.0) gethostbyname_r
  865. 0005eba0 g DF .text 000001eb GLIBC_2.1 _IO_file_overflow
  866. 000ca560 g DF .text 000000b0 GLIBC_2.0 __nss_next
  867. 000e5590 g DF .text 000000bb GLIBC_2.1 xdecrypt
  868. 000808f0 w DF .text 00000045 GLIBC_2.3.2 strptime_l
  869. 00089570 g DF .text 00000082 GLIBC_PRIVATE __libc_waitid
  870. 000b3110 g DF .text 00000015 GLIBC_2.0 sstk
  871. 0007a030 g DF .text 00000063 GLIBC_2.1 __wcscasecmp_l
  872. 00021680 g DF .text 00000084 GLIBC_2.1 __freelocale
  873. 0002c550 w DF .text 00000058 GLIBC_2.0 strtoq
  874. 0002c3d0 g DF .text 00000058 GLIBC_2.0 strtol
  875. 000285a0 g DF .text 0000002f GLIBC_2.0 __sigsetjmp
  876. 000afe20 g DF .text 00000041 GLIBC_2.3.3 nftw64
  877. 000ad0b0 w DF .text 00000036 GLIBC_2.0 pipe
  878. 000cc670 g DF .text 0000002d GLIBC_2.3.4 __stpcpy_chk
  879. 000dc580 g DF .text 00000087 GLIBC_2.0 xdr_rmtcallres
  880. 000d0d60 g DF .text 00000157 GLIBC_2.0 ether_hostton
  881. 000cc210 g DF .text 0000022e GLIBC_2.1 __backtrace_symbols_fd
  882. 000b2d90 g DF .text 00000072 GLIBC_2.0 vlimit
  883. 0008a650 g DF .text 00000008 GLIBC_2.0 getpgrp
  884. 00068ac0 g DF .text 000000b7 GLIBC_2.0 strnlen
  885. 000ba6b0 g DF .text 0000003a (GLIBC_2.0) getrlimit
  886. 0006a7d0 w DF .text 000000c6 GLIBC_2.1 rawmemchr
  887. 000704d0 w DF .text 00000052 GLIBC_2.0 wcstod
  888. 000ce8c0 g DF .text 00000157 GLIBC_2.0 getnetbyaddr
  889. 000e0850 g DF .text 000000a0 GLIBC_2.0 xdr_double
  890. 00027f10 g DF .text 0000000f GLIBC_2.1 __signbit
  891. 0002b440 g DF .text 000000d2 GLIBC_2.0 mblen
  892. 00022740 w DF .text 00000017 GLIBC_2.3 islower_l
  893. 000ba800 g DF .text 0000003a GLIBC_2.1 capget
  894. 000ab3e0 g DF .text 00000034 GLIBC_2.2 posix_spawnattr_init
  895. 000abe90 g DF .text 0000008d GLIBC_2.0 __lxstat
  896. 00089070 w DF .text 00000036 GLIBC_2.0 uname
  897. 000bd840 w DF .text 000000d5 GLIBC_2.0 iswprint
  898. 00020e90 w DF .text 0000068a GLIBC_2.3 newlocale
  899. 00079660 g DF .text 000008f6 GLIBC_2.1 __wcsxfrm_l
  900. 000bae20 w DF .text 00000078 GLIBC_2.0 accept
  901. 00029590 g DF .text 00000067 GLIBC_2.1 __libc_allocate_rtsig
  902. 000b8fc0 g DF .text 00000023 GLIBC_2.0 verrx
  903. 00035ae0 g DF .text 00000066 GLIBC_2.0 a64l
  904. 000c6190 g DF .text 0000003a GLIBC_2.0 pthread_getschedparam
  905. 000eeda0 g DF .text 0000003f GLIBC_2.0 __register_frame_table
  906. 000b23c0 g DF .text 0000005c GLIBC_2.0 cfsetispeed
  907. 000f1390 g DF .text 00000181 (GLIBC_2.1) _IO_fgetpos64
  908. 000e6e40 g DF .text 0000003f GLIBC_2.1 xdr_int32_t
  909. 000eaf60 w DF .text 00000103 GLIBC_2.0 utmpname
  910. 00056b40 g DF .text 00000137 GLIBC_2.2 _IO_fsetpos64
  911. 0006a480 g DF .text 00000179 GLIBC_2.1 __strcasestr
  912. 000b8230 g DF .text 00000049 GLIBC_2.0 hdestroy_r
  913. 000531c0 g DF .text 0000003a GLIBC_2.0 rename
  914. 00022860 g DF .text 00000048 GLIBC_2.3 __isctype
  915. 000f4350 g DF .text 00000037 (GLIBC_2.0) getservent_r
  916. 000be6a0 g DF .text 00000072 GLIBC_2.1 __iswctype_l
  917. 000291a0 g DF .text 00000022 GLIBC_2.0 __sigaddset
  918. 000f3ad0 g DF .text 00000033 (GLIBC_2.3.3) sched_getaffinity
  919. 000dcb60 g DF .text 00000406 GLIBC_2.0 xdr_callmsg
  920. 00060090 g DF .text 00000016 GLIBC_2.2 _IO_iter_begin
  921. 000cc770 g DF .text 000000eb GLIBC_2.3.4 __strncat_chk
  922. 000c6300 g DF .text 00000033 GLIBC_2.0 pthread_setcancelstate
  923. 000e0210 g DF .text 000000a3 GLIBC_2.0 xdr_union
  924. 00070230 g DF .text 00000059 GLIBC_2.0 __wcstoul_internal
  925. 000b5720 g DF .text 00000072 GLIBC_2.0 setttyent
  926. 00029390 g DF .text 000000a7 GLIBC_2.0 __sysv_signal
  927. 00068df0 g DF .text 000001b9 GLIBC_2.0 strrchr
  928. 0006fa40 w DF .text 00000330 GLIBC_2.0 mbsnrtowcs
  929. 0006b720 g DF .text 0000002c GLIBC_2.0 basename
  930. 000228b0 g DF .text 00000071 GLIBC_2.3 __ctype_tolower_loc
  931. 00066dd0 g DF .text 0000002b GLIBC_2.0 mprobe
  932. 00089570 w DF .text 00000082 GLIBC_2.1 waitid
  933. 00118648 w DO .bss 00000004 GLIBC_2.0 __after_morecore_hook
  934. 00089900 w DF .text 00000078 GLIBC_2.0 nanosleep
  935. 0006e4a0 g DF .text 00000032 GLIBC_2.0 wcscpy
  936. 000e00d0 g DF .text 0000002a GLIBC_2.0 xdr_enum
  937. 00067c80 g DF .text 000000ba GLIBC_2.0 _obstack_begin
  938. 000be5a0 g DF .text 0000006d GLIBC_2.1 __towlower_l
  939. 00066840 w DF .text 000003b7 GLIBC_2.0 calloc
  940. 00039c80 g DF .text 0000009b GLIBC_2.0 cuserid
  941. 00028250 w DF .text 00000187 GLIBC_2.0 modfl
  942. 00069e10 w DF .text 00000041 GLIBC_2.3 strcasecmp_l
  943. 00015ae0 g DF .text 0000003b (GLIBC_2.0) __umoddi3
  944. 000e0050 g DF .text 00000079 GLIBC_2.0 xdr_bool
  945. 0005e4d0 g DF .text 00000025 GLIBC_2.0 _IO_file_stat
  946. 00093ca0 w DF .text 0000004b GLIBC_2.0 re_set_registers
  947. 000bc270 w DF .text 0000008b GLIBC_2.2 moncontrol
  948. 000e4360 g DF .text 000001a2 GLIBC_2.1 host2netname
  949. 0002b2c0 w DF .text 00000031 GLIBC_2.1.1 imaxabs
  950. 000619b0 w DF .text 00000034 GLIBC_2.0 malloc_usable_size
  951. 0002dd70 g DF .text 00000052 GLIBC_2.0 __strtold_internal
  952. 000ba630 g DF .text 0000003c GLIBC_PRIVATE __modify_ldt
  953. 000b85e0 w DF .text 00000012 GLIBC_2.1 tdestroy
  954. 00089250 w DF .text 00000042 GLIBC_2.0 wait4
  955. 0007a0a0 w DF .text 0000007c GLIBC_2.3 wcsncasecmp_l
  956. 000eed00 g DF .text 00000095 GCC_3.0 __register_frame_info_bases
  957. 00059cd0 g DF .text 0000016a GLIBC_2.2 _IO_wfile_sync
  958. 00065520 g DF .text 00000147 GLIBC_2.0 __libc_pvalloc
  959. 0002d5c0 w DF .text 0000002e GLIBC_2.1 __strtoll_l
  960. 000f2250 g DF .text 0000016b (GLIBC_2.0) _IO_file_fopen
  961. 000cd3b0 g DF .text 0000002d GLIBC_2.0 inet_lnaof
  962. 000f1260 g DF .text 00000124 (GLIBC_2.0) fgetpos
  963. 0002dd10 w DF .text 00000052 GLIBC_2.0 strtod
  964. 00000000 g DO *ABS* 00000000 GLIBC_2.1.2 GLIBC_2.1.2
  965. 000e02c0 g DF .text 0000003b GLIBC_2.0 xdr_wrapstring
  966. 00027b80 w DF .text 0000002d GLIBC_2.0 isinf
  967. 000a4420 g DF .text 00000036 GLIBC_2.0 __sched_getscheduler
  968. 000dc8f0 g DF .text 00000085 GLIBC_2.0 xdr_rejected_reply
  969. 00068df0 w DF .text 000001b9 GLIBC_2.0 rindex
  970. 0006de80 g DF .text 0000005f GLIBC_2.1.1 __strtok_r_1c
  971. 000a6d20 g DF .text 0000007e GLIBC_2.1 gai_strerror
  972. 000cd3e0 g DF .text 0000005c GLIBC_2.0 inet_makeaddr
  973. 0011a6d4 g DO .bss 00000004 GLIBC_2.0 locs
  974. 000cf700 g DF .text 000000ad GLIBC_2.0 setprotoent
  975. 000ac490 w DF .text 00000153 GLIBC_2.1 statvfs64
  976. 000b1b00 g DF .text 00000042 GLIBC_2.1 sendfile
  977. 0005e160 g DF .text 0000002a GLIBC_2.1 _IO_do_write
  978. 000bfb30 w DF .text 000002b5 GLIBC_2.0 lckpwdf
  979. 00000000 w D *UND* 00000000 __pthread_getspecific
  980. 000f4210 g DF .text 0000005f (GLIBC_2.0) getprotobyname_r
  981. 000c5fa0 g DF .text 0000002a GLIBC_2.0 pthread_condattr_destroy
  982. 000acaa0 w DF .text 0000007c GLIBC_2.0 write
  983. 000c5f60 g DF .text 00000033 GLIBC_2.0 pthread_attr_setscope
  984. 000b2b60 g DF .text 00000099 GLIBC_2.2 getrlimit64
  985. 0011748c g DO .data 00000004 (GLIBC_2.2) __ctype32_toupper
  986. 000d2210 g DF .text 00000e93 GLIBC_2.2 rcmd_af
  987. 00065670 g DF .text 00000107 GLIBC_2.0 __libc_valloc
  988. 0006eac0 g DF .text 00000069 GLIBC_2.0 wmemchr
  989. 000cd440 g DF .text 0000002f GLIBC_2.0 inet_netof
  990. 000ba200 g DF .text 0000003c GLIBC_2.0 ioperm
  991. 000b2cb0 w DF .text 000000d2 GLIBC_2.0 ulimit
  992. 000328c0 w DF .text 00000027 GLIBC_2.1 __strtod_l
  993. 00115480 g DO .data.rel.ro 000001f4 (GLIBC_2.1) _sys_errlist
  994. 000cbe30 w DF .text 0000011e GLIBC_2.1 backtrace
  995. 00020e50 w DF .text 00000038 GLIBC_2.0 __ctype_get_mb_cur_max
  996. 00029b60 g DF .text 0000001f GLIBC_2.0 atof
  997. 000cbe30 g DF .text 0000011e GLIBC_2.1 __backtrace
  998. 001190fc w DO .bss 00000004 GLIBC_2.0 environ
  999. 000cbf50 g DF .text 000002bd GLIBC_2.1 __backtrace_symbols
  1000. 000ba2c0 w DF .text 00000066 GLIBC_2.0 sysctl
  1001. 000dfb80 g DF .text 0000001f GLIBC_2.0 xdr_free
  1002. 00000000 DO *UND* 000001cc GLIBC_PRIVATE _rtld_global_ro
  1003. 000e01d0 g DF .text 0000003a GLIBC_2.0 xdr_netobj
  1004. 000b3cd0 g DF .text 00000036 GLIBC_2.0 fdatasync
  1005. 00043cb0 g DF .text 00000024 GLIBC_2.0 fprintf
  1006. 000f19f0 g DF .text 0000002a (GLIBC_2.0) _IO_do_write
  1007. 000b7410 g DF .text 000002d5 GLIBC_2.0 fcvt_r
  1008. 00117900 g DO .data 00000050 GLIBC_2.0 _IO_stdin_
  1009. 0002c140 w DF .text 00000052 GLIBC_2.0 jrand48_r
  1010. 00029000 g DF .text 0000006e GLIBC_2.0 sigstack
  1011. 0011a8e8 g DO .bss 00000004 GLIBC_2.1 __key_encryptsession_pk_LOCAL
  1012. 00028af0 w DF .text 0000003a GLIBC_2.0 kill
  1013. 0005d380 g DF .text 00000098 GLIBC_2.1 fputs_unlocked
  1014. 000bd760 w DF .text 000000d5 GLIBC_2.0 iswgraph
  1015. 000886e0 g DF .text 000000a8 GLIBC_2.0 setpwent
  1016. 000c4550 w DF .text 000000af GLIBC_2.1 argp_state_help
  1017. 000e3a50 g DF .text 00000081 GLIBC_2.1 key_encryptsession_pk
  1018. 0007ae30 g DF .text 0000001b GLIBC_2.0 ctime
  1019. 00069ba0 g DF .text 00000010 GLIBC_2.0 ffs
  1020. 00021710 g DF .text 0000010e GLIBC_2.3 __uselocale
  1021. 000eda10 w DF .text 00000189 GLIBC_2.2.4 dl_iterate_phdr
  1022. 000cb860 g DF .text 0000008a GLIBC_2.0 __nss_group_lookup
  1023. 000dd830 g DF .text 000000af GLIBC_2.0 svc_register
  1024. 000e6fa0 g DF .text 00000068 GLIBC_2.1 xdr_int8_t
  1025. 000dfbb0 g DF .text 00000041 GLIBC_2.0 xdr_long
  1026. 00068140 g DF .text 000001aa GLIBC_2.0 strcat
  1027. 0009f5d0 w DF .text 00000081 GLIBC_2.0 re_compile_pattern
  1028. 0011a6e4 g DO .bss 00000004 GLIBC_2.1 argp_program_version
  1029. 000d7b90 g DF .text 000001c1 GLIBC_2.3.4 getsourcefilter
  1030. 00057780 g DF .text 000000e3 GLIBC_2.2 putwc
  1031. 000ab470 g DF .text 00000038 GLIBC_2.2 posix_spawnattr_setsigdefault
  1032. 00022e70 w DF .text 00000043 GLIBC_2.0 dcgettext
  1033. 000baea0 g DF .text 00000039 GLIBC_2.0 bind
  1034. 00030150 w DF .text 00000027 GLIBC_2.3 strtof_l
  1035. 000be1a0 g DF .text 0000007d GLIBC_2.1 __iswcntrl_l
  1036. 0002bd30 g DF .text 00000052 GLIBC_2.0 rand_r
  1037. 0008a610 g DF .text 0000003a GLIBC_2.0 __setpgid
  1038. 00117484 g DO .data 00000004 (GLIBC_2.0) __ctype_toupper
  1039. 000b4e30 w DF .text 0000035f GLIBC_2.0 getmntent_r
  1040. 000cf4b0 g DF .text 000000a2 GLIBC_2.0 getprotoent
  1041. 000d7d60 g DF .text 0000017a GLIBC_2.3.4 setsourcefilter
  1042. 000dd2d0 g DF .text 00000042 GLIBC_2.0 svcerr_systemerr
  1043. 00028ee0 w DF .text 00000114 GLIBC_2.0 sigvec
  1044. 000d5be0 g DF .text 00000326 GLIBC_2.1 if_nameindex
  1045. 000c6b00 g DF .text 00000028 GLIBC_2.0 inet_addr
  1046. 000b3350 w DF .text 00000072 GLIBC_2.0 readv
  1047. 000b79e0 g DF .text 000000c3 GLIBC_2.0 qfcvt
  1048. 000cd390 w DF .text 00000007 GLIBC_2.0 ntohl
  1049. 000b54b0 g DF .text 00000050 GLIBC_2.1 truncate64
  1050. 000bd040 g DF .text 00000019 GLIBC_2.0 __profile_frequency
  1051. 0003ee90 g DF .text 00000036 GLIBC_2.0 vprintf
  1052. 0006d710 g DF .text 00000023 GLIBC_2.1.1 __strchr_g
  1053. 000ba4d0 w DF .text 00000057 GLIBC_2.3 readahead
  1054. 000c5cc0 g DF .text 0000002a (GLIBC_2.0) pthread_attr_init
  1055. 000ba490 w DF .text 0000003a GLIBC_2.1 umount2
  1056. 00069c20 g DF .text 00000041 GLIBC_2.0 __stpcpy
  1057. 000e4030 g DF .text 00000057 GLIBC_2.0 xdr_cryptkeyarg
  1058. 000b5550 g DF .text 00000032 GLIBC_2.0 chflags
  1059. 000b7970 g DF .text 00000064 GLIBC_2.0 qecvt
  1060. 000abd30 g DF .text 0000003c GLIBC_2.0 mkfifo
  1061. 000227c0 w DF .text 00000017 GLIBC_2.3 isspace_l
  1062. 0007b7f0 g DF .text 0000003a GLIBC_2.0 __gettimeofday
  1063. 000283e0 w DF .text 0000000d GLIBC_2.0 scalbnl
  1064. 000d58b0 g DF .text 000000ae GLIBC_2.1 if_nametoindex
  1065. 00061490 g DF .text 00000172 GLIBC_2.0 _IO_str_overflow
  1066. 000ee430 g DF .text 00000021 GLIBC_2.0 __deregister_frame_info
  1067. 0006d790 g DF .text 00000024 GLIBC_2.1.1 __strrchr_c
  1068. 000b70d0 g DF .text 0000003c GLIBC_2.0 madvise
  1069. 00115480 g DO .data.rel.ro 000001f4 (GLIBC_2.1) sys_errlist
  1070. 0005bd00 w DF .text 000001c8 GLIBC_2.0 obstack_vprintf
  1071. 000713d0 w DF .text 0000003e GLIBC_2.3 wcstoll_l
  1072. 000b3d10 g DF .text 00000039 GLIBC_2.0 reboot
  1073. 000bb1e0 w DF .text 00000078 GLIBC_2.0 __send
  1074. 000ad1a0 w DF .text 00000036 GLIBC_2.0 chdir
  1075. 00029770 w DF .text 00000069 GLIBC_2.1 sigwaitinfo
  1076. 00057b90 g DF .text 0000003b GLIBC_2.2 swprintf
  1077. 000c5de0 g DF .text 00000033 GLIBC_2.0 pthread_attr_setinheritsched
  1078. 00027be0 g DF .text 00000011 GLIBC_2.0 __finite
  1079. 00086c90 g DF .text 000000bf GLIBC_2.0 initgroups
  1080. 0006e090 g DF .text 00000022 GLIBC_2.1.1 __memset_cg
  1081. 00070e50 w DF .text 0000003e GLIBC_2.3 wcstoul_l
  1082. 000ac070 g DF .text 0000003a GLIBC_2.2 __statfs
  1083. 00117fe0 g DO .bss 00000004 (GLIBC_2.0) _errno
  1084. 000db700 g DF .text 00000105 GLIBC_2.0 pmap_unset
  1085. 0005bff0 g DF .text 000000e1 GLIBC_2.1 fseeko
  1086. 000b3680 w DF .text 00000032 GLIBC_2.0 setregid
  1087. 000b15c0 g DF .text 00000043 GLIBC_2.2 posix_fadvise
  1088. 000b9fa0 g DF .text 0000003c GLIBC_2.3 listxattr
  1089. 00029980 g DF .text 0000006e GLIBC_2.1 sigignore
  1090. 000bbb90 g DF .text 0000004d GLIBC_2.0 shmdt
  1091. 00027c20 w DF .text 000001cf GLIBC_2.0 modf
  1092. 000ac3f0 g DF .text 00000094 GLIBC_2.1 fstatvfs
  1093. 00087420 g DF .text 000000a6 GLIBC_2.0 endgrent
  1094. 000bb360 g DF .text 00000039 GLIBC_2.0 setsockopt
  1095. 001170f8 g DO .data 00000002 GLIBC_2.0 __fpu_control
  1096. 000be420 g DF .text 0000007d GLIBC_2.1 __iswpunct_l
  1097. 00028770 w DF .text 000000da GLIBC_2.0 bsd_signal
  1098. 000dfed0 g DF .text 00000068 GLIBC_2.0 xdr_short
  1099. 000be220 w DF .text 0000007d GLIBC_2.3 iswdigit_l
  1100. 000ccb80 g DF .text 00000113 GLIBC_2.3.4 __printf_chk
  1101. 0005b130 g DF .text 000000e1 GLIBC_2.0 fseek
  1102. 0006ad60 w DF .text 00000049 GLIBC_2.0 argz_extract
  1103. 00056580 g DF .text 0000018f GLIBC_2.0 _IO_setvbuf
  1104. 000bab50 w DF .text 00000042 GLIBC_2.0 mremap
  1105. 000c61d0 g DF .text 0000003a GLIBC_2.0 pthread_setschedparam
  1106. 00039c50 g DF .text 00000030 GLIBC_2.0 ctermid
  1107. 000f0870 g DF .text 0000003b (GLIBC_2.0) atexit
  1108. 00089220 w DF .text 00000029 GLIBC_2.0 wait3
  1109. 000bb6d0 g DF .text 00000051 GLIBC_2.1 __libc_sa_len
  1110. 00023de0 w DF .text 00000042 GLIBC_2.2 ngettext
  1111. 00052900 g DF .text 0000007c GLIBC_2.0 tmpnam_r
  1112. 000dd6d0 g DF .text 00000082 GLIBC_2.0 svc_getreqset
  1113. 00020d80 g DF .text 0000007a GLIBC_2.0 nl_langinfo
  1114. 000bbbe0 g DF .text 0000004f GLIBC_2.0 shmget
  1115. 000225f0 g DF .text 00000042 GLIBC_2.0 _tolower
  1116. 00055380 w DF .text 0000024e GLIBC_2.0 getdelim
  1117. 000d4a00 g DF .text 00000125 GLIBC_2.0 getaliasbyname
  1118. 000433d0 g DF .text 0000002d GLIBC_2.1 printf_size_info
  1119. 000b7ab0 g DF .text 0000031e GLIBC_2.0 qfcvt_r
  1120. 0002b7b0 w DF .text 0000007b GLIBC_2.0 setstate
  1121. 000b2420 g DF .text 00000042 GLIBC_2.0 cfsetospeed
  1122. 00069eb0 w DF .text 0000003e GLIBC_2.0 memccpy
  1123. 000b5590 g DF .text 00000032 GLIBC_2.0 fchflags
  1124. 000bade0 g DF .text 00000036 GLIBC_2.0 uselib
  1125. 0006d360 g DF .text 0000001d GLIBC_2.1.1 __memset_ccn_by4
  1126. 00070590 w DF .text 00000052 GLIBC_2.0 wcstold
  1127. 00117288 g DO .data 00000004 GLIBC_2.0 optind
  1128. 00015410 w DF .text 00000016 GLIBC_2.1 gnu_get_libc_release
  1129. 000abc70 g DF .text 00000015 GLIBC_2.2 posix_spawnattr_setschedparam
  1130. 00055940 g DF .text 000000d3 GLIBC_2.0 _IO_padn
  1131. 00089900 w DF .text 00000078 GLIBC_2.2.6 __nanosleep
  1132. 000be320 g DF .text 0000007d GLIBC_2.1 __iswgraph_l
  1133. 000697c0 w DF .text 0000019b GLIBC_2.0 memchr
  1134. 00055620 g DF .text 000001a4 GLIBC_2.1 _IO_getline_info
  1135. 000e96e0 g DF .text 00000015 GLIBC_2.1 fattach
  1136. 000dd9a0 g DF .text 00000098 GLIBC_2.2 svc_getreq_poll
  1137. 00088b50 g DF .text 00000332 GLIBC_PRIVATE _nss_files_parse_pwent
  1138. 000b40c0 w DF .text 00000036 GLIBC_2.0 swapoff
  1139. 000cd150 g DF .text 00000046 GLIBC_2.3.4 __chk_fail
  1140. 00000000 g DO *ABS* 00000000 GLIBC_2.3.2 GLIBC_2.3.2
  1141. 0011a7c0 g DO .bss 00000030 GLIBC_2.2 _res_hconf
  1142. 00027310 g DF .text 00000866 GLIBC_PRIVATE __open_catalog
  1143. 001178dc g DO .data 00000004 GLIBC_2.0 stdin
  1144. 000b8450 w DF .text 0000005b GLIBC_2.0 tfind
  1145. 000890f0 w DF .text 000000a9 GLIBC_2.0 wait
  1146. 000cc210 w DF .text 0000022e GLIBC_2.1 backtrace_symbols_fd
  1147. 00028ea0 g DF .text 0000001c GLIBC_PRIVATE __libc___xpg_sigpause
  1148. 00092ee0 g DF .text 000002ec GLIBC_2.2.3 fnmatch
  1149. 000b7110 g DF .text 0000003c GLIBC_2.2 mincore
  1150. 000a27f0 w DF .text 0000004a GLIBC_2.0 re_match_2
  1151. 000dc980 g DF .text 0000009e GLIBC_2.0 xdr_accepted_reply
  1152. 00104d70 g DO .rodata 00000004 GLIBC_2.3 sys_nerr
  1153. 00061710 g DF .text 00000047 GLIBC_2.0 _IO_str_init_static
  1154. 000859e0 g DF .text 000001ed GLIBC_2.0 scandir
  1155. 000ac750 w DF .text 00000010 GLIBC_2.0 umask
  1156. 001198e0 g DO .bss 00000200 (GLIBC_2.0) _res
  1157. 0006b750 g DF .text 0000103c GLIBC_2.1 __strcoll_l
  1158. 000b8b20 g DF .text 00000048 GLIBC_2.0 lfind
  1159. 000be6a0 w DF .text 00000072 GLIBC_2.3 iswctype_l
  1160. 00055f50 g DF .text 0000017f GLIBC_2.0 _IO_puts
  1161. 00069bb0 g DF .text 00000062 GLIBC_2.1 ffsll
  1162. 00036df0 w DF .text 00000042 GLIBC_2.3 strfmon_l
  1163. 00043de0 g DF .text 00000034 GLIBC_2.0 dprintf
  1164. 000b9ec0 g DF .text 0000003a GLIBC_2.3 fremovexattr
  1165. 000dd360 g DF .text 0000001c GLIBC_2.0 svcerr_weakauth
  1166. 000d8c40 g DF .text 000000c1 GLIBC_2.0 xdr_authunix_parms
  1167. 000f0c10 g DF .text 0000016c (GLIBC_2.0) fclose
  1168. 0005ed90 g DF .text 0000020b GLIBC_2.1 _IO_file_underflow
  1169. 000d4110 g DF .text 000002e8 GLIBC_2.0 innetgr
  1170. 000de7a0 g DF .text 00000012 GLIBC_2.0 svcfd_create
  1171. 00000000 g DO *ABS* 00000000 GLIBC_2.2.1 GLIBC_2.2.1
  1172. 0007b7a0 g DF .text 0000003c GLIBC_2.0 mktime
  1173. 00088e90 w DF .text 000001d7 GLIBC_2.0 fgetpwent_r
  1174. 00117db8 g DO .data 00000004 GLIBC_2.0 __progname
  1175. 00118d44 w DO .bss 00000004 GLIBC_2.0 timezone
  1176. 00028ec0 g DF .text 00000019 GLIBC_PRIVATE __libc_sigpause
  1177. 0006a480 w DF .text 00000179 GLIBC_2.1 strcasestr
  1178. 00000000 g DO *ABS* 00000000 GLIBC_2.0 GLIBC_2.0
  1179. 000f3ff0 g DF .text 00000041 (GLIBC_2.0) gethostent_r
  1180. 000eee60 g DF .text 000000f4 GCC_3.0 __deregister_frame_info_bases
  1181. 00027080 g DF .text 00000086 GLIBC_2.0 catgets
  1182. 00066ce0 g DF .text 0000004d GLIBC_2.2 mcheck_check_all
  1183. 00060a30 g DF .text 00000022 GLIBC_2.0 _IO_flush_all
  1184. 0005ad00 w DF .text 00000068 GLIBC_2.0 ferror
  1185. 000693c0 g DF .text 00000186 GLIBC_2.0 strstr
  1186. 0007a0a0 g DF .text 0000007c GLIBC_2.1 __wcsncasecmp_l
  1187. 000eb810 g DF .text 0000006a GLIBC_2.1 unlockpt
  1188. 00056fd0 g DF .text 0000003b GLIBC_2.2 getwchar_unlocked
  1189. 000dfea0 g DF .text 0000002a GLIBC_2.1.1 xdr_u_longlong_t
  1190. 000600d0 g DF .text 00000008 GLIBC_2.2 _IO_iter_file
  1191. 000e4830 g DF .text 000001d9 GLIBC_2.1 rtime
  1192. 0005fe30 g DF .text 0000003b GLIBC_2.0 _IO_adjust_column
  1193. 0002bd10 g DF .text 00000017 GLIBC_2.0 rand
  1194. 000ebca0 g DF .text 00000017 GLIBC_2.1 getutxent
  1195. 0011a6d8 g DO .bss 00000004 GLIBC_2.0 loc1
  1196. 00028230 w DF .text 0000001e GLIBC_2.0 copysignl
  1197. 000e6d80 g DF .text 000000bb GLIBC_2.1.1 xdr_uint64_t
  1198. 0005c0e0 g DF .text 000001c8 GLIBC_2.1 ftello
  1199. 000acdc0 w DF .text 0000003a GLIBC_2.0 flock
  1200. 00028220 w DF .text 0000000e GLIBC_2.0 finitel
  1201. 00062bd0 w DF .text 000003db GLIBC_2.0 malloc_set_state
  1202. 0008a500 w DF .text 0000002f GLIBC_2.0 setgid
  1203. 00015260 g DF .text 00000005 GLIBC_2.0 __libc_init_first
  1204. 0006d740 g DF .text 00000020 GLIBC_2.1.1 __strchrnul_c
  1205. 00028770 w DF .text 000000da GLIBC_2.0 signal
  1206. 000524e0 g DF .text 0000021b GLIBC_2.0 psignal
  1207. 000c2b90 w DF .text 00000327 GLIBC_2.1 argp_failure
  1208. 000aca20 w DF .text 0000007c GLIBC_2.0 read
  1209. 00117fe0 g DO .bss 00000004 (GLIBC_2.0) errno
  1210. 00086060 g DF .text 0000000a GLIBC_2.0 dirfd
  1211. 000e9920 w DF .text 00000059 GLIBC_2.0 endutent
  1212. 0006e060 g DF .text 00000022 GLIBC_2.1.1 __memset_gg
  1213. 000bf210 g DF .text 000000a8 GLIBC_2.0 setspent
  1214. 0006e090 g DF .text 00000022 GLIBC_2.1.1 __memset_cc
  1215. 000ad3e0 g DF .text 000000bd GLIBC_2.0 get_current_dir_name
  1216. 000be8b0 g DF .text 00000125 GLIBC_2.0 getspnam
  1217. 0006d540 g DF .text 00000031 GLIBC_2.1.1 __stpcpy_g
  1218. 000b66c0 g DF .text 00000080 GLIBC_2.0 openlog
  1219. 000aaf90 w DF .text 00000094 GLIBC_2.1 pread64
  1220. 00029530 g DF .text 00000027 GLIBC_PRIVATE __libc_current_sigrtmin_private
  1221. 000e0000 g DF .text 0000004e GLIBC_2.0 xdr_u_char
  1222. 000bb260 w DF .text 00000078 GLIBC_2.0 sendmsg
  1223. 000be520 g DF .text 0000007d GLIBC_2.1 __iswupper_l
  1224. 00107908 g DO .rodata 00000010 GLIBC_2.1 in6addr_loopback
  1225. 000bdd70 w DF .text 00000072 GLIBC_2.0 iswctype
  1226. 000684b0 g DF .text 0000004b GLIBC_2.0 strcoll
  1227. 000b6490 g DF .text 0000008a GLIBC_2.0 closelog
  1228. 000da7c0 g DF .text 00000048 GLIBC_2.0 clntudp_create
  1229. 000224d0 g DF .text 0000007d GLIBC_2.0 isupper
  1230. 000e39c0 g DF .text 00000081 GLIBC_2.1 key_decryptsession_pk
  1231. 0006aad0 g DF .text 0000003e GLIBC_2.0 __argz_count
  1232. 00022840 g DF .text 00000011 GLIBC_2.1 __toupper_l
  1233. 00068c40 g DF .text 000000f3 GLIBC_2.0 strncmp
  1234. 000ab570 g DF .text 00000051 GLIBC_2.2 posix_spawnp
  1235. 00043cb0 w DF .text 00000024 GLIBC_2.0 _IO_fprintf
  1236. 0011a668 g DO .bss 00000004 (GLIBC_2.0) _obstack
  1237. 000bacb0 g DF .text 00000048 GLIBC_2.0 query_module
  1238. 0002af50 g DF .text 00000033 GLIBC_2.0 __secure_getenv
  1239. 00035b50 g DF .text 0000004b GLIBC_2.0 l64a
  1240. 00104d70 g DO .rodata 00000004 GLIBC_2.3 _sys_nerr
  1241. 000685d0 g DF .text 00000146 GLIBC_2.1.1 __strverscmp
  1242. 00058400 g DF .text 00000081 GLIBC_2.2 _IO_wdefault_doallocate
  1243. 000226e0 g DF .text 00000017 GLIBC_2.1 __isalpha_l
  1244. 000294b0 g DF .text 00000035 GLIBC_2.0 sigorset
  1245. 0006f6e0 w DF .text 00000360 GLIBC_2.0 wcsrtombs
  1246. 000e1a60 g DF .text 000000e8 GLIBC_2.0 getpublickey
  1247. 000557d0 g DF .text 0000016f GLIBC_2.0 _IO_gets
  1248. 00065780 g DF .text 000001d4 GLIBC_2.0 __libc_malloc
  1249. 00085c40 g DF .text 00000024 GLIBC_2.0 alphasort
  1250. 000aaf90 w DF .text 00000094 GLIBC_2.1 __pread64
  1251. 000b5fa0 g DF .text 00000040 GLIBC_2.0 getusershell
  1252. 000b3870 g DF .text 0000003a GLIBC_2.0 sethostname
  1253. 000bb690 g DF .text 00000040 GLIBC_2.0 __cmsg_nxthdr
  1254. 00053230 g DF .text 00000032 GLIBC_2.0 _IO_ftrylockfile
  1255. 000bd060 w DF .text 00000013 GLIBC_2.0 mcount
  1256. 00022720 g DF .text 00000017 GLIBC_2.1 __isdigit_l
  1257. 00085c70 g DF .text 00000024 GLIBC_2.1 versionsort
  1258. 0006ec60 g DF .text 00000051 GLIBC_2.0 wmemset
  1259. 000b98a0 w DF .text 0000001a GLIBC_2.0 get_avphys_pages
  1260. 00000000 g DO *ABS* 00000000 GLIBC_PRIVATE GLIBC_PRIVATE
  1261. 0008a680 g DF .text 0000001a GLIBC_2.0 setpgrp
  1262. 000a9f60 g DF .text 00000df2 GLIBC_2.1 wordexp
  1263. 0005ff30 g DF .text 0000003a GLIBC_2.0 _IO_marker_delta
  1264. 000d4400 g DF .text 00000097 GLIBC_PRIVATE __internal_endnetgrent
  1265. 000635b0 g DF .text 000000b8 GLIBC_2.0 __libc_free
  1266. 00068d40 g DF .text 000000a3 GLIBC_2.0 strncpy
  1267. 000adf90 w DF .text 00000036 GLIBC_2.0 unlink
  1268. 0002aed0 w DF .text 00000073 GLIBC_2.0 setenv
  1269. 000b2c70 w DF .text 0000003a GLIBC_2.0 getrusage
  1270. 000b3ca0 g DF .text 0000002e GLIBC_2.0 sync
  1271. 0005c2b0 g DF .text 0000024c GLIBC_2.1 freopen64
  1272. 0006de30 g DF .text 00000047 GLIBC_2.1.1 __strpbrk_c3
  1273. 00058190 g DF .text 0000004c GLIBC_2.2 _IO_sungetwc
  1274. 00117db8 w DO .data 00000004 GLIBC_2.0 program_invocation_short_name
  1275. 00069d10 w DF .text 00000068 GLIBC_2.0 strcasecmp
  1276. 000cd390 g DF .text 00000007 GLIBC_2.0 htonl
  1277. 000bb2e0 w DF .text 00000078 GLIBC_2.0 sendto
  1278. 000ac7e0 g DF .text 00000015 GLIBC_2.3.2 lchmod
  1279. 000dfc30 g DF .text 00000065 GLIBC_2.0 xdr_u_long
  1280. 000226e0 w DF .text 00000017 GLIBC_2.3 isalpha_l
  1281. 000a4490 w DF .text 00000036 GLIBC_2.0 sched_get_priority_max
  1282. 000b4020 g DF .text 00000015 GLIBC_2.0 revoke
  1283. 0005efa0 g DF .text 00000063 GLIBC_2.1 _IO_file_setbuf
  1284. 000abb70 g DF .text 0000003a GLIBC_2.2 posix_spawnattr_getsigmask
  1285. 000d45d0 g DF .text 00000068 GLIBC_2.0 setnetgrent
  1286. 00053270 w DF .text 0000002d GLIBC_2.0 funlockfile
  1287. 000ebe10 g DF .text 00000248 GLIBC_PRIVATE _dl_open
  1288. 000785d0 g DF .text 00000096 GLIBC_2.0 wcwidth
  1289. 00022560 g DF .text 00000011 GLIBC_2.0 isascii
  1290. 000f4100 g DF .text 00000066 (GLIBC_2.0) getnetbyname_r
  1291. 000dca20 g DF .text 00000081 GLIBC_2.0 xdr_replymsg
  1292. 00065c60 g DF .text 0000021c GLIBC_2.0 realloc
  1293. 000b4900 w DF .text 0000046f GLIBC_2.0 addmntent
  1294. 0002b070 w DF .text 00000036 GLIBC_2.0 on_exit
  1295. 000c6550 g DF .text 00000158 GLIBC_2.3.2 __register_atfork
  1296. 000286a0 g DF .text 00000063 GLIBC_PRIVATE __libc_siglongjmp
  1297. 0005bfd0 w DF .text 00000017 GLIBC_2.0 fcloseall
  1298. 000bd080 g DF .text 000000bd GLIBC_2.0 towupper
  1299. 000be220 g DF .text 0000007d GLIBC_2.1 __iswdigit_l
  1300. 000e3c40 g DF .text 00000103 GLIBC_2.1 key_gendes
  1301. 000be2a0 g DF .text 0000007d GLIBC_2.1 __iswlower_l
  1302. 000d02b0 g DF .text 000000a2 GLIBC_2.0 getrpcent
  1303. 00068720 g DF .text 00000057 GLIBC_2.0 __strdup
  1304. 0002b1a0 g DF .text 0000003c GLIBC_2.1.3 __cxa_atexit
  1305. 000be120 w DF .text 0000007d GLIBC_2.3 iswblank_l
  1306. 00117328 g DO .data 00000004 GLIBC_2.1 argp_err_exit_status
  1307. 000ebdd0 g DF .text 00000033 GLIBC_2.1.1 getutmp
  1308. 000527a0 g DF .text 000000a2 GLIBC_2.1 tmpfile64
  1309. 00037b30 w DF .text 00000065 GLIBC_2.1 makecontext
  1310. 00027f50 g DF .text 00000018 GLIBC_2.0 __isnanf
  1311. 00000000 g DO *ABS* 00000000 GLIBC_2.3.3 GLIBC_2.3.3
  1312. 0006d5c0 g DF .text 00000033 GLIBC_2.1.1 __strcat_g
  1313. 00104d74 g DO .rodata 00000004 (GLIBC_2.0) sys_nerr
  1314. 00115680 g DO .data.rel.ro 00000100 (GLIBC_2.1) _sys_siglist
  1315. 00058290 g DF .text 0000003d GLIBC_2.2 _IO_wmarker_delta
  1316. 000ba900 g DF .text 00000036 GLIBC_2.3.2 epoll_create
  1317. 000f3f10 g DF .text 00000063 (GLIBC_2.0) gethostbyname2_r
  1318. 000f09a0 g DF .text 00000095 (GLIBC_2.0) fopen
  1319. 00069ac0 g DF .text 0000009d GLIBC_2.0 bcopy
  1320. 000700c0 w DF .text 00000075 GLIBC_2.1 wcsnlen
  1321. 000c9730 w DF .text 0000010e (GLIBC_2.0) res_init
  1322. 0005b220 g DF .text 000000cc GLIBC_2.0 _IO_getc
  1323. 00062a90 g DF .text 0000000f GLIBC_2.0 __libc_mallopt
  1324. 000b55f0 g DF .text 0000001a GLIBC_2.0 remque
  1325. 00069550 g DF .text 0000010c GLIBC_2.0 strtok
  1326. 000bded0 w DF .text 0000005d GLIBC_2.0 towctrans
  1327. 00056710 g DF .text 000000d4 GLIBC_2.0 _IO_ungetc
  1328. 00029240 g DF .text 00000027 GLIBC_2.0 sigfillset
  1329. 000e6f30 g DF .text 00000069 GLIBC_2.1 xdr_uint16_t
  1330. 00069960 g DF .text 0000001e GLIBC_2.0 memcmp
  1331. 000a43e0 g DF .text 0000003c GLIBC_2.0 __sched_setscheduler
  1332. 000bb020 g DF .text 00000039 GLIBC_2.0 listen
  1333. 000dd380 g DF .text 00000042 GLIBC_2.0 svcerr_noprog
  1334. 000f4f20 g DF __libc_freeres_fn 00000087 GLIBC_2.1 __libc_freeres
  1335. 0007aee0 g DF .text 00000030 GLIBC_2.0 __gmtime_r
  1336. 000a44d0 w DF .text 00000036 GLIBC_2.0 sched_get_priority_min
  1337. 000b1670 g DF .text 000001d5 GLIBC_2.2 posix_fallocate
  1338. 000df0b0 g DF .text 00000344 GLIBC_2.0 svcudp_bufcreate
  1339. 000e0100 g DF .text 000000cd GLIBC_2.0 xdr_opaque
  1340. 000a6da0 g DF .text 00000059 GLIBC_2.1 wordfree
  1341. 00062b30 w DF .text 00000092 GLIBC_2.0 malloc_trim
  1342. 000d7840 g DF .text 00000152 GLIBC_2.3.4 getipv4sourcefilter
  1343. 00117480 g DO .data 00000004 (GLIBC_2.0) __ctype_tolower
  1344. 000ab430 g DF .text 00000038 GLIBC_2.2 posix_spawnattr_getsigdefault
  1345. 00037ba0 w DF .text 000000a6 GLIBC_2.1 swapcontext
  1346. 00089980 w DF .text 00000059 GLIBC_2.0 fork
  1347. 000299f0 g DF .text 0000016d GLIBC_2.1 sigset
  1348. 00052300 g DF .text 00000034 GLIBC_2.0 sscanf
  1349. 000713d0 w DF .text 0000003e GLIBC_2.1 __wcstoll_l
  1350. 00022740 g DF .text 00000017 GLIBC_2.1 __islower_l
  1351. 0006d8c0 g DF .text 00000047 GLIBC_2.1.1 __strspn_g
  1352. 000c60a0 g DF .text 0000002a GLIBC_2.3.2 pthread_cond_signal
  1353. 00089bb0 g DF .text 00000034 GLIBC_2.0 execv
  1354. 000b4da0 w DF .text 00000084 GLIBC_2.0 setmntent
  1355. 000a4460 g DF .text 0000002e GLIBC_2.0 __sched_yield
  1356. 000220d0 g DF .text 0000007d GLIBC_2.0 isalpha
  1357. 000ac350 g DF .text 00000094 GLIBC_2.1 statvfs
  1358. 00086e80 g DF .text 000000a2 GLIBC_2.0 getgrent
  1359. 00069e10 g DF .text 00000041 GLIBC_2.1 __strcasecmp_l
  1360. 0006e4e0 g DF .text 0000003c GLIBC_2.0 wcscspn
  1361. 00000000 g DO *ABS* 00000000 GLIBC_2.2.3 GLIBC_2.2.3
  1362. 00070290 g DF .text 00000058 GLIBC_2.0 wcstoul
  1363. 000f1a20 g DF .text 0000006d (GLIBC_2.0) _IO_file_write
  1364. 0005ff10 g DF .text 00000013 GLIBC_2.0 _IO_marker_difference
  1365. 00068b80 g DF .text 000000b8 GLIBC_2.0 strncat
  1366. 0008a790 w DF .text 00000035 GLIBC_2.0 setresuid
  1367. 000b2ef0 g DF .text 00000031 GLIBC_2.0 vtimes
  1368. 0008a2b0 g DF .text 0000017a GLIBC_2.0 execlp
  1369. 000ab340 g DF .text 00000097 GLIBC_2.2 posix_spawn_file_actions_adddup2
  1370. 00057330 g DF .text 0000007b GLIBC_2.2 fputws_unlocked
  1371. 000bb780 w DF .text 000000b5 GLIBC_2.0 msgsnd
  1372. 00028a40 w DF .text 00000053 GLIBC_2.0 sigaction
  1373. 0002bf80 g DF .text 0000002d GLIBC_2.0 lcong48
  1374. 000e57f0 g DF .text 000002da GLIBC_2.1 clntunix_create
  1375. 0006e440 g DF .text 00000021 GLIBC_2.0 wcschr
  1376. 000583a0 g DF .text 00000058 GLIBC_2.2 _IO_free_wbackup_area
  1377. 000dc850 g DF .text 0000009d GLIBC_2.0 xdr_callhdr
  1378. 000b3930 g DF .text 0000003a GLIBC_2.0 setdomainname
  1379. 0009f490 w DF .text 0000013f GLIBC_2.0 re_comp
  1380. 000b4d70 w DF .text 0000002a GLIBC_2.0 endmntent
  1381. 0002bf10 g DF .text 0000002d GLIBC_2.0 srand48
  1382. 000c9730 g DF .text 0000010e GLIBC_2.2 __res_init
  1383. 000db540 g DF .text 000000e7 GLIBC_2.0 getrpcport
  1384. 000288a0 g DF .text 00000042 GLIBC_2.0 killpg
  1385. 000b1510 g DF .text 000000a2 GLIBC_2.1 __poll
  1386. 000b3760 g DF .text 00000026 GLIBC_2.0 __getpagesize
  1387. 000cf340 g DF .text 00000165 GLIBC_2.1.2 getprotobynumber_r
  1388. 00054ca0 w DF .text 00000113 GLIBC_2.0 fread
  1389. 0011962c g DO .bss 00000004 GLIBC_PRIVATE __librt_multiple_threads
  1390. 000ccfb0 g DF .text 00000195 GLIBC_2.3.4 __gets_chk
  1391. 0006f160 g DF .text 0000024b GLIBC_2.0 __mbrtowc
  1392. 0008a530 w DF .text 00000097 GLIBC_2.0 group_member
  1393. 000cda90 g DF .text 000002d2 GLIBC_2.1.2 gethostbyaddr_r
  1394. 000abc10 g DF .text 0000003b GLIBC_2.2 posix_spawnattr_setsigmask
  1395. 000b41f0 g DF .text 00000053 GLIBC_2.0 ualarm
  1396. 000ccda0 g DF .text 00000110 GLIBC_2.3.4 __vprintf_chk
  1397. 00060180 g DF .text 00000052 GLIBC_2.0 _IO_free_backup_area
  1398. 000adbd0 w DF .text 000002b3 GLIBC_2.0 ttyname_r
  1399. 00029340 w DF .text 00000015 GLIBC_2.0 sigreturn
  1400. 000cd620 g DF .text 000002c6 GLIBC_2.0 inet_network
  1401. 000e95f0 g DF .text 00000048 GLIBC_2.1 getpmsg
  1402. 000bc350 w DF .text 000001c1 GLIBC_2.0 monstartup
  1403. 00000000 g DO *ABS* 00000000 GLIBC_2.2 GLIBC_2.2
  1404. 00057c90 g DF .text 00000034 GLIBC_2.2 fwscanf
  1405. 000b3090 w DF .text 00000073 GLIBC_2.0 sbrk
  1406. 0008a8f0 g DF .text 00000149 GLIBC_2.0 getlogin_r
  1407. 00103c60 g DO .rodata 00000024 GLIBC_PRIVATE _itoa_lower_digits
  1408. 00068720 w DF .text 00000057 GLIBC_2.0 strdup
  1409. 00028050 w DF .text 0000000d GLIBC_2.0 scalbnf
  1410. 00060fb0 g DF .text 00000138 GLIBC_2.0 __underflow
  1411. 000c6950 w DF .text 000001a9 GLIBC_2.0 inet_aton
  1412. 00022760 g DF .text 00000017 GLIBC_2.1 __isgraph_l
  1413. 000a4550 g DF .text 0000007a GLIBC_2.3.4 sched_getaffinity
  1414. 000b46a0 g DF .text 0000002b GLIBC_2.0 getfsent
  1415. 0007e0b0 g DF .text 00000052 GLIBC_2.1 getdate
  1416. 0006e1a0 g DF .text 00000069 GLIBC_2.1.1 __strncpy_by4
  1417. 000ba240 g DF .text 00000036 GLIBC_2.0 iopl
  1418. 000d1230 g DF .text 0000006a GLIBC_2.0 ether_ntoa_r
  1419. 00067fa0 g DF .text 0000002c GLIBC_2.0 _obstack_allocated_p
  1420. 000abfb0 g DF .text 00000032 GLIBC_2.2 __xstat64
  1421. 0002c610 g DF .text 00000058 GLIBC_2.0 strtoull
  1422. 000ce750 g DF .text 000000a9 GLIBC_2.0 endhostent
  1423. 00000000 w D *UND* 00000000 _pthread_cleanup_push_defer
  1424. 000682f0 w DF .text 00000167 GLIBC_2.0 index
  1425. 0009ff50 w DF .text 00000125 GLIBC_2.0 regcomp
  1426. 0002c110 g DF .text 0000002e GLIBC_2.0 mrand48_r
  1427. 00029170 g DF .text 00000028 GLIBC_2.0 __sigismember
  1428. 000adf10 w DF .text 0000003a GLIBC_2.0 symlink
  1429. 0007b7f0 w DF .text 0000003a GLIBC_2.0 gettimeofday
  1430. 000b6310 g DF .text 000000c2 GLIBC_2.0 ttyslot
  1431. 00028b70 g DF .text 000000a2 GLIBC_2.1.3 __sigsuspend
  1432. 00037ac0 w DF .text 00000068 GLIBC_2.0 setcontext
  1433. 000f4040 g DF .text 00000063 (GLIBC_2.0) getnetbyaddr_r
  1434. 000d4950 g DF .text 000000a2 GLIBC_2.0 getaliasent
  1435. 000f4390 g DF .text 00000037 (GLIBC_2.0) getrpcent_r
  1436. 00021710 w DF .text 0000010e GLIBC_2.3 uselocale
  1437. 0007ac70 w DF .text 000000fa GLIBC_2.0 asctime_r
  1438. 0006e5f0 g DF .text 000000b8 GLIBC_2.0 wcsncat
  1439. 000ad0b0 g DF .text 00000036 GLIBC_2.0 __pipe
  1440. 000a41d0 g DF .text 00000043 GLIBC_2.0 getopt
  1441. 000b3640 w DF .text 00000032 GLIBC_2.0 setreuid
  1442. 0006d380 g DF .text 0000002f GLIBC_2.1.1 __memset_ccn_by2
  1443. 000584f0 g DF .text 000000fd GLIBC_2.2 _IO_wdefault_xsputn
  1444. 0007af10 g DF .text 00000036 GLIBC_2.0 localtime
  1445. 0005fa50 g DF .text 00000033 GLIBC_2.0 _IO_default_uflow
  1446. 000578b0 g DF .text 000000ec GLIBC_2.2 putwchar
  1447. 00069a10 g DF .text 00000056 GLIBC_2.0 memset
  1448. 000cc440 g DF .text 00000005 GLIBC_2.2 __cyg_profile_func_enter
  1449. 00037a10 g DF .text 00000027 GLIBC_2.1 wcstoumax
  1450. 000e41c0 g DF .text 00000091 GLIBC_2.1 netname2host
  1451. 000b8e80 g DF .text 00000022 GLIBC_2.0 err
  1452. 000f3d50 g DF .text 0000005c (GLIBC_2.0) semctl
  1453. 00015e80 g DF .text 00000038 GLIBC_2.1 iconv_close
  1454. 0002caf0 w DF .text 0000002e GLIBC_2.1 __strtol_l
  1455. 000f1e80 g DF .text 0000009a (GLIBC_2.0) _IO_file_sync
  1456. 000b7340 g DF .text 000000c3 GLIBC_2.0 fcvt
  1457. 000b2a00 g DF .text 00000030 GLIBC_2.0 cfmakeraw
  1458. 000aef00 g DF .text 00000024 GLIBC_2.0 ftw
  1459. 00029360 g DF .text 00000022 GLIBC_2.0 siggetmask
  1460. 000ace00 g DF .text 000000f6 GLIBC_2.0 lockf
  1461. 000c6060 g DF .text 00000033 GLIBC_2.3.2 pthread_cond_init
  1462. 000c6480 g DF .text 0000000b GLIBC_PRIVATE __librt_disable_asynccancel
  1463. 000763d0 w DF .text 00000037 GLIBC_2.3 wcstold_l
  1464. 0006e8b0 g DF .text 0000004d GLIBC_2.0 wcsspn
  1465. 000d1e30 g DF .text 000000cf GLIBC_2.2 iruserok_af
  1466. 0008a6a0 g DF .text 00000036 GLIBC_2.0 getsid
  1467. 00054f00 w DF .text 000001d8 GLIBC_2.0 ftell
  1468. 000227a0 g DF .text 00000015 GLIBC_2.1 __ispunct_l
  1469. 000cc4a0 g DF .text 0000009e GLIBC_2.3.4 __memmove_chk
  1470. 0002b8b0 w DF .text 0000005b GLIBC_2.0 srand
  1471. 000cc970 g DF .text 000000be GLIBC_2.3.4 __vsprintf_chk
  1472. 000b3f50 g DF .text 000000ca GLIBC_2.0 sethostid
  1473. 000dd130 g DF .text 00000039 GLIBC_2.2.3 __rpc_thread_svc_pollfd
  1474. 000f3c60 g DF .text 00000099 (GLIBC_2.1) getrlimit64
  1475. 000be610 g DF .text 0000008c GLIBC_2.1 __wctype_l
  1476. 00069760 g DF .text 00000052 GLIBC_2.0 strxfrm
  1477. 000be0a0 g DF .text 0000007d GLIBC_2.1 __iswalpha_l
  1478. 00035ce0 g DF .text 00000067 GLIBC_2.0 strfmon
  1479. 000f3b10 g DF .text 00000033 (GLIBC_2.3.3) sched_setaffinity
  1480. 000b98c0 w DF .text 0000001a GLIBC_2.0 get_phys_pages
  1481. 000445f0 w DF .text 00003c1e GLIBC_2.2 vfwprintf
  1482. 0006f670 w DF .text 00000067 GLIBC_2.0 mbsrtowcs
  1483. 000cca30 g DF .text 00000039 GLIBC_2.3.4 __snprintf_chk
  1484. 00115680 g DO .data.rel.ro 00000080 (GLIBC_2.0) sys_siglist
  1485. 000be1a0 w DF .text 0000007d GLIBC_2.3 iswcntrl_l
  1486. 000f2b60 g DF .text 0000005f (GLIBC_2.0) getpwnam_r
  1487. 000bdc70 w DF .text 000000fd GLIBC_2.0 wctype
  1488. 0005ac30 g DF .text 0000005c GLIBC_2.0 clearerr
  1489. 000b9fe0 g DF .text 00000042 GLIBC_2.3 lgetxattr
  1490. 000c6000 g DF .text 0000002a GLIBC_2.3.2 pthread_cond_broadcast
  1491. 000ab2a0 g DF .text 00000094 GLIBC_2.2 posix_spawn_file_actions_addopen
  1492. 0002b830 w DF .text 0000007b GLIBC_2.0 initstate
  1493. 00062a90 w DF .text 0000000f GLIBC_2.0 mallopt
  1494. 000cceb0 g DF .text 000000fc GLIBC_2.3.4 __vfprintf_chk
  1495. 000eb730 g DF .text 000000d7 GLIBC_2.1 grantpt
  1496. 000ac8c0 w DF .text 000000d4 GLIBC_2.1 open64
  1497. 0005b2f0 g DF .text 000000d9 GLIBC_2.0 getchar
  1498. 000ab4b0 g DF .text 00000012 GLIBC_2.2 posix_spawnattr_getflags
  1499. 000e0300 g DF .text 0000017a GLIBC_2.0 xdr_string
  1500. 000cd3a0 w DF .text 0000000e GLIBC_2.0 ntohs
  1501. 00087e40 g DF .text 00000195 GLIBC_2.0 fgetpwent
  1502. 000cd4c0 g DF .text 00000105 GLIBC_2.0 inet_ntoa
  1503. 0008a440 w DF .text 00000008 GLIBC_2.0 getppid
  1504. 000b2700 w DF .text 000000be GLIBC_2.0 tcgetattr
  1505. 000e4510 g DF .text 000000fc GLIBC_2.1 user2netname
  1506. 000cfd00 g DF .text 00000135 GLIBC_2.0 getservbyport
  1507. 000b4310 g DF .text 0000007a GLIBC_2.0 ptrace
  1508. 000ca4b0 g DF .text 000000ae GLIBC_2.0 __nss_configure_lookup
  1509. 0007b7e0 g DF .text 00000010 GLIBC_2.0 time
  1510. 000f3c20 g DF .text 0000003e (GLIBC_2.2) posix_fallocate64
  1511. 000b5cb0 g DF .text 00000052 GLIBC_2.0 endusershell
  1512. 0006d690 g DF .text 00000042 GLIBC_2.1.1 __strncmp_g
  1513. 000854a0 w DF .text 00000134 GLIBC_2.0 opendir
  1514. 00058810 g DF .text 000000e7 GLIBC_2.2 __wunderflow
  1515. 0006d2a0 g DF .text 00000033 GLIBC_2.1.1 __memcpy_by4
  1516. 000cc450 g DF .text 00000050 GLIBC_2.3.4 __memcpy_chk
  1517. 000cedf0 g DF .text 000000da GLIBC_2.1.2 getnetent_r
  1518. 00060e70 g DF .text 00000138 GLIBC_2.0 __uflow
  1519. 0008a490 w DF .text 00000032 GLIBC_2.0 getgroups
  1520. 000e1690 g DF .text 00000035 GLIBC_2.0 xdrstdio_create
  1521. 0006d880 g DF .text 00000035 GLIBC_2.1.1 __strspn_cg
  1522. 000f3ea0 g DF .text 0000006c (GLIBC_2.0) gethostbyaddr_r
  1523. 000eec70 g DF .text 00000087 GCC_3.0 __register_frame_info_table_bases
  1524. 00035550 g DF .text 0000007d GLIBC_PRIVATE __libc_system
  1525. 000d2020 g DF .text 000001c9 GLIBC_2.2 rresvport_af
  1526. 000222d0 g DF .text 0000007d GLIBC_2.0 isgraph
  1527. 0006e770 g DF .text 000000ab GLIBC_2.0 wcsncpy
  1528. 00021bb0 g DF .text 00000162 GLIBC_2.0 __assert_fail
  1529. 00052300 g DF .text 00000034 GLIBC_2.0 _IO_sscanf
  1530. 0006d760 g DF .text 00000022 GLIBC_2.1.1 __strchrnul_g
  1531. 000b1510 w DF .text 000000a2 GLIBC_2.0 poll
  1532. 00029680 w DF .text 00000072 GLIBC_2.1 sigtimedwait
  1533. 000ba7c0 g DF .text 0000003a GLIBC_2.0 bdflush
  1534. 000c60d0 g DF .text 00000033 (GLIBC_2.0) pthread_cond_wait
  1535. 000d0490 g DF .text 00000125 GLIBC_2.0 getrpcbynumber
  1536. 000bb730 g DF .text 00000047 GLIBC_2.0 ftok
  1537. 000f2ac0 g DF .text 0000005f (GLIBC_2.0) getgrnam_r
  1538. 000f0c10 g DF .text 0000016c (GLIBC_2.0) _IO_fclose
  1539. 000bdf30 g DF .text 0000007d GLIBC_2.1 __iswxdigit_l
  1540. 000c6110 g DF .text 0000003a (GLIBC_2.0) pthread_cond_timedwait
  1541. 00086d50 g DF .text 000000ee GLIBC_2.2.4 getgrouplist
  1542. 00057fd0 g DF .text 0000002d GLIBC_2.2 _IO_switch_to_wbackup_area
  1543. 000b6740 g DF .text 00000024 GLIBC_2.0 syslog
  1544. 00022050 g DF .text 0000007b GLIBC_2.0 isalnum
  1545. 000784e0 w DF .text 00000037 GLIBC_2.1 __wcstof_l
  1546. 000ebc20 g DF .text 00000055 GLIBC_2.1 ptsname
  1547. 00028500 g DF .text 00000023 GLIBC_2.1 __signbitl
  1548. 000600e0 g DF .text 0000003b GLIBC_2.2 _IO_list_resetlock
  1549. 00070140 w DF .text 00000024 GLIBC_2.2 wcschrnul
  1550. 000829f0 w DF .text 000021b8 GLIBC_2.3 wcsftime_l
  1551. 0007d960 w DF .text 0000003a GLIBC_2.0 getitimer
  1552. 000b7fa0 w DF .text 00000024 GLIBC_2.0 hdestroy
  1553. 00052850 g DF .text 000000af GLIBC_2.0 tmpnam
  1554. 00057b50 w DF .text 00000034 GLIBC_2.2 fwprintf
  1555. 000abf20 g DF .text 00000082 GLIBC_2.0 __xmknod
  1556. 00022350 g DF .text 0000007d GLIBC_2.0 isprint
  1557. 000b36c0 g DF .text 0000004d GLIBC_2.0 seteuid
  1558. 0002be90 g DF .text 00000034 GLIBC_2.0 mrand48
  1559. 000dfca0 g DF .text 0000002a GLIBC_2.0 xdr_u_int
  1560. 000e0f40 g DF .text 00000056 GLIBC_2.0 xdrrec_skiprecord
  1561. 000568c0 w DF .text 00000093 GLIBC_2.0 __vsscanf
  1562. 0005b5d0 w DF .text 000000e7 GLIBC_2.0 putc
  1563. 0006c810 g DF .text 00000a85 GLIBC_2.1 __strxfrm_l
  1564. 000a42c0 g DF .text 00000048 GLIBC_2.0 getopt_long_only
  1565. 0006b750 w DF .text 0000103c GLIBC_2.3 strcoll_l
  1566. 000b56e0 g DF .text 0000003c GLIBC_2.0 endttyent
  1567. 000e6ca0 g DF .text 000000d3 GLIBC_2.3.4 xdr_u_quad_t
  1568. 000be7a0 g DF .text 0000005d GLIBC_2.1 __towctrans_l
  1569. 000dbd40 g DF .text 000000b1 GLIBC_2.0 xdr_pmaplist
  1570. 000a45d0 g DF .text 0000013f GLIBC_2.3.4 sched_setaffinity
  1571. 0006b460 g DF .text 00000088 GLIBC_2.0 envz_strip
  1572. 000c5d20 g DF .text 00000033 GLIBC_2.0 pthread_attr_getdetachstate
  1573. 000c6030 g DF .text 0000002a (GLIBC_2.0) pthread_cond_destroy
  1574. 000ba3c0 w DF .text 00000087 GLIBC_2.0 llseek
  1575. 0006dcb0 g DF .text 00000048 GLIBC_2.1.1 __strcspn_c2
  1576. 000acb20 w DF .text 0000003c GLIBC_2.0 __lseek
  1577. 00102375 g DO .rodata 00000012 GLIBC_2.0 _nl_default_dirname
  1578. 000bab00 w DF .text 00000048 GLIBC_2.0 mount
  1579. 00028ea0 w DF .text 0000001c GLIBC_2.2 __xpg_sigpause
  1580. 000d06b0 g DF .text 000000a6 GLIBC_2.0 endrpcent
  1581. 000c71b0 g DF .text 000000c9 GLIBC_2.0 inet_nsap_ntoa
  1582. 00027be0 w DF .text 00000011 GLIBC_2.0 finite
  1583. 000b2fc0 g DF .text 0000007c GLIBC_2.0 nice
  1584. 000555d0 g DF .text 00000045 GLIBC_2.0 _IO_getline
  1585. 000b4da0 g DF .text 00000084 GLIBC_2.2 __setmntent
  1586. 00087c30 w DF .text 00000208 GLIBC_2.0 fgetgrent_r
  1587. 000b4290 g DF .text 00000032 GLIBC_2.0 gtty
  1588. 000d21f0 g DF .text 0000001c GLIBC_2.0 rresvport
  1589. 000c6880 g DF .text 000000d0 GLIBC_2.0 herror
  1590. 0005d1c0 g DF .text 0000005b GLIBC_2.1 fread_unlocked
  1591. 00068460 g DF .text 00000043 GLIBC_2.0 strcmp
  1592. 00058000 g DF .text 00000035 GLIBC_2.2 _IO_wdefault_uflow
  1593. 000b76f0 g DF .text 00000220 GLIBC_2.0 ecvt_r
  1594. 00117334 g DO .data 00000004 GLIBC_2.0 __check_rhosts_file
  1595. 00115680 g DO .data.rel.ro 00000080 (GLIBC_2.0) _sys_siglist
  1596. 000bb3a0 w DF .text 00000039 GLIBC_2.0 shutdown
  1597. 000c5a10 w DF .text 00000038 GLIBC_2.1 argp_usage
  1598. 000c47c0 w DF .text 0000001d GLIBC_2.1 argp_help
  1599. 000e4260 g DF .text 000000f8 GLIBC_2.1 netname2user
  1600. 00016910 g DF .text 00000016 GLIBC_PRIVATE __gconv_get_alias_db
  1601. 000c62b0 g DF .text 0000002a GLIBC_2.0 pthread_mutex_unlock
  1602. 000d9b90 g DF .text 000002ba GLIBC_2.0 callrpc
  1603. 000dc710 g DF .text 00000135 GLIBC_2.0 _seterr_reply
  1604. 000dd1b0 g DF .text 00000030 GLIBC_2.2.3 __rpc_thread_svc_fdset
  1605. 000db950 g DF .text 00000119 GLIBC_2.0 pmap_getmaps
  1606. 0002be10 g DF .text 00000034 GLIBC_2.0 lrand48
  1607. 00117d84 g DO .data 00000004 GLIBC_2.0 obstack_alloc_failed_handler
  1608. 000be420 w DF .text 0000007d GLIBC_2.3 iswpunct_l
  1609. 00115480 g DO .data.rel.ro 000001f8 GLIBC_2.3 _sys_errlist
  1610. 000ad770 g DF .text 00000274 GLIBC_2.0 ttyname
  1611. 000417c0 w DF .text 0000009d GLIBC_2.0 register_printf_function
  1612. 00088420 g DF .text 00000125 GLIBC_2.0 getpwuid
  1613. 000f1630 g DF .text 00000101 (GLIBC_2.1) _IO_fsetpos64
  1614. 000f0ec0 g DF .text 00000235 (GLIBC_2.0) _IO_proc_open
  1615. 000ad030 w DF .text 00000036 GLIBC_2.0 dup
  1616. 000cd8f0 g DF .text 00000028 GLIBC_2.0 __h_errno_location
  1617. 000c9920 g DF .text 00000031 GLIBC_PRIVATE __nss_disable_nscd
  1618. 000ab210 g DF .text 00000084 GLIBC_2.2 posix_spawn_file_actions_addclose
  1619. 0002cfa0 w DF .text 0000002e GLIBC_2.3 strtoul_l
  1620. 000b1850 g DF .text 000002ad GLIBC_2.3.3 posix_fallocate64
  1621. 000b4080 w DF .text 0000003a GLIBC_2.0 swapon
  1622. 00028c90 w DF .text 0000007a GLIBC_2.0 sigblock
  1623. 0006d830 g DF .text 00000048 GLIBC_2.1.1 __strcspn_g
  1624. 00027c00 w DF .text 0000001e GLIBC_2.0 copysign
  1625. 000297e0 w DF .text 0000009e GLIBC_2.1 sigqueue
  1626. 00092ee0 g DF .text 000002ec (GLIBC_2.0) fnmatch
  1627. 000ad220 w DF .text 00000137 GLIBC_2.0 getcwd
  1628. 000acba0 w DF .text 00000116 GLIBC_2.0 euidaccess
  1629. 0006d2e0 g DF .text 0000003c GLIBC_2.1.1 __memcpy_by2
  1630. 000c9840 g DF .text 00000028 GLIBC_2.2 __res_state
  1631. 000cdd70 g DF .text 0000019a GLIBC_2.0 gethostbyname
  1632. 000690c0 g DF .text 000001f2 GLIBC_2.0 strsignal
  1633. 00000000 w D *UND* 00000000 _dl_starting_up
  1634. 000882f0 g DF .text 00000125 GLIBC_2.0 getpwnam
  1635. 00060d70 g DF .text 00000070 GLIBC_2.0 _IO_setb
  1636. 000eee30 g DF .text 0000002f GLIBC_2.0 __deregister_frame
  1637. 000bf160 g DF .text 000000a6 GLIBC_2.0 endspent
  1638. 000d84c0 g DF .text 0000005c GLIBC_2.0 authnone_create
  1639. 00022860 w DF .text 00000048 GLIBC_2.3 isctype
  1640. 000899e0 g DF .text 00000048 GLIBC_2.1.2 __vfork
  1641. 00000000 g DO *ABS* 00000000 GLIBC_2.2.4 GLIBC_2.2.4
  1642. 00027f90 w DF .text 0000001e GLIBC_2.0 copysignf
  1643. 0006dd60 g DF .text 0000002e GLIBC_2.1.1 __strspn_c1
  1644. 00088790 g DF .text 000001de GLIBC_2.1.2 getpwnam_r
  1645. 000cfa50 g DF .text 00000135 GLIBC_2.0 getservbyname
  1646. 0005b220 w DF .text 000000cc GLIBC_2.0 fgetc
  1647. 000b37d0 w DF .text 00000096 GLIBC_2.0 gethostname
  1648. 00065960 w DF .text 00000225 GLIBC_2.0 memalign
  1649. 00043d60 g DF .text 00000034 GLIBC_2.0 sprintf
  1650. 000f20f0 g DF .text 000000e6 (GLIBC_2.0) _IO_file_underflow
  1651. 000b8d00 g DF .text 0000014d GLIBC_2.0 vwarn
  1652. 00069a70 g DF .text 00000044 GLIBC_2.0 __mempcpy
  1653. 000d0b20 g DF .text 00000234 GLIBC_2.0 ether_aton_r
  1654. 000da030 g DF .text 0000033d GLIBC_2.0 clnttcp_create
  1655. 00043da0 w DF .text 00000034 GLIBC_2.0 asprintf
  1656. 000b7050 w DF .text 0000007c GLIBC_2.0 msync
  1657. 00053ef0 g DF .text 000001ca GLIBC_2.1 fclose
  1658. 000688b0 w DF .text 00000154 GLIBC_2.0 strerror_r
  1659. 00059600 g DF .text 000006c2 GLIBC_2.2 _IO_wfile_seekoff
  1660. 0007ae90 g DF .text 0000000d GLIBC_2.0 difftime
  1661. 000be020 g DF .text 0000007d GLIBC_2.1 __iswalnum_l
  1662. 00037a40 w DF .text 0000007b GLIBC_2.1 getcontext
  1663. 0002dc50 w DF .text 00000052 GLIBC_2.0 strtof
  1664. 0005a080 g DF .text 00000469 GLIBC_2.2 _IO_wfile_underflow
  1665. 000b55d0 g DF .text 0000001b GLIBC_2.0 insque
  1666. 000328c0 w DF .text 00000027 GLIBC_2.3 strtod_l
  1667. 00022550 w DF .text 0000000b GLIBC_2.1 __toascii_l
  1668. 000b3af0 w DF .text 000000a2 GLIBC_2.0 pselect
  1669. 00022550 g DF .text 0000000b GLIBC_2.0 toascii
  1670. 00053db0 g DF .text 0000013e GLIBC_2.0 _IO_file_doallocate
  1671. 000545d0 g DF .text 00000151 GLIBC_2.0 _IO_fgets
  1672. 00068520 g DF .text 000000ae GLIBC_2.0 strcspn
  1673. 001022fc g DO .rodata 00000005 GLIBC_2.0 _libc_intl_domainname
  1674. 00069e60 w DF .text 0000004e GLIBC_2.3 strncasecmp_l
  1675. 000cf040 g DF .text 000001c7 GLIBC_2.1.2 getnetbyname_r
  1676. 000be4a0 w DF .text 0000007d GLIBC_2.3 iswspace_l
  1677. 000bdfb0 w DF .text 0000006d GLIBC_2.3 towupper_l
  1678. 000be3a0 g DF .text 0000007d GLIBC_2.1 __iswprint_l
  1679. 000b7dd0 g DF .text 000001cc GLIBC_2.0 qecvt_r
  1680. 000e3ec0 g DF .text 00000068 GLIBC_2.0 xdr_key_netstres
  1681. 00058220 g DF .text 00000070 GLIBC_2.2 _IO_init_wmarker
  1682. 0006d950 g DF .text 00000045 GLIBC_2.1.1 __strpbrk_g
  1683. 00053200 w DF .text 0000002d GLIBC_2.0 flockfile
  1684. 0001e9e0 g DF .text 0000065e GLIBC_2.0 setlocale
  1685. 000baf60 w DF .text 00000039 GLIBC_2.0 getpeername
  1686. 00036e40 g DF .text 00000139 GLIBC_2.0 getsubopt
  1687. 000bd5a0 w DF .text 000000d5 GLIBC_2.0 iswdigit
  1688. 000b2470 g DF .text 00000074 GLIBC_2.0 cfsetspeed
  1689. 000522c0 g DF .text 0000003f GLIBC_2.0 scanf
  1690. 0009c410 w DF .text 000000a8 GLIBC_2.0 regerror
  1691. 000e3960 g DF .text 0000005a GLIBC_2.1 key_setnet
  1692. 0005e500 g DF .text 00000057 GLIBC_2.0 _IO_file_read
  1693. 000ce340 g DF .text 00000271 GLIBC_2.1.2 gethostbyname_r
  1694. 001178e4 g DO .data 00000004 GLIBC_2.0 stderr
  1695. 0007ae50 g DF .text 00000039 GLIBC_2.0 ctime_r
  1696. 000b5280 w DF .text 000001a6 GLIBC_2.3 futimes
  1697. 000ba450 w DF .text 00000036 GLIBC_2.0 umount
  1698. 000e9980 w DF .text 00000062 GLIBC_2.0 pututline
  1699. 000d48a0 g DF .text 000000a8 GLIBC_2.0 setaliasent
  1700. 000b6f60 w DF .text 00000070 GLIBC_2.1 mmap64
  1701. 000bbc30 g DF .text 00000055 GLIBC_2.2 shmctl
  1702. 000829f0 g DF .text 000021b8 GLIBC_2.3 __wcsftime_l
  1703. 000b4140 g DF .text 00000029 GLIBC_2.0 mkstemp
  1704. 0006dd90 g DF .text 00000023 GLIBC_2.1.1 __strspn_c2
  1705. 000b5c60 g DF .text 0000004c GLIBC_2.0 getttynam
  1706. 000b9510 w DF .text 000000b5 GLIBC_2.0 error
  1707. 000be120 g DF .text 0000007d GLIBC_2.1 __iswblank_l
  1708. 0002bdd0 g DF .text 00000037 GLIBC_2.0 erand48
  1709. 00027df0 w DF .text 0000000d GLIBC_2.0 scalbn
  1710. 000ac5f0 w DF .text 00000153 GLIBC_2.1 fstatvfs64
  1711. 000899e0 w DF .text 00000048 GLIBC_2.0 vfork
  1712. 000d0760 g DF .text 000000ad GLIBC_2.0 setrpcent
  1713. 00015d00 g DF .text 0000017e GLIBC_2.1 iconv
  1714. 000b63e0 g DF .text 00000023 GLIBC_2.0 setlogmask
  1715. 00116a80 g DO .data.rel.ro 00000054 GLIBC_2.0 _IO_file_jumps
  1716. 0002b8b0 w DF .text 0000005b GLIBC_2.0 srandom
  1717. 000680c0 g DF .text 00000078 GLIBC_2.0 obstack_free
  1718. 0006b090 w DF .text 000002e9 GLIBC_2.0 argz_replace
  1719. 000bc6c0 w DF .text 000001ba GLIBC_2.0 profil
  1720. 0006a3f0 w DF .text 00000090 GLIBC_2.0 strsep
  1721. 000e9640 g DF .text 00000050 GLIBC_2.1 putmsg
  1722. 000635b0 w DF .text 000000b8 GLIBC_2.0 cfree
  1723. 00030150 w DF .text 00000027 GLIBC_2.1 __strtof_l
  1724. 000ba140 g DF .text 00000048 GLIBC_2.3 setxattr
  1725. 000e1be0 g DF .text 000000b3 GLIBC_2.1 xdr_sizeof
  1726. 00022560 w DF .text 00000011 GLIBC_2.1 __isascii_l
  1727. 00067450 g DF .text 00000094 GLIBC_2.0 muntrace
  1728. 00027f20 g DF .text 00000024 GLIBC_2.0 __isinff
  1729. 000ac220 w DF .text 0000012f GLIBC_2.1 fstatfs64
  1730. 000891a0 g DF .text 0000007c GLIBC_2.0 __waitpid
  1731. 000f41d0 g DF .text 00000037 (GLIBC_2.0) getprotoent_r
  1732. 00027bb0 w DF .text 00000027 GLIBC_2.0 isnan
  1733. 000f1520 g DF .text 00000101 (GLIBC_2.0) _IO_fsetpos
  1734. 000d6890 g DF .text 00000bae GLIBC_2.3 getifaddrs
  1735. 00089980 g DF .text 00000059 GLIBC_PRIVATE __libc_fork
  1736. 0009feb0 w DF .text 00000092 GLIBC_2.0 re_compile_fastmap
  1737. 000e1540 g DF .text 00000142 GLIBC_2.0 xdr_reference
  1738. 000f4270 g DF .text 00000066 (GLIBC_2.0) getservbyname_r
  1739. 000b8e50 g DF .text 00000023 GLIBC_2.0 verr
  1740. 000be520 w DF .text 0000007d GLIBC_2.3 iswupper_l
  1741. 00057af0 g DF .text 00000059 GLIBC_2.0 putchar_unlocked
  1742. 000a4360 w DF .text 0000003a GLIBC_2.0 sched_setparam
  1743. 0002b350 g DF .text 00000044 GLIBC_2.0 ldiv
  1744. 000de130 g DF .text 00000222 GLIBC_2.0 registerrpc
  1745. 000292f0 g DF .text 00000046 GLIBC_2.0 sigismember
  1746. 000705f0 g DF .text 00000052 GLIBC_2.0 __wcstof_internal
  1747. 0007b7a0 w DF .text 0000003c GLIBC_2.0 timelocal
  1748. 00015620 g DF .text 00000031 (GLIBC_2.0) __fixunsxfdi
  1749. 000ab510 g DF .text 00000010 GLIBC_2.2 posix_spawnattr_setpgroup
  1750. 000e2690 g DF .text 000000a0 GLIBC_2.1 cbc_crypt
  1751. 000c9620 g DF .text 00000106 GLIBC_PRIVATE __res_maybe_init
  1752. 00056df0 w DF .text 000000cd GLIBC_2.2 getwc
  1753. 0011a8ec g DO .bss 00000004 GLIBC_2.1 __key_gendes_LOCAL
  1754. 00043400 g DF .text 000008a1 GLIBC_2.1 printf_size
  1755. 00070a60 w DF .text 0000003e GLIBC_2.3 wcstol_l
  1756. 000f1100 g DF .text 00000088 (GLIBC_2.0) _IO_popen
  1757. 000b3c20 w DF .text 00000071 GLIBC_2.0 fsync
  1758. 0006d7c0 g DF .text 00000028 GLIBC_2.1.1 __strrchr_g
  1759. 000ac030 g DF .text 00000032 GLIBC_2.2 __lxstat64
  1760. 00065670 w DF .text 00000107 GLIBC_2.0 valloc
  1761. 0006a3f0 g DF .text 00000090 GLIBC_2.1.1 __strsep_g
  1762. 000f3e00 g DF .text 00000037 (GLIBC_2.0) getspent_r
  1763. 00028170 w DF .text 00000055 GLIBC_2.0 isinfl
  1764. 0005ada0 g DF .text 000000e7 GLIBC_2.0 fputc
  1765. 00000000 DF *UND* 000003de GLIBC_2.3 ___tls_get_addr
  1766. 000ca610 g DF .text 000003c4 GLIBC_2.0 __nss_database_lookup
  1767. 000d1f00 g DF .text 00000031 GLIBC_2.0 iruserok
  1768. 0006b4f0 g DF .text 000000df GLIBC_2.0 envz_merge
  1769. 000b72e0 g DF .text 00000056 GLIBC_2.0 ecvt
  1770. 000be800 g DF .text 000000a2 GLIBC_2.0 getspent
  1771. 00078770 g DF .text 00000ee8 GLIBC_2.1 __wcscoll_l
  1772. 000cc860 g DF .text 000000b8 GLIBC_2.3.4 __strncpy_chk
  1773. 000281d0 w DF .text 00000048 GLIBC_2.0 isnanl
  1774. 0005cfa0 g DF .text 00000010 GLIBC_2.0 feof_unlocked
  1775. 000c6490 g DF .text 00000065 GLIBC_PRIVATE __librt_enable_asynccancel
  1776. 000e0ee0 g DF .text 00000059 GLIBC_2.0 xdrrec_eof
  1777. 00058ce0 g DF .text 000000ab GLIBC_2.2 _IO_wdefault_finish
  1778. 000ede10 g DF .text 00000043 GLIBC_2.1 _dl_mcount_wrapper_check
  1779. 0007da80 g DF .text 0000003e GLIBC_2.0 timegm
  1780. 000b9c40 w DF .text 00000073 GLIBC_2.0 step
  1781. 0006df50 g DF .text 00000073 GLIBC_2.1.1 __strsep_3c
  1782. 000b0ff0 g DF .text 00000517 GLIBC_2.0 fts_read
  1783. 0005d0f0 g DF .text 000000d0 GLIBC_2.0 _IO_peekc_locked
  1784. 00020e00 w DF .text 00000049 GLIBC_2.3 nl_langinfo_l
  1785. 00062aa0 w DF .text 00000087 GLIBC_2.0 mallinfo
  1786. 000d9440 g DF .text 000002ac GLIBC_2.0 clnt_sperror
  1787. 000bc300 g DF .text 00000042 GLIBC_2.0 _mcleanup
  1788. 0005ac90 g DF .text 00000068 GLIBC_2.0 _IO_feof
  1789. 000229b0 g DF .text 00000071 GLIBC_2.3 __ctype_b_loc
  1790. 0006a640 g DF .text 000000dc GLIBC_2.0 strfry
  1791. 00117290 g DO .data 00000004 GLIBC_2.0 optopt
  1792. 0005d030 g DF .text 00000039 GLIBC_2.0 getchar_unlocked
  1793. 000baee0 w DF .text 00000078 GLIBC_2.0 __connect
  1794. 000f3db0 g DF .text 0000004f (GLIBC_2.0) shmctl
  1795. 0006db10 g DF .text 00000094 GLIBC_2.1.1 __strcpy_small
  1796. 00068780 g DF .text 00000064 GLIBC_2.2 __strndup
  1797. 00119b50 g DO .bss 00000004 (GLIBC_2.0) h_errno
  1798. 00088550 g DF .text 000000db GLIBC_2.1.2 getpwent_r
  1799. 000aadb0 w DF .text 00000082 GLIBC_2.1 pread
  1800. 000cfe40 g DF .text 0000016c GLIBC_2.1.2 getservbyport_r
  1801. 000c62e0 g DF .text 00000020 GLIBC_2.0 pthread_self
  1802. 000f0d80 g DF .text 0000013d (GLIBC_2.0) _IO_proc_close
  1803. 000c6340 g DF .text 00000033 GLIBC_2.0 pthread_setcanceltype
  1804. 0005ab20 g DF .text 0000010f GLIBC_2.2 fwide
  1805. 000bdae0 w DF .text 000000d0 GLIBC_2.0 iswupper
  1806. 00115480 g DO .data.rel.ro 000001ec (GLIBC_2.0) _sys_errlist
  1807. 000bafe0 w DF .text 00000039 GLIBC_2.0 getsockopt
  1808. 00087580 g DF .text 000001de GLIBC_2.1.2 getgrgid_r
  1809. 000bf080 g DF .text 000000db GLIBC_2.1.2 getspent_r
  1810. 0008ba80 g DF .text 0000006a GLIBC_2.0 globfree
  1811. 0007af50 w DF .text 00000033 GLIBC_2.0 localtime_r
  1812. 000c67e0 g DF .text 0000009e GLIBC_2.0 hstrerror
  1813. 000d60c0 g DF .text 00000021 GLIBC_2.3 freeifaddrs
  1814. 000a4a90 g DF .text 00000625 GLIBC_2.0 getaddrinfo
  1815. 000168f0 g DF .text 00000016 GLIBC_PRIVATE __gconv_get_modules_db
  1816. 00093980 w DF .text 0000001f GLIBC_2.0 re_set_syntax
  1817. 000bb420 w DF .text 00000039 GLIBC_2.0 socketpair
  1818. 00058140 g DF .text 00000049 GLIBC_2.2 _IO_sputbackwc
  1819. 0008a7d0 w DF .text 00000035 GLIBC_2.0 setresgid
  1820. 0005d070 g DF .text 0000003e GLIBC_2.0 fflush_unlocked
  1821. 000b7150 w DF .text 00000048 GLIBC_2.3.3 remap_file_pages
  1822. 000edf70 g DF .text 00000037 GLIBC_PRIVATE __libc_dlclose
  1823. 000b8550 w DF .text 00000022 GLIBC_2.0 twalk
  1824. 000b5260 w DF .text 00000015 GLIBC_2.3 lutimes
  1825. 000f1190 g DF .text 00000021 (GLIBC_2.0) pclose
  1826. 000e24f0 g DF .text 000000bf GLIBC_2.1 xdr_authdes_cred
  1827. 00080940 g DF .text 00000059 GLIBC_2.0 strftime
  1828. 0006abc0 w DF .text 000000c7 GLIBC_2.0 argz_create_sep
  1829. 00028050 w DF .text 0000000d GLIBC_2.1 scalblnf
  1830. 00057220 g DF .text 0000010f GLIBC_2.2 fputws
  1831. 00070a60 w DF .text 0000003e GLIBC_2.1 __wcstol_l
  1832. 000e9b90 w DF .text 000000d2 GLIBC_2.0 getutid_r
  1833. 0005d220 g DF .text 000000a6 GLIBC_2.1 fwrite_unlocked
  1834. 0005bed0 w DF .text 00000034 GLIBC_2.0 obstack_printf
  1835. 00118d44 g DO .bss 00000004 GLIBC_2.0 __timezone
  1836. 0006eb30 g DF .text 0000009c GLIBC_2.0 wmemcmp
  1837. 0007dac0 g DF .text 0000007a GLIBC_2.0 ftime
  1838. 0002b3a0 g DF .text 00000095 GLIBC_2.0 lldiv
  1839. 0006d3b0 g DF .text 00000035 GLIBC_2.1.1 __memset_gcn_by4
  1840. 00058360 g DF .text 00000036 GLIBC_2.2 _IO_unsave_wmarkers
  1841. 0006ec30 w DF .text 00000024 GLIBC_2.0 wmemmove
  1842. 000b1b50 g DF .text 00000042 GLIBC_2.3 sendfile64
  1843. 0005f0a0 g DF .text 00000147 GLIBC_2.0 _IO_file_open
  1844. 000ab4d0 g DF .text 0000001e GLIBC_2.2 posix_spawnattr_setflags
  1845. 000c7580 g DF .text 00000034 GLIBC_2.0 __res_randomid
  1846. 00086590 g DF .text 0000005e GLIBC_2.0 getdirentries
  1847. 000221d0 g DF .text 0000007d GLIBC_2.0 isdigit
  1848. 000f1f20 g DF .text 00000143 (GLIBC_2.0) _IO_file_overflow
  1849. 00054dc0 g DF .text 00000131 GLIBC_2.2 _IO_fsetpos
  1850. 000f44d0 g DF .text 0000005f (GLIBC_2.0) getaliasbyname_r
  1851. 00069c70 w DF .text 00000091 GLIBC_2.0 stpncpy
  1852. 000b41a0 g DF .text 00000043 GLIBC_2.2 mkdtemp
  1853. 000b4700 g DF .text 00000084 GLIBC_2.0 getmntent
  1854. 000226c0 g DF .text 00000015 GLIBC_2.1 __isalnum_l
  1855. 00055210 w DF .text 00000167 GLIBC_2.0 fwrite
  1856. 00060120 g DF .text 0000002d GLIBC_2.2 _IO_list_unlock
  1857. 000ac9a0 w DF .text 00000071 GLIBC_2.0 __close
  1858. 000bad00 g DF .text 00000042 GLIBC_2.0 quotactl
  1859. 0007da20 g DF .text 00000058 GLIBC_2.0 dysize
  1860. 000f11c0 g DF .text 0000009d (GLIBC_2.0) tmpfile
  1861. 0011a8f4 g DO .bss 0000000c GLIBC_2.0 svcauthdes_stats
  1862. 00037340 g DF .text 00000631 GLIBC_2.1 fmtmsg
  1863. 000acb60 w DF .text 0000003a GLIBC_2.0 access
  1864. 0011a664 g DO .bss 00000004 GLIBC_2.0 mallwatch
  1865. 000ba550 g DF .text 00000013 GLIBC_2.0 setfsgid
  1866. 000abd70 g DF .text 0000008d GLIBC_2.0 __xstat
  1867. 000a44d0 g DF .text 00000036 GLIBC_2.0 __sched_get_priority_min
  1868. 000aeeb0 g DF .text 00000041 GLIBC_2.3.3 nftw
  1869. 0002c4f0 g DF .text 00000059 (GLIBC_2.0) __strtoq_internal
  1870. 0005f940 g DF .text 00000077 GLIBC_2.0 _IO_switch_to_get_mode
  1871. 0006d600 g DF .text 00000042 GLIBC_2.1.1 __strncat_g
  1872. 000e5530 g DF .text 0000005a GLIBC_2.1 passwd2des
  1873. 000ab1e0 g DF .text 00000026 GLIBC_2.2 posix_spawn_file_actions_destroy
  1874. 000e95a0 g DF .text 0000004d GLIBC_2.1 getmsg
  1875. 00048410 g DF .text 00005615 GLIBC_2.0 _IO_vfscanf
  1876. 000d8d10 g DF .text 0000016c GLIBC_2.0 bindresvport
  1877. 00056960 g DF .text 000001a3 GLIBC_2.2 _IO_fgetpos64
  1878. 000d0af0 g DF .text 0000002d GLIBC_2.0 ether_aton
  1879. 000cd3a0 g DF .text 0000000e GLIBC_2.0 htons
  1880. 00035ab0 w DF .text 00000029 GLIBC_2.0 canonicalize_file_name
  1881. 0002dbf0 g DF .text 00000052 GLIBC_2.0 __strtof_internal
  1882. 000c6210 g DF .text 0000002a GLIBC_2.0 pthread_mutex_destroy
  1883. 0011a840 g DO .bss 00000080 GLIBC_2.0 svc_fdset
  1884. 00021680 w DF .text 00000084 GLIBC_2.3 freelocale
  1885. 00027110 g DF .text 0000006d GLIBC_2.0 catclose
  1886. 001157a0 g DO .data.rel.ro 00000080 (GLIBC_2.0) sys_sigabbrev
  1887. 000b8b70 g DF .text 00000075 GLIBC_2.0 lsearch
  1888. 00079f60 w DF .text 00000053 GLIBC_2.1 wcscasecmp
  1889. 000483d0 w DF .text 00000037 GLIBC_2.0 vfscanf
  1890. 000f1630 g DF .text 00000101 (GLIBC_2.1) fsetpos64
  1891. 0007e110 g DF .text 00000062 GLIBC_2.0 strptime
  1892. 000dd170 g DF .text 00000039 GLIBC_2.2.3 __rpc_thread_createerr
  1893. 0005b6c0 g DF .text 000000d2 GLIBC_2.0 rewind
  1894. 0002c610 w DF .text 00000058 GLIBC_2.0 strtouq
  1895. 00117284 g DO .data 00000004 GLIBC_2.0 re_max_failures
  1896. 0005ae90 g DF .text 00000296 GLIBC_2.0 freopen
  1897. 00066e00 g DF .text 000000f8 GLIBC_2.0 mcheck
  1898. 000589e0 g DF .text 000000e7 GLIBC_2.2 __wuflow
  1899. 000a2840 w DF .text 00000037 GLIBC_2.0 re_search
  1900. 0005d000 w DF .text 00000028 GLIBC_2.1 fgetc_unlocked
  1901. 0008b0f0 g DF .text 00000673 GLIBC_2.2 __sysconf
  1902. 000bb840 g DF .text 000000c4 GLIBC_PRIVATE __libc_msgrcv
  1903. 0002bbf0 w DF .text 00000117 GLIBC_2.0 initstate_r
  1904. 000c6280 g DF .text 0000002a GLIBC_2.0 pthread_mutex_lock
  1905. 000f4170 g DF .text 0000005f (GLIBC_2.0) getprotobynumber_r
  1906. 0002bd90 g DF .text 00000034 GLIBC_2.0 drand48
  1907. 000b27c0 g DF .text 00000041 GLIBC_2.0 tcgetpgrp
  1908. 000d5b90 g DF .text 00000046 GLIBC_2.1 if_freenameindex
  1909. 00028a40 w DF .text 00000053 GLIBC_2.0 __sigaction
  1910. 000cc920 g DF .text 00000032 GLIBC_2.3.4 __sprintf_chk
  1911. 00029470 g DF .text 00000035 GLIBC_2.0 sigandset
  1912. 00022ef0 w DF .text 00000024 GLIBC_2.0 gettext
  1913. 00066840 g DF .text 000003b7 GLIBC_2.0 __libc_calloc
  1914. 0006aee0 g DF .text 00000054 GLIBC_2.0 __argz_stringify
  1915. 00028170 g DF .text 00000055 GLIBC_2.0 __isinfl
  1916. 0002c230 w DF .text 0000006a GLIBC_2.0 lcong48_r
  1917. 00119118 g DO .bss 00000004 GLIBC_2.0 __curbrk
  1918. 00057690 g DF .text 000000e1 GLIBC_2.2 ungetwc
  1919. 00070170 g DF .text 00000059 GLIBC_2.0 __wcstol_internal
  1920. 00015690 g DF .text 00000023 (GLIBC_2.0) __fixunsdfdi
  1921. 00000000 DO *UND* 00000004 GLIBC_PRIVATE __libc_enable_secure
  1922. 0006d450 g DF .text 00000030 GLIBC_2.1.1 __strcpy_g
  1923. 000b1510 g DF .text 000000a2 GLIBC_PRIVATE __libc_poll
  1924. 000e0810 g DF .text 0000003e GLIBC_2.0 xdr_float
  1925. 0005f9c0 g DF .text 00000076 GLIBC_2.0 _IO_doallocbuf
  1926. 00069e60 g DF .text 0000004e GLIBC_2.1 __strncasecmp_l
  1927. 00000000 g DO *ABS* 00000000 GLIBC_2.2.2 GLIBC_2.2.2
  1928. 00060640 w DF .text 00000177 GLIBC_2.2 _flushlbf
  1929. 000ce5c0 g DF .text 000000a4 GLIBC_2.0 gethostent
  1930. 000809a0 g DF .text 00000059 GLIBC_2.2 wcsftime
  1931. 000cebf0 g DF .text 0000014c GLIBC_2.0 getnetbyname
  1932. 000dd760 g DF .text 00000074 GLIBC_2.0 svc_unregister
  1933. 000155c0 g DF .text 00000028 GLIBC_2.0 __errno_location
  1934. 00015960 g DF .text 0000007c (GLIBC_2.0) __divdi3
  1935. 00036df0 g DF .text 00000042 GLIBC_2.1 __strfmon_l
  1936. 000aded0 w DF .text 0000003a GLIBC_2.0 link
  1937. 000bba60 g DF .text 00000062 GLIBC_2.2 semctl
  1938. 000b98e0 w DF .text 00000210 GLIBC_2.0 get_nprocs
  1939. 0006ac90 g DF .text 00000044 GLIBC_2.0 __argz_next
  1940. 00087940 g DF .text 000002e5 GLIBC_PRIVATE _nss_files_parse_grent
  1941. 00117488 g DO .data 00000004 (GLIBC_2.2) __ctype32_tolower
  1942. 0005bb50 w DF .text 000000f5 GLIBC_2.0 __vsnprintf
  1943. 0006e520 g DF .text 0000005b GLIBC_2.0 wcsdup
  1944. 000be7a0 w DF .text 0000005d GLIBC_2.3 towctrans_l
  1945. 000680c0 g DF .text 00000078 GLIBC_2.0 _obstack_free
  1946. 000bb9c0 g DF .text 0000004f GLIBC_2.0 semop
  1947. 0002af90 g DF .text 000000db GLIBC_2.0 exit
  1948. 000c6060 g DF .text 00000033 (GLIBC_2.0) pthread_cond_init
  1949. 00118644 w DO .bss 00000004 GLIBC_2.0 __free_hook
  1950. 000c6030 g DF .text 0000002a GLIBC_2.3.2 pthread_cond_destroy
  1951. 0006d430 g DF .text 00000016 GLIBC_2.1.1 __strlen_g
  1952. 000bdbb0 g DF .text 000000be GLIBC_2.0 towlower
  1953. 00000000 w D *UND* 00000000 __pthread_setspecific
  1954. 00069d10 g DF .text 00000068 GLIBC_2.0 __strcasecmp
  1955. 000bb780 g DF .text 000000b5 GLIBC_PRIVATE __libc_msgsnd
  1956. 000abe00 g DF .text 0000008d GLIBC_2.0 __fxstat
  1957. 000d1200 g DF .text 0000002d GLIBC_2.0 ether_ntoa
  1958. 0002cfa0 w DF .text 0000002e GLIBC_2.1 __strtoul_l
  1959. 0002b2c0 g DF .text 00000031 GLIBC_2.0 llabs
  1960. 00043d60 g DF .text 00000034 GLIBC_2.0 _IO_sprintf
  1961. 000d74f0 g DF .text 0000009d GLIBC_2.3.3 inet6_option_next
  1962. 000be320 w DF .text 0000007d GLIBC_2.3 iswgraph_l
  1963. 00022e50 w DF .text 00000015 GLIBC_2.0 bindtextdomain
  1964. 0007d9e0 g DF .text 00000036 GLIBC_2.0 stime
  1965. 000b9e80 g DF .text 0000003c GLIBC_2.3 flistxattr
  1966. 000baac0 g DF .text 0000003c GLIBC_2.0 klogctl
  1967. 00058c50 g DF .text 00000083 GLIBC_2.2 _IO_wsetb
  1968. 000292b0 g DF .text 00000040 GLIBC_2.0 sigdelset
  1969. 00035c60 g DF .text 0000007c GLIBC_2.0 rpmatch
  1970. 0005b7a0 g DF .text 00000033 GLIBC_2.0 setbuf
  1971. 00028060 w DF .text 0000006b GLIBC_2.0 frexpf
  1972. 000e5650 g DF .text 000000bb GLIBC_2.0 xencrypt
  1973. 00029390 w DF .text 000000a7 GLIBC_2.1 sysv_signal
  1974. 000c6bc0 g DF .text 00000255 GLIBC_2.0 inet_ntop
  1975. 000283f0 w DF .text 00000072 GLIBC_2.0 frexpl
  1976. 00022720 w DF .text 00000017 GLIBC_2.3 isdigit_l
  1977. 000b3040 w DF .text 00000042 GLIBC_2.0 brk
  1978. 000bd220 w DF .text 000000d5 GLIBC_2.0 iswalnum
  1979. 000db490 g DF .text 000000ac GLIBC_2.0 get_myaddress
  1980. 00057f30 g DF .text 00000024 GLIBC_2.2 swscanf
  1981. 0008a750 w DF .text 00000035 GLIBC_2.0 getresgid
  1982. 00021d20 g DF .text 00000195 GLIBC_2.0 __assert_perror_fail
  1983. 0003ad40 g DF .text 0000414a GLIBC_2.0 _IO_vfprintf
  1984. 00087060 g DF .text 00000125 GLIBC_2.0 getgrnam
  1985. 0011a8c0 g DO .bss 0000000c GLIBC_2.0 _null_auth
  1986. 0006e470 g DF .text 0000002e GLIBC_2.0 wcscmp
  1987. 000e14c0 g DF .text 0000007f GLIBC_2.0 xdr_pointer
  1988. 000cdf10 g DF .text 000001a2 GLIBC_2.0 gethostbyname2
  1989. 000ab0a0 w DF .text 00000094 GLIBC_2.1 __pwrite64
  1990. 000561e0 g DF .text 000000ea GLIBC_2.0 _IO_seekoff
  1991. 000ba5c0 g DF .text 0000006b GLIBC_2.3.3 gnu_dev_makedev
  1992. 00056b40 g DF .text 00000137 GLIBC_2.2 fsetpos64
  1993. 0011a6cc g DO .bss 00000004 GLIBC_2.0 error_one_per_line
  1994. 000ddb40 g DF .text 00000062 GLIBC_2.1 _authenticate
  1995. 00000000 DO *UND* 00000004 GLIBC_PRIVATE _dl_argv
  1996. 000227a0 w DF .text 00000015 GLIBC_2.3 ispunct_l
  1997. 000b7290 g DF .text 00000050 GLIBC_2.0 gcvt
  1998. 000ba780 w DF .text 00000036 GLIBC_2.1 ntp_adjtime
  1999. 00054840 g DF .text 00000033 GLIBC_2.1 fopen
  2000. 00029b80 g DF .text 00000028 GLIBC_2.0 atoi
  2001. 0008d450 g DF .text 0000006a GLIBC_2.1 globfree64
  2002. 0006d910 g DF .text 00000032 GLIBC_2.1.1 __strpbrk_cg
  2003. 00022150 g DF .text 0000007b GLIBC_2.0 iscntrl
  2004. 000aff20 g DF .text 000000ef GLIBC_2.0 fts_close
  2005. 0005cfb0 g DF .text 00000010 GLIBC_2.0 ferror_unlocked
  2006. 00027180 g DF .text 00000182 GLIBC_2.0 catopen
  2007. 0005b5d0 g DF .text 000000e7 GLIBC_2.0 _IO_putc
  2008. 000f3d00 g DF .text 0000004f (GLIBC_2.0) msgctl
  2009. 000ba6f0 g DF .text 0000003a (GLIBC_2.0) setrlimit
  2010. 000cca70 g DF .text 00000102 GLIBC_2.3.4 __vsnprintf_chk
  2011. 000e99f0 w DF .text 00000069 GLIBC_2.0 getutent_r
  2012. 000f27d0 g DF .text 000001ed (GLIBC_2.1) scandir64
  2013. 0005ad70 g DF .text 00000027 GLIBC_2.0 fileno
  2014. 000c4de0 w DF .text 00000b50 GLIBC_2.1 argp_parse
  2015. 000b6770 g DF .text 000005c7 GLIBC_2.0 vsyslog
  2016. 000370e0 g DF .text 00000072 GLIBC_2.1 addseverity
  2017. 000c5ee0 g DF .text 00000033 GLIBC_2.0 pthread_attr_setschedpolicy
  2018. 00061220 g DF .text 00000042 GLIBC_2.0 _IO_str_underflow
  2019. 000d36d0 g DF .text 0000003f GLIBC_2.0 rexec
  2020. 00028670 g DF .text 00000022 GLIBC_2.0 _setjmp
  2021. 0005d2d0 g DF .text 000000a2 GLIBC_2.1 fgets_unlocked
  2022. 00022930 g DF .text 00000071 GLIBC_2.3 __ctype_toupper_loc
  2023. 00071940 w DF .text 0000003e GLIBC_2.3 wcstoull_l
  2024. 00028160 g DF .text 0000000d GLIBC_2.1 __signbitf
  2025. 00053080 w DF .text 0000003a GLIBC_2.0 getline
  2026. 00073ea0 w DF .text 00000037 GLIBC_2.3 wcstod_l
  2027. 0006ecc0 w DF .text 00000038 GLIBC_2.0 wcpcpy
  2028. 000d0150 g DF .text 000000a6 GLIBC_2.0 endservent
  2029. 00000000 w D *UND* 00000000 _IO_stdin_used
  2030. 00089a28 g DF .text 00000013 GLIBC_2.0 _exit
  2031. 000e6840 g DF .text 000002c8 GLIBC_2.1 svcunix_create
  2032. 0006e400 w DF .text 00000034 GLIBC_2.0 wcscat
  2033. 00056360 g DF .text 000000e3 GLIBC_2.0 _IO_seekpos
  2034. 000f1a90 g DF .text 000003f0 (GLIBC_2.0) _IO_file_seekoff
  2035. 00054410 g DF .text 000001b8 GLIBC_2.2 fgetpos
  2036. 00078770 w DF .text 00000ee8 GLIBC_2.3 wcscoll_l
  2037. 000685d0 w DF .text 00000146 GLIBC_2.1 strverscmp
  2038. 00088240 g DF .text 000000a2 GLIBC_2.0 getpwent
  2039. 0007aea0 g DF .text 00000033 GLIBC_2.0 gmtime
  2040. 00069310 g DF .text 000000ae GLIBC_2.0 strspn
  2041. 0006ef90 g DF .text 00000155 GLIBC_2.0 wctob
  2042. 0005df90 g DF .text 000001cc GLIBC_2.1 _IO_file_xsputn
  2043. 00053ef0 g DF .text 000001ca GLIBC_2.1 _IO_fclose
  2044. 000b71e0 g DF .text 0000003a GLIBC_2.0 munlock
  2045. 00052980 g DF .text 00000077 GLIBC_2.0 tempnam
  2046. 000b6d90 g DF .text 00000168 GLIBC_2.0 daemon
  2047. 000b8ed0 g DF .text 000000ef GLIBC_2.0 vwarnx
  2048. 000c6240 g DF .text 00000033 GLIBC_2.0 pthread_mutex_init
  2049. 00015320 g DF .text 000000e7 GLIBC_2.0 __libc_start_main
  2050. 000283e0 w DF .text 0000000d GLIBC_2.1 scalblnl
  2051. 000ad0f0 g DF .text 00000078 GLIBC_PRIVATE __libc_creat
  2052. 000d0060 g DF .text 000000e2 GLIBC_2.1.2 getservent_r
  2053. 00068a10 g DF .text 000000af GLIBC_2.0 strlen
  2054. 000ba3c0 w DF .text 00000087 GLIBC_2.1 lseek64
  2055. 0006aa00 w DF .text 00000078 GLIBC_2.0 argz_append
  2056. 00028b30 g DF .text 00000034 GLIBC_2.0 sigpending
  2057. 000ac840 w DF .text 0000007c GLIBC_2.0 open
  2058. 000b4040 g DF .text 00000036 GLIBC_2.0 vhangup
  2059. 00086140 g DF .text 0000018f GLIBC_2.2 readdir64_r
  2060. 000f2b20 g DF .text 00000037 (GLIBC_2.0) getpwent_r
  2061. 00117db4 w DO .data 00000004 GLIBC_2.0 program_invocation_name
  2062. 000e6e80 g DF .text 0000003f GLIBC_2.1 xdr_uint32_t
  2063. 000abbb0 g DF .text 00000015 GLIBC_2.2 posix_spawnattr_getschedpolicy
  2064. 000ba330 w DF .text 0000008e GLIBC_2.0 clone
  2065. 000edfb0 g DF .text 00000063 GLIBC_PRIVATE __libc_dlsym
  2066. 00021ef0 g DF .text 00000068 GLIBC_2.0 toupper
  2067. 000e0640 g DF .text 000001c7 GLIBC_2.0 xdr_array
  2068. 00057c10 g DF .text 00000039 GLIBC_2.2 wprintf
  2069. 000483d0 g DF .text 00000037 GLIBC_2.0 __vfscanf
  2070. 000e4090 g DF .text 0000006c GLIBC_2.0 xdr_cryptkeyarg2
  2071. 000acd00 w DF .text 000000b3 GLIBC_2.0 __fcntl
  2072. 000b2ae0 g DF .text 00000032 GLIBC_2.2 getrlimit
  2073. 000b9f00 g DF .text 00000048 GLIBC_2.3 fsetxattr
  2074. 00029be0 g DF .text 00000028 GLIBC_2.0 atoll
  2075. 000e3410 g DF .text 00000037 GLIBC_2.1 des_setparity
  2076. 000f1390 g DF .text 00000181 (GLIBC_2.1) fgetpos64
  2077. 0007ada0 g DF .text 00000088 GLIBC_2.0 clock
  2078. 000530c0 g DF .text 00000049 GLIBC_2.0 getw
  2079. 000e3de0 g DF .text 00000068 GLIBC_2.1 xdr_getcredres
  2080. 0006d6e0 g DF .text 00000021 GLIBC_2.1.1 __strchr_c
  2081. 00078570 g DF .text 00000052 GLIBC_2.0 wcsxfrm
  2082. 0005b9b0 w DF .text 000000da GLIBC_2.0 vdprintf
  2083. 00021ec0 g DF .text 00000025 GLIBC_2.2 __assert
  2084. 0005fd30 g DF .text 0000003f GLIBC_2.0 _IO_init
  2085. 00022760 w DF .text 00000017 GLIBC_2.3 isgraph_l
  2086. 000763d0 w DF .text 00000037 GLIBC_2.1 __wcstold_l
  2087. 00117478 g DO .data 00000004 (GLIBC_2.0) __ctype_b
  2088. 000eb880 w DF .text 00000398 GLIBC_2.1 ptsname_r
  2089. 00021520 g DF .text 00000159 GLIBC_2.1 __duplocale
  2090. 00094c00 w DF .text 00000060 GLIBC_2.0 regfree
  2091. 0006ac90 w DF .text 00000044 GLIBC_2.0 argz_next
  2092. 0006e210 g DF .text 00000051 GLIBC_2.1.1 __strsep_1c
  2093. 00089980 g DF .text 00000059 GLIBC_2.0 __fork
  2094. 0002b300 g DF .text 00000044 GLIBC_2.0 div
  2095. 000eb070 w DF .text 0000010d GLIBC_2.0 updwtmp
  2096. 00022580 w DF .text 00000015 GLIBC_2.3 isblank_l
  2097. 000f3a80 g DF .text 00000042 (GLIBC_2.0) regexec
  2098. 0002b2a0 g DF .text 0000000d GLIBC_2.0 abs
  2099. 00070470 g DF .text 00000052 GLIBC_2.0 __wcstod_internal
  2100. 000682f0 g DF .text 00000167 GLIBC_2.0 strchr
  2101. 000e9a60 w DF .text 0000004c GLIBC_2.0 setutent
  2102. 000f2070 g DF .text 00000072 (GLIBC_2.0) _IO_file_attach
  2103. 000600b0 g DF .text 00000007 GLIBC_2.2 _IO_iter_end
  2104. 00078670 g DF .text 000000f5 GLIBC_2.0 wcswidth
  2105. 000cc540 g DF .text 0000004e GLIBC_2.3.4 __mempcpy_chk
  2106. 000e2480 g DF .text 00000069 GLIBC_2.1 xdr_authdes_verf
  2107. 00054b50 w DF .text 00000146 GLIBC_2.0 fputs
  2108. 0006ace0 g DF .text 00000080 GLIBC_2.0 argz_delete
  2109. 0011a8cc g DO .bss 00000004 GLIBC_2.2 svc_max_pollfd
  2110. 000ba780 w DF .text 00000036 GLIBC_2.0 adjtimex
  2111. 00089fd0 g DF .text 000002de GLIBC_2.0 execvp
  2112. 000d0ec0 g DF .text 00000334 GLIBC_2.0 ether_line
  2113. 000c5e60 g DF .text 00000033 GLIBC_2.0 pthread_attr_setschedparam
  2114. 00079fc0 w DF .text 0000006c GLIBC_2.1 wcsncasecmp
  2115. 001157a0 g DO .data.rel.ro 00000104 GLIBC_2.3.3 sys_sigabbrev
  2116. 0008a6e0 w DF .text 0000002e GLIBC_2.0 setsid
  2117. 000ee290 g DF .text 0000001f GLIBC_PRIVATE _dl_sym
  2118. 0005cb10 g DF .text 00000036 GLIBC_PRIVATE __libc_fatal
  2119. 000355d0 g DF .text 000004d7 GLIBC_2.3 realpath
  2120. 000880c0 g DF .text 00000175 GLIBC_2.0 putpwent
  2121. 000b3090 g DF .text 00000073 GLIBC_2.0 __sbrk
  2122. 000b3710 g DF .text 0000004d GLIBC_2.0 setegid
  2123. 000b7010 w DF .text 0000003c GLIBC_2.0 mprotect
  2124. 0005e390 g DF .text 00000082 GLIBC_2.1 _IO_file_attach
  2125. 000ba840 g DF .text 0000003a GLIBC_2.1 capset
  2126. 000b0c40 g DF .text 00000124 GLIBC_2.0 fts_children
  2127. 0011a8d0 g DO .bss 00000010 GLIBC_2.0 rpc_createerr
  2128. 000abc50 g DF .text 0000001d GLIBC_2.2 posix_spawnattr_setschedpolicy
  2129. 000f0940 g DF .text 0000005a (GLIBC_2.0) fopencookie
  2130. 0011a6e8 g DO .bss 00000004 GLIBC_2.1 argp_program_version_hook
  2131. 00028e30 g DF .text 00000069 GLIBC_2.0 __sigpause
  2132. 000855e0 w DF .text 00000085 GLIBC_2.0 closedir
  2133. 00058ad0 g DF .text 00000175 GLIBC_2.2 _IO_wdefault_pbackfail
  2134. 00029770 g DF .text 00000069 GLIBC_PRIVATE __libc_sigwaitinfo
  2135. 000b8eb0 g DF .text 0000001d GLIBC_2.0 warn
  2136. 000bf430 g DF .text 000003f5 GLIBC_PRIVATE _nss_files_parse_spent
  2137. 00056df0 w DF .text 000000cd GLIBC_2.2 fgetwc
  2138. 000cef80 g DF .text 000000b2 GLIBC_2.0 setnetent
  2139. 00052250 w DF .text 00000037 GLIBC_2.2 vfwscanf
  2140. 000be720 w DF .text 00000071 GLIBC_2.3 wctrans_l
  2141. 0006e0c0 g DF .text 0000005f GLIBC_2.1.1 __strncpy_byn
  2142. 0002b3a0 w DF .text 00000095 GLIBC_2.1.1 imaxdiv
  2143. 00117698 g DO .data 00000004 GLIBC_2.0 _IO_list_all
  2144. 000b9bc0 w DF .text 0000007c GLIBC_2.0 advance
  2145. 000ba880 g DF .text 0000003c GLIBC_2.0 create_module
  2146. 000703b0 w DF .text 00000058 GLIBC_2.0 wcstouq
  2147. 000ee020 g DF .text 00000054 GLIBC_PRIVATE __libc_dlopen_mode
  2148. 0006dfd0 g DF .text 00000031 GLIBC_2.1.1 __memcpy_c
  2149. 000b5f80 g DF .text 0000001d GLIBC_2.0 setusershell
  2150. 0006b5d0 g DF .text 00000047 GLIBC_2.0 envz_remove
  2151. 0005b820 w DF .text 00000181 GLIBC_2.0 vasprintf
  2152. 000b9f50 g DF .text 00000042 GLIBC_2.3 getxattr
  2153. 000deda0 g DF .text 00000025 GLIBC_2.0 svcudp_create
  2154. 000c5d60 g DF .text 00000033 GLIBC_2.0 pthread_attr_setdetachstate
  2155. 000bb160 w DF .text 00000078 GLIBC_2.0 recvmsg
  2156. 0005cfc0 g DF .text 0000003b GLIBC_2.0 fputc_unlocked
  2157. 0006a8a0 w DF .text 0000015f GLIBC_2.1.1 strchrnul
  2158. 0011a8e0 g DO .bss 00000004 GLIBC_2.2 svc_pollfd
  2159. 000de020 g DF .text 00000105 GLIBC_2.0 svc_run
  2160. 00000000 DO *UND* 0000000e GLIBC_PRIVATE _dl_out_of_memory
  2161. 00086530 g DF .text 00000024 GLIBC_2.2 alphasort64
  2162. 0005c7c0 g DF .text 0000000f GLIBC_2.2 __fwriting
  2163. 000227e0 g DF .text 00000017 GLIBC_2.1 __isupper_l
  2164. 00028b70 g DF .text 000000a2 GLIBC_PRIVATE __libc_sigsuspend
  2165. 000f3bf0 g DF .text 00000024 (GLIBC_2.2) posix_fadvise64
  2166. 0011a8f0 g DO .bss 00000004 GLIBC_2.1 __key_decryptsession_pk_LOCAL
  2167. 000acd00 w DF .text 000000b3 GLIBC_2.0 fcntl
  2168. 00000000 g DO *ABS* 00000000 GLIBC_2.1.3 GLIBC_2.1.3
  2169. 0007c870 w DF .text 00000074 GLIBC_2.0 tzset
  2170. 000cf8e0 g DF .text 00000165 GLIBC_2.1.2 getprotobyname_r
  2171. 000a4460 w DF .text 0000002e GLIBC_2.0 sched_yield
  2172. 000cfb90 g DF .text 0000016c GLIBC_2.1.2 getservbyname_r
  2173. 000bdd70 g DF .text 00000072 GLIBC_2.0 __iswctype
  2174. 0006ddc0 g DF .text 00000028 GLIBC_2.1.1 __strspn_c3
  2175. 000edba0 g DF .text 00000269 GLIBC_PRIVATE _dl_addr
  2176. 00066f00 g DF .text 00000030 GLIBC_2.2 mcheck_pedantic
  2177. 000bd060 g DF .text 00000013 GLIBC_2.0 _mcount
  2178. 00028470 w DF .text 00000084 GLIBC_2.0 ldexpl
  2179. 00056d80 g DF .text 0000006e GLIBC_2.2 fputwc_unlocked
  2180. 0008a4d0 w DF .text 0000002f GLIBC_2.0 setuid
  2181. 0008a5d0 w DF .text 00000036 GLIBC_2.0 getpgid
  2182. 000ac8c0 w DF .text 000000d4 GLIBC_2.2 __open64
  2183. 0005f1f0 g DF .text 0000042b GLIBC_2.1 _IO_file_fopen
  2184. 0002bed0 g DF .text 00000037 GLIBC_2.0 jrand48
  2185. 00060b80 g DF .text 00000135 GLIBC_2.0 _IO_un_link
  2186. 000ee3f0 g DF .text 00000036 GLIBC_2.0 __register_frame_info_table
  2187. 00086340 g DF .text 000001ed GLIBC_2.2 scandir64
  2188. 0005e420 g DF .text 000000a4 GLIBC_2.1 _IO_file_write
  2189. 000b3d50 g DF .text 000001fa GLIBC_2.0 gethostid
  2190. 000f40b0 g DF .text 00000041 (GLIBC_2.0) getnetent_r
  2191. 0005c500 g DF .text 000000e3 GLIBC_2.1 fseeko64
  2192. 000b98e0 w DF .text 00000210 GLIBC_2.0 get_nprocs_conf
  2193. 000ad360 g DF .text 00000074 GLIBC_2.0 getwd
  2194. 000a29c0 w DF .text 00000047 GLIBC_2.0 re_exec
  2195. 000d7490 g DF .text 00000011 GLIBC_2.3.3 inet6_option_space
  2196. 000da9c0 g DF .text 00000340 GLIBC_2.0 clntudp_bufcreate
  2197. 00060490 g DF .text 00000142 GLIBC_2.0 _IO_default_pbackfail
  2198. 000b24f0 g DF .text 0000020c GLIBC_2.0 tcsetattr
  2199. 00119b50 w DO .bss 00000004 (GLIBC_2.0) _h_errno
  2200. 0006d4c0 g DF .text 00000040 GLIBC_2.1.1 __mempcpy_by2
  2201. 00029440 g DF .text 0000002c GLIBC_2.0 sigisemptyset
  2202. 000ac800 w DF .text 0000003a GLIBC_2.0 mkdir
  2203. 00028d10 w DF .text 0000007a GLIBC_2.0 sigsetmask
  2204. 00065b90 w DF .text 0000008c GLIBC_2.2 posix_memalign
  2205. 000ee3b0 g DF .text 00000036 GLIBC_2.0 __register_frame_info
  2206. 000bb910 g DF .text 0000004e GLIBC_2.0 msgget
  2207. 000d9820 g DF .text 00000129 GLIBC_2.0 clntraw_create
  2208. 000be9e0 g DF .text 0000013a GLIBC_2.0 sgetspent
  2209. 00028c20 w DF .text 00000066 GLIBC_2.0 sigwait
  2210. 0006f3b0 w DF .text 000002bc GLIBC_2.0 wcrtomb
  2211. 0006dd00 g DF .text 00000058 GLIBC_2.1.1 __strcspn_c3
  2212. 000aae90 w DF .text 00000082 GLIBC_2.1 pwrite
  2213. 00027e00 w DF .text 00000073 GLIBC_2.0 frexp
  2214. 000ac9a0 w DF .text 00000071 GLIBC_2.0 close
  2215. 00041860 g DF .text 00000108 GLIBC_2.0 parse_printf_format
  2216. 000b7220 g DF .text 00000036 GLIBC_2.0 mlockall
  2217. 000784e0 w DF .text 00000037 GLIBC_2.3 wcstof_l
  2218. 0008aa40 g DF .text 00000015 GLIBC_2.0 setlogin
  2219. 0011747c g DO .data 00000004 (GLIBC_2.0) __ctype32_b
  2220. 000c5e20 g DF .text 00000033 GLIBC_2.0 pthread_attr_getschedparam
  2221. 000600c0 g DF .text 0000000b GLIBC_2.2 _IO_iter_next
  2222. 000abff0 g DF .text 00000032 GLIBC_2.2 __fxstat64
  2223. 000bbad0 g DF .text 0000004b GLIBC_2.3.3 semtimedop
  2224. 0002b570 g DF .text 000000c4 GLIBC_2.0 mbtowc
  2225. 0002c1a0 w DF .text 00000039 GLIBC_2.0 srand48_r
  2226. 00117d80 w DO .data 00000004 GLIBC_2.0 __memalign_hook
  2227. 000859d0 g DF .text 0000000b GLIBC_2.0 telldir
  2228. 00023d40 w DF .text 00000048 GLIBC_2.2 dcngettext
  2229. 000b4630 g DF .text 00000070 GLIBC_2.0 getfsspec
  2230. 0005cbf0 g DF .text 0000013b GLIBC_2.2 fmemopen
  2231. 000ab420 g DF .text 00000007 GLIBC_2.2 posix_spawnattr_destroy
  2232. 0003ad40 g DF .text 0000414a GLIBC_2.0 vfprintf
  2233. 00069c70 g DF .text 00000091 GLIBC_2.0 __stpncpy
  2234. 00117600 g DO .data 00000098 GLIBC_2.1 _IO_2_1_stderr_
  2235. 00117db4 g DO .data 00000004 GLIBC_2.0 __progname_full
  2236. 000cc590 g DF .text 000000db GLIBC_2.3.4 __memset_chk
  2237. 00028220 g DF .text 0000000e GLIBC_2.0 __finitel
  2238. 00115680 g DO .data.rel.ro 00000104 GLIBC_2.3.3 _sys_siglist
  2239. 00068fb0 g DF .text 000000b3 GLIBC_2.0 strpbrk
  2240. 000b2810 g DF .text 00000033 GLIBC_2.0 tcsetpgrp
  2241. 00000000 g DO *ABS* 00000000 GLIBC_2.3 GLIBC_2.3
  2242. 00000000 DO *UND* 00000004 GLIBC_2.1 __libc_stack_end
  2243. 0008e100 g DF .text 00000e58 GLIBC_2.2 glob64
  2244. 000cb8f0 g DF .text 0000008a GLIBC_2.0 __nss_passwd_lookup
  2245. 000dfc00 g DF .text 0000002a GLIBC_2.0 xdr_int
  2246. 000dfcd0 g DF .text 000000d6 GLIBC_2.1.1 xdr_hyper
  2247. 00028b70 w DF .text 000000a2 GLIBC_2.0 sigsuspend
  2248. 00056c80 g DF .text 000000fc GLIBC_2.2 fputwc
  2249. 00028850 g DF .text 00000046 GLIBC_2.0 raise
  2250. 000b45b0 g DF .text 00000071 GLIBC_2.0 getfsfile
  2251. 000b2900 g DF .text 00000033 GLIBC_2.0 tcflow
  2252. 000d91b0 g DF .text 00000084 GLIBC_2.0 clnt_sperrno
  2253. 000227c0 g DF .text 00000017 GLIBC_2.1 __isspace_l
  2254. 0005ff70 g DF .text 0000007c GLIBC_2.0 _IO_seekmark
  2255. 000635b0 g DF .text 000000b8 GLIBC_2.0 free
  2256. 000bded0 g DF .text 0000005d GLIBC_2.1 __towctrans
  2257. 000c9870 g DF .text 000000b0 GLIBC_PRIVATE __gai_sigqueue
  2258. 000dff40 g DF .text 00000068 GLIBC_2.0 xdr_u_short
  2259. 000f08b0 g DF .text 0000003d (GLIBC_2.0) realpath
  2260. 00028aa0 w DF .text 0000004b GLIBC_2.0 sigprocmask
  2261. 00054840 g DF .text 00000033 GLIBC_2.1 _IO_fopen
  2262. 000c7510 g DF .text 00000070 GLIBC_2.2 __res_nclose
  2263. 000e3e50 g DF .text 0000006c GLIBC_2.0 xdr_key_netstarg
  2264. 0006f0f0 w DF .text 00000019 GLIBC_2.0 mbsinit
  2265. 000bafa0 g DF .text 00000039 GLIBC_2.0 getsockname
  2266. 00056b10 w DF .text 00000030 GLIBC_2.1 fopen64
  2267. 000bddf0 w DF .text 000000d2 GLIBC_2.0 wctrans
  2268. 000b5500 w DF .text 00000050 GLIBC_2.1 ftruncate64