objdump.libc6-2.6 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346
  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 0x00000140 memsz 0x00000140 flags r-x
  8. INTERP off 0x0012d550 vaddr 0x0012d550 paddr 0x0012d550 align 2**0
  9. filesz 0x00000013 memsz 0x00000013 flags r--
  10. LOAD off 0x00000000 vaddr 0x00000000 paddr 0x00000000 align 2**12
  11. filesz 0x00140ca4 memsz 0x00140ca4 flags r-x
  12. LOAD off 0x001411f0 vaddr 0x001411f0 paddr 0x001411f0 align 2**12
  13. filesz 0x0000278c memsz 0x00005400 flags rw-
  14. DYNAMIC off 0x00142d9c vaddr 0x00142d9c paddr 0x00142d9c align 2**2
  15. filesz 0x000000f0 memsz 0x000000f0 flags rw-
  16. NOTE off 0x00000174 vaddr 0x00000174 paddr 0x00000174 align 2**2
  17. filesz 0x00000020 memsz 0x00000020 flags r--
  18. TLS off 0x001411f0 vaddr 0x001411f0 paddr 0x001411f0 align 2**2
  19. filesz 0x00000008 memsz 0x0000002c flags r--
  20. EH_FRAME off 0x0012d564 vaddr 0x0012d564 paddr 0x0012d564 align 2**2
  21. filesz 0x00002a2c memsz 0x00002a2c flags r--
  22. STACK off 0x00000000 vaddr 0x00000000 paddr 0x00000000 align 2**2
  23. filesz 0x00000000 memsz 0x00000000 flags rw-
  24. RELRO off 0x001411f8 vaddr 0x001411f0 paddr 0x001411f0 align 2**0
  25. filesz 0x00001c94 memsz 0x00001c80 flags r--
  26. Dynamic Section:
  27. NEEDED ld-linux.so.2
  28. SONAME libc.so.6
  29. INIT 0x15ea0
  30. FINI_ARRAY 0x1411f8
  31. FINI_ARRAYSZ 0x4
  32. HASH 0x13d99c
  33. GNU_HASH 0x194
  34. STRTAB 0xc85c
  35. SYMTAB 0x3c4c
  36. STRSZ 0x567a
  37. SYMENT 0x10
  38. PLTGOT 0x142ff4
  39. PLTRELSZ 0x40
  40. PLTREL 0x11
  41. JMPREL 0x15d3c
  42. REL 0x13374
  43. RELSZ 0x29c8
  44. RELENT 0x8
  45. VERDEF 0x13058
  46. VERDEFNUM 0x15
  47. FLAGS 0x10
  48. VERNEED 0x13334
  49. VERNEEDNUM 0x1
  50. VERSYM 0x11ed6
  51. RELCOUNT 0x4db
  52. Version definitions:
  53. 1 0x01 0x0865f4e6 libc.so.6
  54. 2 0x00 0x0d696910 GLIBC_2.0
  55. 3 0x00 0x0d696911 GLIBC_2.1
  56. GLIBC_2.0
  57. 4 0x00 0x09691f71 GLIBC_2.1.1
  58. GLIBC_2.1
  59. 5 0x00 0x09691f72 GLIBC_2.1.2
  60. GLIBC_2.1.1
  61. 6 0x00 0x09691f73 GLIBC_2.1.3
  62. GLIBC_2.1.2
  63. 7 0x00 0x0d696912 GLIBC_2.2
  64. GLIBC_2.1.3
  65. 8 0x00 0x09691a71 GLIBC_2.2.1
  66. GLIBC_2.2
  67. 9 0x00 0x09691a72 GLIBC_2.2.2
  68. GLIBC_2.2.1
  69. 10 0x00 0x09691a73 GLIBC_2.2.3
  70. GLIBC_2.2.2
  71. 11 0x00 0x09691a74 GLIBC_2.2.4
  72. GLIBC_2.2.3
  73. 12 0x00 0x09691a76 GLIBC_2.2.6
  74. GLIBC_2.2.4
  75. 13 0x00 0x0d696913 GLIBC_2.3
  76. GLIBC_2.2.6
  77. 14 0x00 0x09691972 GLIBC_2.3.2
  78. GLIBC_2.3
  79. 15 0x00 0x09691973 GLIBC_2.3.3
  80. GLIBC_2.3.2
  81. 16 0x00 0x09691974 GLIBC_2.3.4
  82. GLIBC_2.3.3
  83. 17 0x00 0x0d696914 GLIBC_2.4
  84. GLIBC_2.3.4
  85. 18 0x00 0x0d696915 GLIBC_2.5
  86. GLIBC_2.4
  87. 19 0x00 0x0d696916 GLIBC_2.6
  88. GLIBC_2.5
  89. 20 0x00 0x0963cf85 GLIBC_PRIVATE
  90. GLIBC_2.6
  91. 21 0x00 0x0b792650 GCC_3.0
  92. Version References:
  93. required from ld-linux.so.2:
  94. 0x0963cf85 0x00 24 GLIBC_PRIVATE
  95. 0x0d696913 0x00 23 GLIBC_2.3
  96. 0x0d696911 0x00 22 GLIBC_2.1
  97. DYNAMIC SYMBOL TABLE:
  98. 00000000 w D *UND* 00000000 _IO_stdin_used
  99. 00000000 w D *UND* 00000000 _dl_starting_up
  100. 00000000 DO *UND* 00000004 GLIBC_2.1 __libc_stack_end
  101. 00000000 DF *UND* 00000135 GLIBC_2.3 ___tls_get_addr
  102. 00000000 DF *UND* 00000085 GLIBC_PRIVATE _dl_tls_get_addr_soft
  103. 00000000 DO *UND* 000001c0 GLIBC_PRIVATE _rtld_global_ro
  104. 00000000 DO *UND* 00000004 GLIBC_PRIVATE __libc_enable_secure
  105. 00000000 DO *UND* 00000004 GLIBC_PRIVATE _dl_argv
  106. 00000000 DO *UND* 00000588 GLIBC_PRIVATE _rtld_global
  107. 000756d0 g DF .text 00000023 GLIBC_2.1.1 __strspn_c1
  108. 0005bc90 g DF .text 00000101 GLIBC_2.2 putwchar
  109. 000e8950 g DF .text 00000034 GLIBC_2.4 __gethostname_chk
  110. 00075700 g DF .text 00000025 GLIBC_2.1.1 __strspn_c2
  111. 000ec880 g DF .text 000000a8 GLIBC_2.0 setrpcent
  112. 0007b760 w DF .text 00000039 GLIBC_2.1 __wcstod_l
  113. 00075730 g DF .text 0000002a GLIBC_2.1.1 __strspn_c3
  114. 000b7640 w DF .text 00000034 GLIBC_2.0 sched_get_priority_min
  115. 000d32b0 g DF .text 00000034 GLIBC_2.3.2 epoll_create
  116. 000e8990 g DF .text 00000024 GLIBC_2.4 __getdomainname_chk
  117. 000d3590 g DF .text 0000003a GLIBC_2.0 klogctl
  118. 00023eb0 g DF .text 00000011 GLIBC_2.1 __tolower_l
  119. 00046630 g DF .text 00000034 GLIBC_2.0 dprintf
  120. 000800b0 g DF .text 00000ef3 GLIBC_2.1 __wcscoll_l
  121. 00093590 w DF .text 00000070 GLIBC_2.0 setuid
  122. 000d5fe0 w DF .text 000000cb GLIBC_2.0 iswalpha
  123. 000835a0 g DF .text 00000038 GLIBC_2.0 __gettimeofday
  124. 000f0cb0 g DF .text 0000007c GLIBC_PRIVATE __internal_endnetgrent
  125. 000cbca0 g DF .text 00000034 GLIBC_2.0 chroot
  126. 001447c0 w DO .bss 00000004 GLIBC_2.0 daylight
  127. 0010e2b0 g DF .text 00000063 (GLIBC_2.0) _IO_file_setbuf
  128. 00063b10 g DF .text 00000063 GLIBC_2.1 _IO_file_setbuf
  129. 000861f0 g DF .text 00000052 GLIBC_2.1 getdate
  130. 000e8090 g DF .text 00000107 GLIBC_2.4 __vswprintf_chk
  131. 0010e320 g DF .text 0000015d (GLIBC_2.0) _IO_file_fopen
  132. 000df640 g DF .text 0000003c GLIBC_2.3.2 pthread_cond_signal
  133. 00111240 g DF .text 0000003c (GLIBC_2.0) pthread_cond_signal
  134. 00063d30 g DF .text 000005e0 GLIBC_2.1 _IO_file_fopen
  135. 0002fb70 w DF .text 00000030 GLIBC_2.3 strtoull_l
  136. 000fc6b0 g DF .text 00000068 GLIBC_2.0 xdr_short
  137. 00059a30 g DF .text 000000e9 GLIBC_2.0 _IO_padn
  138. 000d1740 g DF .text 00000048 GLIBC_2.0 lfind
  139. 00071a00 w DF .text 00000151 GLIBC_2.1 strcasestr
  140. 00092740 g DF .text 000002e3 GLIBC_PRIVATE __libc_fork
  141. 00103570 g DF .text 000000bc GLIBC_2.1.1 xdr_int64_t
  142. 0007b760 w DF .text 00000039 GLIBC_2.3 wcstod_l
  143. 000d3ee0 w DF .text 00000037 GLIBC_2.0 socket
  144. 00100360 g DF .text 00000081 GLIBC_2.1 key_encryptsession_pk
  145. 00072090 w DF .text 00000095 GLIBC_2.0 argz_create
  146. 000752d0 g DF .text 00000045 GLIBC_2.1.1 __strpbrk_g
  147. 0005bf20 g DF .text 00000049 GLIBC_2.0 putchar_unlocked
  148. 000f8960 g DF .text 000000f3 GLIBC_2.0 xdr_pmaplist
  149. 000e3790 g DF .text 000000f7 GLIBC_2.2 __res_init
  150. 00039340 g DF .text 00000095 GLIBC_2.0 __xpg_basename
  151. 000e6980 g DF .text 00000033 GLIBC_2.3.4 __stpcpy_chk
  152. 0005fc60 w DF .text 000000e7 GLIBC_2.0 getc
  153. 0005d0a0 g DF .text 00000133 GLIBC_2.2 _IO_wdefault_xsputn
  154. 00076770 w DF .text 000000bc GLIBC_2.0 wcpncpy
  155. 000cc210 g DF .text 0000003d GLIBC_2.2 mkdtemp
  156. 0002e190 w DF .text 00000039 GLIBC_2.0 srand48_r
  157. 0002b520 g DF .text 00000078 GLIBC_2.1 sighold
  158. 0006dc50 g DF .text 00000022 GLIBC_2.0 __default_morecore
  159. 000b7510 g DF .text 00000038 GLIBC_2.0 __sched_getparam
  160. 000ef5e0 g DF .text 00000076 GLIBC_2.0 iruserok
  161. 0003bf30 g DF .text 0000009b GLIBC_2.0 cuserid
  162. 00029440 w DF .text 00000027 GLIBC_2.0 isnan
  163. 0002d8e0 w DF .text 00000106 GLIBC_2.0 setstate_r
  164. 000766e0 g DF .text 00000045 GLIBC_2.0 wmemset
  165. 00109f60 g DF .text 00000086 GCC_3.0 __register_frame_info_bases
  166. 00000000 g DO *ABS* 00000000 GCC_3.0 GCC_3.0
  167. 00063270 g DF .text 00000025 GLIBC_2.0 _IO_file_stat
  168. 00072580 w DF .text 0000038f GLIBC_2.0 argz_replace
  169. 00097320 g DF .text 0000006a GLIBC_2.1 globfree64
  170. 000df030 w DF .text 00000037 GLIBC_2.1 argp_usage
  171. 0012d508 g DO .rodata 00000004 (GLIBC_2.1) _sys_nerr
  172. 0012d50c g DO .rodata 00000004 (GLIBC_2.3) _sys_nerr
  173. 0012d500 g DO .rodata 00000004 GLIBC_2.4 _sys_nerr
  174. 0012d504 g DO .rodata 00000004 (GLIBC_2.0) _sys_nerr
  175. 00072210 w DF .text 00000046 GLIBC_2.0 argz_next
  176. 00146334 g DO .bss 00000004 GLIBC_2.1 getdate_err
  177. 00111110 g DF .text 0000005f (GLIBC_2.0) getspnam_r
  178. 000d7eb0 g DF .text 0000017d GLIBC_2.1.2 getspnam_r
  179. 00092740 g DF .text 000002e3 GLIBC_2.0 __fork
  180. 000b75d0 g DF .text 0000002c GLIBC_2.0 __sched_yield
  181. 000e3790 w DF .text 000000f7 (GLIBC_2.0) res_init
  182. 00082a70 g DF .text 00000032 GLIBC_2.0 __gmtime_r
  183. 00037e30 g DF .text 0000004f GLIBC_2.0 l64a
  184. 00062130 g DF .text 00000094 GLIBC_2.1 _IO_file_attach
  185. 0010da30 g DF .text 00000085 (GLIBC_2.0) _IO_file_attach
  186. 00075360 g DF .text 00000046 GLIBC_2.1.1 __strstr_g
  187. 0008b0d0 w DF .text 00002517 GLIBC_2.3 wcsftime_l
  188. 00059890 w DF .text 00000180 GLIBC_2.0 gets
  189. 00061d80 g DF .text 00000036 GLIBC_2.0 putc_unlocked
  190. 000ec440 g DF .text 0000012d GLIBC_2.0 getrpcbyname
  191. 00058280 w DF .text 000000f8 GLIBC_2.0 fflush
  192. 000fa6e0 g DF .text 00000062 GLIBC_2.1 _authenticate
  193. 00037d40 g DF .text 000000e4 GLIBC_2.0 a64l
  194. 000d0a20 g DF .text 0000002d GLIBC_2.0 hcreate
  195. 0006fa50 g DF .text 00000022 GLIBC_2.0 strcpy
  196. 00015e80 g DF .text 00000005 GLIBC_2.0 __libc_init_first
  197. 000fc3b0 g DF .text 00000041 GLIBC_2.0 xdr_long
  198. 000d4800 g DF .text 00000062 GLIBC_2.0 shmget
  199. 0002a640 w DF .text 000000a7 GLIBC_2.0 sigsuspend
  200. 0005e700 g DF .text 00000170 GLIBC_2.2 _IO_wdo_write
  201. 00056990 g DF .text 00000049 GLIBC_2.0 getw
  202. 000cbe50 g DF .text 00000173 GLIBC_2.0 gethostid
  203. 00056e70 w DF .text 0000004b GLIBC_2.0 flockfile
  204. 00071d40 g DF .text 000000c6 GLIBC_2.1 __rawmemchr
  205. 00081a30 w DF .text 00000073 GLIBC_2.3 wcsncasecmp_l
  206. 00071ff0 w DF .text 00000049 GLIBC_2.0 argz_add
  207. 000e6260 g DF .text 000002bc GLIBC_2.1 __backtrace_symbols
  208. 00075a60 g DF .text 0000005d GLIBC_2.1.1 __strncpy_byn
  209. 00060330 w DF .text 0000017f GLIBC_2.0 vasprintf
  210. 00064870 g DF .text 000001d0 GLIBC_2.0 _IO_un_link
  211. 000e8ba0 g DF .text 00000050 GLIBC_2.4 __wcstombs_chk
  212. 000d5c60 g DF .text 00000013 GLIBC_2.0 _mcount
  213. 00077dd0 g DF .text 0000003e GLIBC_2.0 __wcstod_internal
  214. 000f55d0 g DF .text 000001d0 GLIBC_2.0 authunix_create
  215. 000765d0 g DF .text 000000a0 GLIBC_2.0 wmemcmp
  216. 00082a70 w DF .text 00000032 GLIBC_2.0 gmtime_r
  217. 000c2cf0 w DF .text 00000038 GLIBC_2.0 fchmod
  218. 000e6f90 g DF .text 000000d4 GLIBC_2.3.4 __printf_chk
  219. 00060800 w DF .text 000001c5 GLIBC_2.0 obstack_vprintf
  220. 00075200 g DF .text 00000033 GLIBC_2.1.1 __strspn_cg
  221. 000e8640 g DF .text 00000158 GLIBC_2.4 __fgetws_chk
  222. 00016650 g DF .text 00000038 (GLIBC_2.0) __cmpdi2
  223. 000dfb20 g DF .text 000000eb GLIBC_2.3.2 __register_atfork
  224. 00090090 g DF .text 000000a7 GLIBC_2.0 setgrent
  225. 0002a790 w DF .text 00000055 GLIBC_2.0 sigwait
  226. 000d71b0 w DF .text 0000006e GLIBC_2.3 iswctype_l
  227. 000d6840 w DF .text 0000007b GLIBC_2.0 wctrans
  228. 0003d040 g DF .text 000043ec GLIBC_2.0 _IO_vfprintf
  229. 000cbc60 g DF .text 00000034 GLIBC_2.0 acct
  230. 0002cd30 g DF .text 000000f9 GLIBC_2.0 exit
  231. 000e8f40 g DF .text 00000007 GLIBC_2.0 htonl
  232. 00092dc0 g DF .text 0000015d GLIBC_2.0 execl
  233. 0009f030 w DF .text 0000001f GLIBC_2.0 re_set_syntax
  234. 000eb4c0 g DF .text 000000b0 GLIBC_2.0 endprotoent
  235. 000bf940 g DF .text 0000150f GLIBC_2.1 wordexp
  236. 000eb190 g DF .text 0000017d GLIBC_2.1.2 getprotobynumber_r
  237. 001117c0 g DF .text 0000005f (GLIBC_2.0) getprotobynumber_r
  238. 00023830 g DF .text 00000027 GLIBC_2.2 __assert
  239. 00029410 w DF .text 0000002d GLIBC_2.0 isinf
  240. 00061c50 g DF .text 0000000b GLIBC_2.0 clearerr_unlocked
  241. 00100a60 g DF .text 0000002a GLIBC_2.0 xdr_keybuf
  242. 0009e4f0 g DF .text 000002e9 GLIBC_2.2.3 fnmatch
  243. 0009e4f0 g DF .text 000002e9 (GLIBC_2.0) fnmatch
  244. 00023dd0 g DF .text 00000017 GLIBC_2.1 __islower_l
  245. 000d2f70 g DF .text 00000028 GLIBC_2.3.3 gnu_dev_major
  246. 000e8f50 g DF .text 0000000e GLIBC_2.0 htons
  247. 00103730 g DF .text 0000003f GLIBC_2.1 xdr_uint32_t
  248. 0008e1a0 w DF .text 000000af GLIBC_2.0 readdir
  249. 0002e1d0 w DF .text 0000004a GLIBC_2.0 seed48_r
  250. 0002b5a0 g DF .text 00000078 GLIBC_2.1 sigrelse
  251. 00093ef0 w DF .text 000001e0 GLIBC_2.0 pathconf
  252. 000e5280 g DF .text 00000652 GLIBC_2.2.2 __nss_hostname_digits_dots
  253. 00092c00 g DF .text 00000034 GLIBC_2.0 execv
  254. 000465b0 g DF .text 00000034 GLIBC_2.0 sprintf
  255. 00060070 g DF .text 000000f6 GLIBC_2.0 _IO_putc
  256. 000d3670 g DF .text 0000003a GLIBC_2.0 nfsservctl
  257. 00072a10 g DF .text 0000013e GLIBC_2.0 envz_merge
  258. 00020670 g DF .text 0000065e GLIBC_2.0 setlocale
  259. 00088f70 w DF .text 0000215c GLIBC_2.3 strftime_l
  260. 00071c90 g DF .text 0000001d GLIBC_2.0 memfrob
  261. 00076bd0 w DF .text 00000218 GLIBC_2.0 mbrtowc
  262. 00106e70 w DF .text 000000c9 GLIBC_2.0 getutid_r
  263. 0002d800 w DF .text 00000060 GLIBC_2.0 srand
  264. 000d6be0 w DF .text 00000090 GLIBC_2.3 iswcntrl_l
  265. 000dfd70 g DF .text 00000071 GLIBC_PRIVATE __libc_pthread_init
  266. 000d60b0 w DF .text 000000c9 GLIBC_2.1 iswblank
  267. 0006e920 g DF .text 00000005 GLIBC_2.0 tr_break
  268. 000c36f0 w DF .text 00000070 GLIBC_2.0 __write
  269. 000cba10 g DF .text 00000088 GLIBC_2.0 __select
  270. 000d5e80 g DF .text 00000081 GLIBC_2.0 towlower
  271. 000e8520 g DF .text 000000f8 GLIBC_2.4 __vfwprintf_chk
  272. 0005b4f0 g DF .text 000000ad GLIBC_2.2 fgetws_unlocked
  273. 000c48c0 w DF .text 000002c8 GLIBC_2.0 ttyname_r
  274. 00058860 g DF .text 00000032 GLIBC_2.1 fopen
  275. 0010cab0 g DF .text 00000097 (GLIBC_2.0) fopen
  276. 000bb6b0 g DF .text 0000014f GLIBC_2.1 gai_strerror
  277. 00076210 w DF .text 000000a4 GLIBC_2.0 wcsncpy
  278. 000d7670 g DF .text 0000018e GLIBC_2.0 fgetspent
  279. 00070630 g DF .text 00000226 GLIBC_2.0 strsignal
  280. 00070150 g DF .text 000000f7 GLIBC_2.0 strncmp
  281. 000eae60 g DF .text 000001d2 GLIBC_2.1.2 getnetbyname_r
  282. 00111750 g DF .text 00000066 (GLIBC_2.0) getnetbyname_r
  283. 000fb280 g DF .text 00000012 GLIBC_2.0 svcfd_create
  284. 000eb3d0 g DF .text 000000e4 GLIBC_2.1.2 getprotoent_r
  285. 000cdb40 w DF .text 00000038 GLIBC_2.0 ftruncate
  286. 00111820 g DF .text 000000e7 (GLIBC_2.0) getprotoent_r
  287. 00074f30 g DF .text 0000003c GLIBC_2.1.1 __strncpy_gg
  288. 00100850 g DF .text 0000008d GLIBC_2.1 xdr_unixcred
  289. 00025880 w DF .text 00000047 GLIBC_2.2 dcngettext
  290. 000f91e0 g DF .text 00000087 GLIBC_2.0 xdr_rmtcallres
  291. 0005a0a0 g DF .text 00000195 GLIBC_2.0 _IO_puts
  292. 000e10f0 g DF .text 000001d4 GLIBC_2.0 inet_nsap_addr
  293. 000dfff0 w DF .text 00000169 GLIBC_2.0 inet_aton
  294. 000bb800 g DF .text 0000005b GLIBC_2.1 wordfree
  295. 001464e0 g DO .bss 00000004 GLIBC_2.0 __rcmd_errstr
  296. 000cebd0 g DF .text 000000e5 GLIBC_2.0 ttyslot
  297. 000c1280 g DF .text 00000084 GLIBC_2.2 posix_spawn_file_actions_addclose
  298. 000657c0 g DF .text 00000038 GLIBC_2.0 _IO_unsave_markers
  299. 0008efb0 g DF .text 0000005f GLIBC_2.0 getdirentries
  300. 00064da0 g DF .text 00000039 GLIBC_2.0 _IO_default_uflow
  301. 000e7e00 g DF .text 00000041 GLIBC_2.4 __wcpcpy_chk
  302. 0002fca0 g DF .text 0000003e GLIBC_2.0 __strtold_internal
  303. 001430d0 g DO .data 00000004 GLIBC_2.0 optind
  304. 00075490 g DF .text 00000089 GLIBC_2.1.1 __strcpy_small
  305. 0002dda0 g DF .text 00000037 GLIBC_2.0 erand48
  306. 00146370 g DO .bss 00000004 GLIBC_2.1 argp_program_version
  307. 000786e0 w DF .text 00000040 GLIBC_2.3 wcstoul_l
  308. 000d3030 w DF .text 0000003a GLIBC_2.1 modify_ldt
  309. 0006ba10 g DF .text 000001c5 GLIBC_2.0 __libc_memalign
  310. 000d3f60 g DF .text 00000062 GLIBC_2.0 isfdtype
  311. 000755e0 g DF .text 0000003b GLIBC_2.1.1 __strcspn_c1
  312. 000cc5f0 g DF .text 000000d6 GLIBC_2.0 getfsfile
  313. 00075620 g DF .text 00000048 GLIBC_2.1.1 __strcspn_c2
  314. 0002df50 g DF .text 0000002d GLIBC_2.0 lcong48
  315. 00090ee0 g DF .text 000000a2 GLIBC_2.0 getpwent
  316. 00075670 g DF .text 00000058 GLIBC_2.1.1 __strcspn_c3
  317. 000b5920 w DF .text 0000004b GLIBC_2.0 re_match_2
  318. 00144104 w DO .bss 00000004 GLIBC_2.0 __free_hook
  319. 0008fc60 g DF .text 00000257 GLIBC_2.1 putgrent
  320. 00072470 w DF .text 00000054 GLIBC_2.0 argz_stringify
  321. 000ec0d0 g DF .text 000000e4 GLIBC_2.1.2 getservent_r
  322. 00111a70 g DF .text 000000e7 (GLIBC_2.0) getservent_r
  323. 0005f360 g DF .text 000000ec GLIBC_2.4 open_wmemstream
  324. 000f4580 g DF .text 00000106 GLIBC_2.5 inet6_opt_append
  325. 00070300 g DF .text 000001b9 GLIBC_2.0 strrchr
  326. 000ec270 g DF .text 000000a8 GLIBC_2.0 setservent
  327. 001084a0 w DF .text 000000f3 GLIBC_2.2.1 posix_openpt
  328. 000f9e30 g DF .text 00000042 GLIBC_2.0 svcerr_systemerr
  329. 00061d30 g DF .text 00000042 GLIBC_2.0 fflush_unlocked
  330. 000e8050 g DF .text 00000039 GLIBC_2.4 __swprintf_chk
  331. 00023df0 g DF .text 00000017 GLIBC_2.1 __isgraph_l
  332. 000c1d20 g DF .text 0000001d GLIBC_2.2 posix_spawnattr_setschedpolicy
  333. 0005a680 w DF .text 00000127 GLIBC_2.0 setbuffer
  334. 00091ec0 w DF .text 000000ac GLIBC_2.0 wait
  335. 0005bff0 g DF .text 00000036 GLIBC_2.2 vwprintf
  336. 0006bbe0 w DF .text 0000008c GLIBC_2.2 posix_memalign
  337. 000f3bd0 g DF .text 00000118 GLIBC_2.3.4 getipv4sourcefilter
  338. 00074e00 g DF .text 00000030 GLIBC_2.1.1 __strcpy_g
  339. 000e83f0 g DF .text 00000108 GLIBC_2.4 __vwprintf_chk
  340. 000562c0 g DF .text 00000074 GLIBC_2.0 tempnam
  341. 00023980 g DF .text 00000048 GLIBC_2.0 isalpha
  342. 000320d0 w DF .text 00000029 GLIBC_2.3 strtof_l
  343. 00110890 g DF .text 00000042 (GLIBC_2.0) regexec
  344. 000d2d90 w DF .text 000000a5 GLIBC_2.0 llseek
  345. 000b59f0 g DF .text 000000e7 GLIBC_2.3.4 regexec
  346. 000cc080 g DF .text 00000022 GLIBC_2.0 revoke
  347. 000b59b0 w DF .text 0000003a GLIBC_2.0 re_match
  348. 000d0ed0 w DF .text 000003f4 GLIBC_2.0 tdelete
  349. 000c4f70 g DF .text 00000128 GLIBC_2.4 readlinkat
  350. 000c3fc0 w DF .text 00000034 GLIBC_2.0 pipe
  351. 000e7cb0 g DF .text 0000004c GLIBC_2.4 __wctomb_chk
  352. 000d2300 w DF .text 0000001a GLIBC_2.0 get_avphys_pages
  353. 000f5180 g DF .text 00000170 GLIBC_2.0 authunix_create_default
  354. 0005f6a0 g DF .text 0000009a GLIBC_2.0 _IO_ferror
  355. 000ec590 g DF .text 0000012d GLIBC_2.0 getrpcbynumber
  356. 00072040 w DF .text 00000041 GLIBC_2.0 argz_count
  357. 0006fc90 g DF .text 00000057 GLIBC_2.0 __strdup
  358. 00094670 g DF .text 0000041d GLIBC_2.2 __sysconf
  359. 000e7b00 g DF .text 0000005d GLIBC_2.4 __readlink_chk
  360. 000cb620 w DF .text 00000076 GLIBC_2.0 setregid
  361. 000e2440 g DF .text 0000002b GLIBC_2.2 __res_ninit
  362. 000ca740 w DF .text 000000ac GLIBC_2.0 tcdrain
  363. 000f3cf0 g DF .text 0000014a GLIBC_2.3.4 setipv4sourcefilter
  364. 000ca8f0 g DF .text 00000030 GLIBC_2.0 cfmakeraw
  365. 00077e90 w DF .text 0000003f GLIBC_2.0 wcstold
  366. 000cafc0 g DF .text 00000073 GLIBC_2.0 __sbrk
  367. 00059d20 g DF .text 00000299 GLIBC_2.1 _IO_proc_open
  368. 000d4720 g DF .text 0000007b GLIBC_2.0 shmat
  369. 00055d50 g DF .text 00000197 GLIBC_2.0 perror
  370. 0010d070 g DF .text 00000299 (GLIBC_2.0) _IO_proc_open
  371. 000666c0 g DF .text 00000042 GLIBC_2.0 _IO_str_pbackfail
  372. 00143338 g DO .data 00000008 GLIBC_2.0 __tzname
  373. 00037e80 g DF .text 00000152 GLIBC_2.0 rpmatch
  374. 000c2b50 w DF .text 00000095 GLIBC_2.1 statvfs64
  375. 000e8920 g DF .text 00000024 GLIBC_2.4 __getlogin_r_chk
  376. 00143344 g DO .data 00000004 GLIBC_2.0 __progname
  377. 00046500 w DF .text 00000024 GLIBC_2.0 _IO_fprintf
  378. 0006ad30 w DF .text 00000105 GLIBC_2.0 pvalloc
  379. 00024420 w DF .text 00000049 GLIBC_2.0 dcgettext
  380. 000facd0 g DF .text 000001f2 GLIBC_2.0 registerrpc
  381. 0005e4b0 g DF .text 0000024d GLIBC_2.2 _IO_wfile_overflow
  382. 00077c90 g DF .text 00000046 GLIBC_2.1 wcstoll
  383. 000c1580 g DF .text 00000010 GLIBC_2.2 posix_spawnattr_setpgroup
  384. 00144a94 w DO .bss 00000004 GLIBC_2.0 _environ
  385. 000d0810 g DF .text 000001d1 GLIBC_2.0 qecvt_r
  386. 0010e4f0 g DF .text 000000fe (GLIBC_2.0) _IO_do_write
  387. 000d0140 g DF .text 000001ff GLIBC_2.0 ecvt_r
  388. 00063120 g DF .text 0000002a GLIBC_2.1 _IO_do_write
  389. 00064c90 g DF .text 00000078 GLIBC_2.0 _IO_switch_to_get_mode
  390. 00075eb0 w DF .text 00000034 GLIBC_2.0 wcscat
  391. 00108f50 g DF .text 00000023 GLIBC_2.1 getutxid
  392. 001465ac g DO .bss 00000004 GLIBC_2.1 __key_gendes_LOCAL
  393. 00076df0 w DF .text 00000241 GLIBC_2.0 wcrtomb
  394. 000299f0 g DF .text 0000000d GLIBC_2.1 __signbitf
  395. 000ca1c0 g DF .text 0000004c GLIBC_2.6 sync_file_range
  396. 001462f0 g DO .bss 00000004 (GLIBC_2.0) _obstack
  397. 000ea5f0 g DF .text 00000162 GLIBC_2.0 getnetbyaddr
  398. 000d3a50 w DF .text 0000006c GLIBC_2.0 connect
  399. 000762c0 g DF .text 00000041 GLIBC_2.0 wcspbrk
  400. 00000008 g D .tbss 00000004 GLIBC_PRIVATE errno
  401. 00029440 g DF .text 00000027 GLIBC_2.0 __isnan
  402. 00075170 g DF .text 00000033 GLIBC_2.1.1 __strcspn_cg
  403. 00072b50 g DF .text 00000096 GLIBC_2.0 envz_remove
  404. 00029f60 w DF .text 00000064 GLIBC_2.0 _longjmp
  405. 00025910 w DF .text 00000041 GLIBC_2.2 ngettext
  406. 00029960 w DF .text 00000090 GLIBC_2.0 ldexpf
  407. 0005f750 w DF .text 00000034 GLIBC_2.0 fileno_unlocked
  408. 00146350 g DO .bss 00000004 GLIBC_2.0 error_print_progname
  409. 00029d90 g DF .text 00000023 GLIBC_2.1 __signbitl
  410. 00125578 g DO .rodata 00000010 GLIBC_2.1 in6addr_any
  411. 000cd800 g DF .text 00000022 GLIBC_2.3 lutimes
  412. 001090b0 w DF .text 00000175 GLIBC_2.2.4 dl_iterate_phdr
  413. 00100210 g DF .text 0000005f GLIBC_2.1 key_get_conv
  414. 000cfc20 g DF .text 00000038 GLIBC_2.0 munlock
  415. 000910f0 g DF .text 0000012d GLIBC_2.0 getpwuid
  416. 000711c0 w DF .text 00000091 GLIBC_2.0 stpncpy
  417. 000cdbf0 w DF .text 00000063 GLIBC_2.1 ftruncate64
  418. 000c95f0 g DF .text 00000040 GLIBC_2.1 sendfile
  419. 000cf9b0 w DF .text 0000006e GLIBC_2.1 mmap64
  420. 000e3aa0 g DF .text 00000038 GLIBC_PRIVATE __nss_disable_nscd
  421. 0010ef60 g DF .text 000000e5 (GLIBC_2.0) getpwent_r
  422. 00091240 g DF .text 000000e2 GLIBC_2.1.2 getpwent_r
  423. 000f4870 g DF .text 0000006c GLIBC_2.5 inet6_rth_init
  424. 0002b1d0 g DF .text 0000004f GLIBC_PRIVATE __libc_allocate_rtsig_private
  425. 00029d00 w DF .text 00000086 GLIBC_2.0 ldexpl
  426. 000f4310 g DF .text 00000075 GLIBC_2.5 inet6_opt_next
  427. 000fedc0 g DF .text 000000bc GLIBC_2.1 ecb_crypt
  428. 0005ba60 g DF .text 000000bb GLIBC_2.2 ungetwc
  429. 0008e730 g DF .text 00000024 GLIBC_2.1 versionsort
  430. 000fc670 g DF .text 0000001a GLIBC_2.1.1 xdr_longlong_t
  431. 0007fe70 w DF .text 00000039 GLIBC_2.1 __wcstof_l
  432. 000d0da0 w DF .text 0000005b GLIBC_2.0 tfind
  433. 00046530 g DF .text 00000039 GLIBC_2.0 _IO_printf
  434. 00072210 g DF .text 00000046 GLIBC_2.0 __argz_next
  435. 00076670 w DF .text 00000034 GLIBC_2.0 wmemcpy
  436. 000c1450 g DF .text 00000035 GLIBC_2.2 posix_spawnattr_init
  437. 000c25d0 g DF .text 0000015d GLIBC_2.4 __fxstatat64
  438. 0002acd0 g DF .text 0000002a GLIBC_2.0 __sigismember
  439. 00074c90 g DF .text 0000003d GLIBC_2.1.1 __memcpy_by2
  440. 000c42e0 g DF .text 000000c2 GLIBC_2.0 get_current_dir_name
  441. 000d4650 g DF .text 00000075 GLIBC_2.2 semctl
  442. 00110f20 g DF .text 0000006f (GLIBC_2.0) semctl
  443. 00061c80 g DF .text 00000036 GLIBC_2.0 fputc_unlocked
  444. 00077040 w DF .text 00000058 GLIBC_2.0 mbsrtowcs
  445. 00074c50 g DF .text 00000033 GLIBC_2.1.1 __memcpy_by4
  446. 000d1aa0 g DF .text 00000023 GLIBC_2.0 verr
  447. 000eb040 g DF .text 0000012d GLIBC_2.0 getprotobynumber
  448. 000c50e0 g DF .text 0000014b GLIBC_2.4 unlinkat
  449. 00023d50 w DF .text 00000015 GLIBC_2.3 isalnum_l
  450. 000fe140 g DF .text 00000103 GLIBC_2.0 getsecretkey
  451. 00113170 g DF __libc_thread_freeres_fn 00000031 GLIBC_PRIVATE __libc_thread_freeres
  452. 000fecb0 g DF .text 00000056 GLIBC_2.1 xdr_authdes_verf
  453. 00143420 g DO .data 00000098 GLIBC_2.1 _IO_2_1_stdin_
  454. 0002fba0 g DF .text 0000003e GLIBC_2.0 __strtof_internal
  455. 0008e150 w DF .text 0000004e GLIBC_2.0 closedir
  456. 0008f750 g DF .text 000000b4 GLIBC_2.0 initgroups
  457. 000e90d0 g DF .text 00000152 GLIBC_2.0 inet_ntoa
  458. 0007fe70 w DF .text 00000039 GLIBC_2.3 wcstof_l
  459. 00023250 g DF .text 00000088 GLIBC_2.1 __freelocale
  460. 0010f130 g DF .text 00001755 (GLIBC_2.1) glob64
  461. 000981f0 g DF .text 00001755 GLIBC_2.2 glob64
  462. 000e82d0 g DF .text 000000fb GLIBC_2.4 __fwprintf_chk
  463. 000f9270 g DF .text 000000fd GLIBC_2.0 pmap_rmtcall
  464. 00060070 w DF .text 000000f6 GLIBC_2.0 putc
  465. 000926d0 w DF .text 0000006c GLIBC_2.0 nanosleep
  466. 000c40e0 w DF .text 00000034 GLIBC_2.0 fchdir
  467. 000fc790 g DF .text 00000037 GLIBC_2.0 xdr_char
  468. 000d7da0 g DF .text 000000a7 GLIBC_2.0 setspent
  469. 00058ac0 g DF .text 000000cc GLIBC_2.2 fopencookie
  470. 0010ca50 g DF .text 0000005a (GLIBC_2.0) fopencookie
  471. 00029410 g DF .text 0000002d GLIBC_2.0 __isinf
  472. 000e6850 g DF .text 0000004e GLIBC_2.3.4 __mempcpy_chk
  473. 0005ce10 g DF .text 00000165 GLIBC_2.2 _IO_wdefault_pbackfail
  474. 000f10c0 g DF .text 000000b0 GLIBC_2.0 endaliasent
  475. 00056ed0 w DF .text 00000069 GLIBC_2.0 ftrylockfile
  476. 00078c50 w DF .text 00000040 GLIBC_2.3 wcstoll_l
  477. 00023d70 w DF .text 00000017 GLIBC_2.3 isalpha_l
  478. 00061c60 g DF .text 00000010 GLIBC_2.0 feof_unlocked
  479. 00023d00 g DF .text 00000046 GLIBC_2.0 isblank
  480. 000b58d0 w DF .text 0000004a GLIBC_2.0 re_search_2
  481. 000f9d40 g DF .text 0000004e GLIBC_2.0 svc_sendreply
  482. 00023300 w DF .text 00000084 GLIBC_2.3 uselocale
  483. 000ce920 g DF .text 00000040 GLIBC_2.0 getusershell
  484. 0002ac10 g DF .text 000000b9 GLIBC_2.0 siginterrupt
  485. 0008f9c0 g DF .text 0000012d GLIBC_2.0 getgrgid
  486. 000d3330 g DF .text 0000007c GLIBC_2.3.2 epoll_wait
  487. 000d20a0 w DF .text 000000d7 GLIBC_2.0 error
  488. 0005af20 g DF .text 00000111 GLIBC_2.2 fputwc
  489. 000c1f40 g DF .text 00000041 GLIBC_2.4 mkfifoat
  490. 00111b80 g DF .text 000000e7 (GLIBC_2.0) getrpcent_r
  491. 000d3450 g DF .text 00000034 GLIBC_2.0 get_kernel_syms
  492. 000ec6e0 g DF .text 000000e4 GLIBC_2.1.2 getrpcent_r
  493. 00058fa0 w DF .text 000001d1 GLIBC_2.0 ftell
  494. 000e7980 g DF .text 0000005d GLIBC_2.4 __read_chk
  495. 00145800 g DO .bss 00000200 (GLIBC_2.0) _res
  496. 000e02e0 g DF .text 00000947 GLIBC_2.0 inet_ntop
  497. 00070250 g DF .text 000000a7 GLIBC_2.0 strncpy
  498. 0002a060 w DF .text 000000cf GLIBC_2.0 signal
  499. 000cb950 g DF .text 00000074 GLIBC_2.0 getdomainname
  500. 000e87c0 g DF .text 000000a8 GLIBC_2.4 __fgetws_unlocked_chk
  501. 000e2470 g DF .text 00000112 GLIBC_2.2 __res_nclose
  502. 000d36b0 w DF .text 00000034 GLIBC_2.0 personality
  503. 0005a0a0 w DF .text 00000195 GLIBC_2.0 puts
  504. 000d7020 g DF .text 00000092 GLIBC_2.1 __iswupper_l
  505. 000e6d70 g DF .text 000000c2 GLIBC_2.3.4 __vsprintf_chk
  506. 0002d480 g DF .text 00000046 GLIBC_2.0 mbstowcs
  507. 000228b0 g DF .text 000007fa GLIBC_2.1 __newlocale
  508. 000cae30 g DF .text 0000004d GLIBC_2.0 getpriority
  509. 00039210 g DF .text 00000130 GLIBC_2.0 getsubopt
  510. 000ca920 g DF .text 000000a7 GLIBC_2.1 tcgetsid
  511. 00092740 w DF .text 000002e3 GLIBC_2.0 fork
  512. 000569e0 g DF .text 0000003f GLIBC_2.0 putw
  513. 000d1c10 g DF .text 0000001d GLIBC_2.0 warnx
  514. 000d2b60 g DF .text 0000003a GLIBC_2.0 ioperm
  515. 0005a7d0 g DF .text 00000189 GLIBC_2.0 _IO_setvbuf
  516. 000f8340 g DF .text 00000100 GLIBC_2.0 pmap_unset
  517. 00109590 g DF .text 00000043 GLIBC_2.1 _dl_mcount_wrapper_check
  518. 000d6590 w DF .text 000000cb GLIBC_2.0 iswspace
  519. 00106780 g DF .text 0000001e GLIBC_2.1 isastream
  520. 0005c100 g DF .text 0000003c GLIBC_2.2 vwscanf
  521. 0002a4c0 w DF .text 0000009e GLIBC_2.0 sigprocmask
  522. 000650e0 g DF .text 0000004b GLIBC_2.0 _IO_sputbackc
  523. 0005b5a0 g DF .text 00000122 GLIBC_2.2 fputws
  524. 0002eea0 w DF .text 00000030 GLIBC_2.3 strtoul_l
  525. 00125588 g DO .rodata 00000010 GLIBC_2.1 in6addr_loopback
  526. 000d2910 g DF .text 0000003a GLIBC_2.3 listxattr
  527. 00075090 g DF .text 0000001c GLIBC_2.1.1 __strchr_c
  528. 0002e220 w DF .text 0000006a GLIBC_2.0 lcong48_r
  529. 0009f550 w DF .text 00000060 GLIBC_2.0 regfree
  530. 000e8ff0 g DF .text 0000002f GLIBC_2.0 inet_netof
  531. 000b7510 w DF .text 00000038 GLIBC_2.0 sched_getparam
  532. 000244a0 w DF .text 00000023 GLIBC_2.0 gettext
  533. 000921f0 w DF .text 000001cd GLIBC_2.1 waitid
  534. 0002adb0 g DF .text 00000060 GLIBC_2.0 sigfillset
  535. 0005c660 g DF .text 0000006c GLIBC_2.2 _IO_init_wmarker
  536. 000cd830 w DF .text 00000157 GLIBC_2.3 futimes
  537. 000f6860 g DF .text 000002d3 GLIBC_2.0 callrpc
  538. 000750b0 g DF .text 0000001e GLIBC_2.1.1 __strchr_g
  539. 000cc2f0 g DF .text 00000044 GLIBC_2.0 gtty
  540. 00083580 g DF .text 0000001b GLIBC_2.0 time
  541. 0006b890 g DF .text 00000180 GLIBC_2.0 __libc_malloc
  542. 0008f900 g DF .text 000000a2 GLIBC_2.0 getgrent
  543. 000d3130 w DF .text 00000034 GLIBC_2.1 ntp_adjtime
  544. 000e7e50 g DF .text 0000003b GLIBC_2.4 __wcsncpy_chk
  545. 000cb5a0 w DF .text 00000076 GLIBC_2.0 setreuid
  546. 0002b130 g DF .text 0000005f GLIBC_2.0 sigorset
  547. 00065420 g DF .text 00000024 GLIBC_2.0 _IO_flush_all
  548. 0008e270 w DF .text 00000110 GLIBC_2.0 readdir_r
  549. 0002df80 g DF .text 0000002e GLIBC_2.0 drand48_r
  550. 0006ba10 w DF .text 000001c5 GLIBC_2.0 memalign
  551. 00050a50 w DF .text 00000039 GLIBC_2.0 vfscanf
  552. 0005adc0 g DF .text 0000013c GLIBC_2.2 fsetpos64
  553. 0010d900 g DF .text 0000010e (GLIBC_2.1) fsetpos64
  554. 000eaca0 g DF .text 000000b0 GLIBC_2.0 endnetent
  555. 000d0aa0 g DF .text 000001cd GLIBC_2.0 hsearch_r
  556. 000e8bf0 g DF .text 00000046 GLIBC_2.4 __stack_chk_fail
  557. 00081910 w DF .text 00000047 GLIBC_2.1 wcscasecmp
  558. 000cf7e0 g DF .text 0000016f GLIBC_2.0 daemon
  559. 0005f5f0 g DF .text 0000009a GLIBC_2.0 _IO_feof
  560. 001004f0 g DF .text 0000005a GLIBC_2.1 key_setsecret
  561. 000c20b0 g DF .text 0000008e GLIBC_2.0 __lxstat
  562. 000fab50 g DF .text 0000012a GLIBC_2.0 svc_run
  563. 0005d000 g DF .text 00000093 GLIBC_2.2 _IO_wdefault_finish
  564. 00110f90 g DF .text 00000062 (GLIBC_2.0) shmctl
  565. 000786e0 w DF .text 00000040 GLIBC_2.1 __wcstoul_l
  566. 000d4870 g DF .text 00000065 GLIBC_2.2 shmctl
  567. 000d3550 g DF .text 00000038 GLIBC_2.4 inotify_rm_watch
  568. 00103570 g DF .text 000000bc GLIBC_2.3.4 xdr_quad_t
  569. 00058280 g DF .text 000000f8 GLIBC_2.0 _IO_fflush
  570. 00076bd0 g DF .text 00000218 GLIBC_2.0 __mbrtowc
  571. 000c50a0 w DF .text 00000034 GLIBC_2.0 unlink
  572. 0005be00 g DF .text 00000101 GLIBC_2.0 putchar
  573. 000fcf40 g DF .text 00000032 GLIBC_2.0 xdrmem_create
  574. 000df850 g DF .text 0000003c GLIBC_2.0 pthread_mutex_lock
  575. 00061fe0 g DF .text 000000a7 GLIBC_2.1 fgets_unlocked
  576. 000d7820 g DF .text 000003c3 GLIBC_2.0 putspent
  577. 000d3b80 g DF .text 00000037 GLIBC_2.0 listen
  578. 001036f0 g DF .text 0000003f GLIBC_2.1 xdr_int32_t
  579. 000d43c0 w DF .text 000000c5 GLIBC_2.0 msgrcv
  580. 000ee340 g DF .text 00000060 GLIBC_2.0 __ivaliduser
  581. 000ec380 g DF .text 000000a2 GLIBC_2.0 getrpcent
  582. 000cba10 w DF .text 00000088 GLIBC_2.0 select
  583. 000d3d10 w DF .text 0000006c GLIBC_2.0 __send
  584. 000d63f0 w DF .text 000000cb GLIBC_2.0 iswprint
  585. 000c2ec0 w DF .text 00000038 GLIBC_2.0 mkdir
  586. 000d6a20 g DF .text 00000090 GLIBC_2.1 __iswalnum_l
  587. 00023e30 w DF .text 00000015 GLIBC_2.3 ispunct_l
  588. 000617c0 g DF .text 00000036 GLIBC_PRIVATE __libc_fatal
  589. 00146374 g DO .bss 00000004 GLIBC_2.1 argp_program_version_hook
  590. 000d47a0 g DF .text 00000060 GLIBC_2.0 shmdt
  591. 0006cff0 g DF .text 00000487 GLIBC_2.0 realloc
  592. 000c10c0 w DF .text 000000ef GLIBC_2.1 __pwrite64
  593. 0002d6f0 w DF .text 0000007f GLIBC_2.0 setstate
  594. 000c2770 w DF .text 00000038 GLIBC_2.0 fstatfs
  595. 0012754e g DO .rodata 00000005 GLIBC_2.0 _libc_intl_domainname
  596. 0012d518 g DO .rodata 00000004 GLIBC_2.0 h_nerr
  597. 000f23d0 g DF .text 0000031c GLIBC_2.1 if_nameindex
  598. 00076870 w DF .text 0000018e GLIBC_2.0 btowc
  599. 00072470 g DF .text 00000054 GLIBC_2.0 __argz_stringify
  600. 0005a980 g DF .text 000000ac GLIBC_2.0 _IO_ungetc
  601. 00075a30 g DF .text 00000022 GLIBC_2.1.1 __memset_cc
  602. 0008e3a0 g DF .text 00000068 GLIBC_2.0 rewinddir
  603. 0005c620 g DF .text 0000003f GLIBC_2.2 _IO_adjust_wcolumn
  604. 0002fce0 w DF .text 0000003f GLIBC_2.0 strtold
  605. 000d6ab0 g DF .text 00000092 GLIBC_2.1 __iswalpha_l
  606. 001007e0 g DF .text 00000068 GLIBC_2.0 xdr_key_netstres
  607. 00111d50 g DF .text 000000e5 (GLIBC_2.0) getaliasent_r
  608. 000f0fd0 g DF .text 000000e2 GLIBC_2.1.2 getaliasent_r
  609. 000cbce0 w DF .text 00000065 GLIBC_2.0 fsync
  610. 00082930 g DF .text 0000008d GLIBC_2.0 clock
  611. 00075a30 g DF .text 00000022 GLIBC_2.1.1 __memset_cg
  612. 00106850 g DF .text 00000063 GLIBC_2.1 putmsg
  613. 000f9640 g DF .text 00000083 GLIBC_2.0 xdr_replymsg
  614. 000d41c0 g DF .text 00000041 GLIBC_2.2.4 sockatmark
  615. 000d5c80 g DF .text 00000075 GLIBC_2.0 towupper
  616. 0002b950 g DF .text 00000267 GLIBC_2.0 abort
  617. 0014383c g DO .data 00000004 GLIBC_2.0 stdin
  618. 000fc720 g DF .text 00000068 GLIBC_2.0 xdr_u_short
  619. 00065450 g DF .text 000001fd GLIBC_2.0 _IO_flush_all_linebuffered
  620. 0002e4e0 g DF .text 00000046 GLIBC_2.0 strtoll
  621. 00092a84 g DF .text 00000013 GLIBC_2.0 _exit
  622. 00039d20 g DF .text 00000029 GLIBC_2.1 wcstoumax
  623. 000fa3e0 g DF .text 00000295 GLIBC_2.2 svc_getreq_common
  624. 0005aa40 w DF .text 000000c9 GLIBC_2.0 vsprintf
  625. 0002b420 w DF .text 00000055 GLIBC_2.1 sigwaitinfo
  626. 000d4e00 w DF .text 00000092 GLIBC_2.2 moncontrol
  627. 000d3f20 w DF .text 00000037 GLIBC_2.0 socketpair
  628. 000e12d0 g DF .text 00000136 GLIBC_PRIVATE __res_iclose
  629. 0002d270 g DF .text 00000044 GLIBC_2.0 div
  630. 00070d20 w DF .text 0000019b GLIBC_2.0 memchr
  631. 00034930 w DF .text 00000029 GLIBC_2.1 __strtod_l
  632. 000704c0 g DF .text 000000b3 GLIBC_2.0 strpbrk
  633. 000ecc90 g DF .text 0000002d GLIBC_2.0 ether_aton
  634. 00075c10 w DF .text 000000bb GLIBC_2.2 memrchr
  635. 00023860 g DF .text 00000037 GLIBC_2.0 tolower
  636. 000c3680 w DF .text 00000070 GLIBC_2.0 __read
  637. 000d09f0 w DF .text 00000026 GLIBC_2.0 hdestroy
  638. 0010a0c0 g DF .text 0000003a GLIBC_2.0 __register_frame_info_table
  639. 00059fc0 g DF .text 0000008d GLIBC_2.1 popen
  640. 0010d310 g DF .text 0000008a (GLIBC_2.0) popen
  641. 0006ce00 w DF .text 000001e5 GLIBC_2.0 cfree
  642. 00023c50 g DF .text 00000028 GLIBC_2.0 _tolower
  643. 000ee780 g DF .text 000000a1 GLIBC_2.2 ruserok_af
  644. 000d2630 w DF .text 0000006f GLIBC_2.0 step
  645. 00024420 g DF .text 00000049 GLIBC_2.0 __dcgettext
  646. 000d68c0 w DF .text 0000005d GLIBC_2.0 towctrans
  647. 000d2a10 g DF .text 00000046 GLIBC_2.3 lsetxattr
  648. 000cdda0 g DF .text 00000071 GLIBC_2.0 setttyent
  649. 000c3060 w DF .text 000000e5 GLIBC_2.2 __open64
  650. 00093790 g DF .text 00000013 GLIBC_2.0 __bsd_getpgrp
  651. 000934c0 g DF .text 00000031 GLIBC_2.0 getpid
  652. 00039d50 w DF .text 00000079 GLIBC_2.1 getcontext
  653. 0002a560 w DF .text 00000038 GLIBC_2.0 kill
  654. 00070860 g DF .text 000000ae GLIBC_2.0 strspn
  655. 000df530 g DF .text 0000003c GLIBC_2.0 pthread_condattr_init
  656. 00143340 w DO .data 00000004 GLIBC_2.0 program_invocation_name
  657. 0002d310 w DF .text 00000095 GLIBC_2.1.1 imaxdiv
  658. 00110de0 g DF .text 00000040 (GLIBC_2.2) posix_fallocate64
  659. 000c9350 g DF .text 00000295 GLIBC_2.3.3 posix_fallocate64
  660. 000fa9c0 g DF .text 0000009c GLIBC_2.0 svcraw_create
  661. 000b7600 g DF .text 00000034 GLIBC_2.0 __sched_get_priority_max
  662. 000722f0 w DF .text 00000042 GLIBC_2.0 argz_extract
  663. 000243e0 w DF .text 00000015 GLIBC_2.2 bind_textdomain_codeset
  664. 000583a0 g DF .text 000001df GLIBC_2.2 fgetpos
  665. 0005abb0 g DF .text 000001af GLIBC_2.2 _IO_fgetpos64
  666. 0010d4c0 g DF .text 0000013b (GLIBC_2.0) fgetpos
  667. 0010d620 g DF .text 00000184 (GLIBC_2.1) _IO_fgetpos64
  668. 0006fc90 w DF .text 00000057 GLIBC_2.0 strdup
  669. 000c4070 g DF .text 00000022 GLIBC_2.1 creat64
  670. 00061cc0 w DF .text 0000002a GLIBC_2.0 getc_unlocked
  671. 000fac80 g DF .text 00000043 GLIBC_2.0 svc_exit
  672. 00088ed0 g DF .text 00000045 GLIBC_2.0 strftime
  673. 000e0c30 g DF .text 000003e5 GLIBC_2.0 inet_pton
  674. 00074fb0 g DF .text 00000045 GLIBC_2.1.1 __strncat_g
  675. 000613a0 g DF .text 0000000f GLIBC_2.2 __flbf
  676. 000c3e10 g DF .text 00000130 GLIBC_2.1 lockf64
  677. 0005c3e0 g DF .text 0000002b GLIBC_2.2 _IO_switch_to_main_wget_area
  678. 00101ea0 g DF .text 0000023b GLIBC_2.0 xencrypt
  679. 001068c0 g DF .text 00000046 GLIBC_2.1 putpmsg
  680. 00143338 w DO .data 00000008 GLIBC_2.0 tzname
  681. 00037700 g DF .text 0000007d GLIBC_PRIVATE __libc_system
  682. 001037e0 g DF .text 00000069 GLIBC_2.1 xdr_uint16_t
  683. 00068ec0 g DF .text 0000014b GLIBC_2.0 __libc_mallopt
  684. 0002afc0 w DF .text 000000a2 GLIBC_2.1 sysv_signal
  685. 0002f510 w DF .text 00000030 GLIBC_2.3 strtoll_l
  686. 000df310 g DF .text 00000043 GLIBC_2.0 pthread_attr_getschedparam
  687. 000c3f80 g DF .text 00000038 GLIBC_2.0 __dup2
  688. 000df7c0 g DF .text 0000003c GLIBC_2.0 pthread_mutex_destroy
  689. 0005b0c0 w DF .text 000000e7 GLIBC_2.2 fgetwc
  690. 000cac60 g DF .text 00000074 GLIBC_2.0 vlimit
  691. 000c2cb0 w DF .text 00000038 GLIBC_2.0 chmod
  692. 000cafc0 w DF .text 00000073 GLIBC_2.0 sbrk
  693. 00023550 g DF .text 00000150 GLIBC_2.0 __assert_fail
  694. 001021c0 g DF .text 0000027a GLIBC_2.1 clntunix_create
  695. 00075110 g DF .text 00000020 GLIBC_2.1.1 __strrchr_c
  696. 00023cb0 w DF .text 0000000b GLIBC_2.1 __toascii_l
  697. 000d5f10 w DF .text 000000c9 GLIBC_2.0 iswalnum
  698. 00029470 w DF .text 00000011 GLIBC_2.0 finite
  699. 000edbc0 g DF .text 0000006a GLIBC_2.0 ether_ntoa_r
  700. 000ccec0 g DF .text 000008d5 GLIBC_2.2 __getmntent_r
  701. 00046530 g DF .text 00000039 GLIBC_2.0 printf
  702. 00023d50 g DF .text 00000015 GLIBC_2.1 __isalnum_l
  703. 000d3a50 w DF .text 0000006c GLIBC_2.0 __connect
  704. 000ea960 g DF .text 00000156 GLIBC_2.0 getnetbyname
  705. 000cc1b0 g DF .text 0000002b GLIBC_2.0 mkstemp
  706. 00075130 g DF .text 00000033 GLIBC_2.1.1 __strrchr_g
  707. 000c2a10 g DF .text 00000094 GLIBC_2.1 statvfs
  708. 000c3cc0 w DF .text 00000038 GLIBC_2.0 flock
  709. 000d1f40 w DF .text 0000015c GLIBC_2.0 error_at_line
  710. 00060190 g DF .text 000000f6 GLIBC_2.0 rewind
  711. 0002d230 g DF .text 00000031 GLIBC_2.0 llabs
  712. 00072e50 w DF .text 0000109f GLIBC_2.3 strcoll_l
  713. 001465a0 g DO .bss 0000000c GLIBC_2.0 _null_auth
  714. 00082af0 w DF .text 00000032 GLIBC_2.0 localtime_r
  715. 00075f80 g DF .text 0000003e GLIBC_2.0 wcscspn
  716. 000cace0 g DF .text 00000150 GLIBC_2.0 vtimes
  717. 00029490 w DF .text 0000001e GLIBC_2.0 copysign
  718. 000711c0 g DF .text 00000091 GLIBC_2.0 __stpncpy
  719. 000f44f0 g DF .text 00000090 GLIBC_2.5 inet6_opt_finish
  720. 000926d0 w DF .text 0000006c GLIBC_2.2.6 __nanosleep
  721. 00029840 w DF .text 0000009a GLIBC_2.0 modff
  722. 000d6250 w DF .text 000000cb GLIBC_2.0 iswlower
  723. 0002fc60 w DF .text 0000003f GLIBC_2.0 strtod
  724. 00029ee0 g DF .text 0000003e GLIBC_2.0 setjmp
  725. 000c8e50 g DF .text 000000a4 GLIBC_2.1 __poll
  726. 00023bb0 g DF .text 00000048 GLIBC_2.0 isspace
  727. 000e8870 g DF .text 0000002b GLIBC_2.4 __confstr_chk
  728. 00056240 g DF .text 00000080 GLIBC_2.0 tmpnam_r
  729. 000d7120 g DF .text 0000008b GLIBC_2.1 __wctype_l
  730. 0005b350 g DF .text 00000179 GLIBC_2.2 fgetws
  731. 00108ef0 g DF .text 00000017 GLIBC_2.1 setutxent
  732. 00023d70 g DF .text 00000017 GLIBC_2.1 __isalpha_l
  733. 0002fbe0 w DF .text 0000003f GLIBC_2.0 strtof
  734. 00078c50 w DF .text 00000040 GLIBC_2.1 __wcstoll_l
  735. 000d6c70 w DF .text 00000093 GLIBC_2.3 iswdigit_l
  736. 000d4300 g DF .text 000000b6 GLIBC_PRIVATE __libc_msgsnd
  737. 00082a30 g DF .text 00000035 GLIBC_2.0 gmtime
  738. 00023300 g DF .text 00000084 GLIBC_2.3 __uselocale
  739. 000e7ef0 g DF .text 000000e5 GLIBC_2.4 __wcsncat_chk
  740. 000710f0 g DF .text 00000010 GLIBC_2.0 ffs
  741. 000f9700 g DF .text 00000050 GLIBC_2.0 xdr_opaque_auth
  742. 00022890 w DF .text 0000001e GLIBC_2.0 __ctype_get_mb_cur_max
  743. 000d6d10 g DF .text 00000092 GLIBC_2.1 __iswlower_l
  744. 00029ae0 w DF .text 00000187 GLIBC_2.0 modfl
  745. 00072ca0 g DF .text 0000017d GLIBC_2.0 envz_add
  746. 00070ab0 g DF .text 00000112 GLIBC_2.0 strtok
  747. 001085a0 w DF .text 0000003b GLIBC_2.1 getpt
  748. 0002b480 w DF .text 000000a0 GLIBC_2.1 sigqueue
  749. 0002e3a0 g DF .text 00000046 GLIBC_2.0 strtol
  750. 00091330 g DF .text 000000b0 GLIBC_2.0 endpwent
  751. 00058860 g DF .text 00000032 GLIBC_2.1 _IO_fopen
  752. 0010cab0 g DF .text 00000097 (GLIBC_2.0) _IO_fopen
  753. 00075320 g DF .text 00000036 GLIBC_2.1.1 __strstr_cg
  754. 000c4b90 w DF .text 00000032 GLIBC_2.0 isatty
  755. 000c7440 g DF .text 000000f9 GLIBC_2.0 fts_close
  756. 000c4470 w DF .text 00000053 GLIBC_2.0 lchown
  757. 000cce30 w DF .text 00000083 GLIBC_2.0 setmntent
  758. 000cf950 w DF .text 0000005c GLIBC_2.0 mmap
  759. 000f0db0 g DF .text 000000ca GLIBC_2.0 endnetgrent
  760. 000632a0 g DF .text 0000003f GLIBC_2.0 _IO_file_read
  761. 000f4190 g DF .text 00000143 GLIBC_2.3.4 setsourcefilter
  762. 0010a570 g DF .text 00000052 GLIBC_2.0 __register_frame
  763. 00090c80 w DF .text 000000d4 GLIBC_2.0 getpw
  764. 000d8490 w DF .text 00000226 GLIBC_2.0 fgetspent_r
  765. 000b75d0 w DF .text 0000002c GLIBC_2.0 sched_yield
  766. 00000000 g DO *ABS* 00000000 GLIBC_PRIVATE GLIBC_PRIVATE
  767. 0002e4e0 w DF .text 00000046 GLIBC_2.0 strtoq
  768. 00095810 w DF .text 000000b6 GLIBC_2.0 glob_pattern_p
  769. 00075bb0 g DF .text 00000053 GLIBC_2.1.1 __strsep_1c
  770. 00081960 w DF .text 0000006c GLIBC_2.1 wcsncasecmp
  771. 00090390 g DF .text 000001ec GLIBC_2.1.2 getgrnam_r
  772. 000829e0 g DF .text 00000039 GLIBC_2.0 ctime_r
  773. 0010ef00 g DF .text 0000005f (GLIBC_2.0) getgrnam_r
  774. 00103570 g DF .text 000000bc GLIBC_2.3.4 xdr_u_quad_t
  775. 0002c6b0 w DF .text 00000088 GLIBC_2.0 clearenv
  776. 000d7120 w DF .text 0000008b GLIBC_2.3 wctype_l
  777. 000c2ab0 g DF .text 00000098 GLIBC_2.1 fstatvfs
  778. 0002a7f0 w DF .text 00000063 GLIBC_2.0 sigblock
  779. 000d4250 g DF .text 00000058 GLIBC_2.1 __libc_sa_len
  780. 0005f5f0 w DF .text 0000009a GLIBC_2.0 feof
  781. 001465b0 g DO .bss 00000004 GLIBC_2.1 __key_encryptsession_pk_LOCAL
  782. 000fb820 g DF .text 00000023 GLIBC_2.0 svcudp_create
  783. 000d6920 w DF .text 00000092 GLIBC_2.3 iswxdigit_l
  784. 000df4a0 g DF .text 00000043 GLIBC_2.0 pthread_attr_setscope
  785. 00071e10 w DF .text 0000015f GLIBC_2.1.1 strchrnul
  786. 000cc130 w DF .text 00000034 GLIBC_2.0 swapoff
  787. 001433fc g DO .data 00000004 (GLIBC_2.0) __ctype_tolower
  788. 000cf660 g DF .text 0000002c GLIBC_2.0 syslog
  789. 0002eea0 w DF .text 00000030 GLIBC_2.1 __strtoul_l
  790. 000c1490 g DF .text 00000007 GLIBC_2.2 posix_spawnattr_destroy
  791. 0010d7d0 g DF .text 00000110 (GLIBC_2.0) fsetpos
  792. 00058e40 g DF .text 0000013e GLIBC_2.2 fsetpos
  793. 000c0fd0 w DF .text 000000ef GLIBC_2.1 pread64
  794. 000c37e0 w DF .text 000000f7 GLIBC_2.4 eaccess
  795. 000f3b40 g DF .text 0000001a GLIBC_2.3.3 inet6_option_alloc
  796. 00085b80 g DF .text 00000048 GLIBC_2.0 dysize
  797. 000c4de0 w DF .text 00000038 GLIBC_2.0 symlink
  798. 001438c0 g DO .data 00000050 GLIBC_2.0 _IO_stdout_
  799. 0005c440 g DF .text 00000039 GLIBC_2.2 _IO_wdefault_uflow
  800. 000d7300 g DF .text 000000a2 GLIBC_2.0 getspent
  801. 000df220 g DF .text 00000043 GLIBC_2.0 pthread_attr_setdetachstate
  802. 000d27c0 g DF .text 00000040 GLIBC_2.3 fgetxattr
  803. 0002dab0 w DF .text 00000104 GLIBC_2.0 srandom_r
  804. 000cdb00 w DF .text 00000038 GLIBC_2.0 truncate
  805. 0006b590 g DF .text 000002fd GLIBC_2.0 __libc_calloc
  806. 00023b10 g DF .text 00000048 GLIBC_2.0 isprint
  807. 000c9120 g DF .text 00000046 GLIBC_2.2 posix_fadvise
  808. 00071410 w DF .text 00000046 GLIBC_2.0 memccpy
  809. 00092c40 g DF .text 0000017c GLIBC_2.0 execle
  810. 000d26a0 g DF .text 000000e8 GLIBC_2.2 getloadavg
  811. 00088f20 g DF .text 00000045 GLIBC_2.2 wcsftime
  812. 000ca2a0 g DF .text 0000006c GLIBC_2.0 cfsetispeed
  813. 000e4400 g DF .text 00000228 GLIBC_2.0 __nss_configure_lookup
  814. 0002d2c0 g DF .text 00000044 GLIBC_2.0 ldiv
  815. 000fc3a0 g DF .text 0000000a GLIBC_2.0 xdr_void
  816. 000edb90 g DF .text 0000002d GLIBC_2.0 ether_ntoa
  817. 000441b0 g DF .text 000000fe GLIBC_2.0 parse_printf_format
  818. 0005fc60 w DF .text 000000e7 GLIBC_2.0 fgetc
  819. 000d38a0 g DF .text 00000040 GLIBC_2.5 tee
  820. 00100770 g DF .text 0000006c GLIBC_2.0 xdr_key_netstarg
  821. 00071ba0 g DF .text 000000e3 GLIBC_2.0 strfry
  822. 0005aa40 g DF .text 000000c9 GLIBC_2.0 _IO_vsprintf
  823. 000cbdf0 g DF .text 00000057 GLIBC_2.0 reboot
  824. 00111e60 g DF .text 0000005f (GLIBC_2.0) getaliasbyname_r
  825. 000f1490 g DF .text 0000017d GLIBC_2.1.2 getaliasbyname_r
  826. 0002dea0 g DF .text 00000037 GLIBC_2.0 jrand48
  827. 00111450 g DF .text 00000066 (GLIBC_2.0) gethostbyname_r
  828. 000e9fd0 g DF .text 0000029e GLIBC_2.1.2 gethostbyname_r
  829. 00093370 g DF .text 00000145 GLIBC_2.0 execlp
  830. 00071b60 g DF .text 0000003f GLIBC_2.0 swab
  831. 00056f40 g DF .text 0000002f GLIBC_2.0 _IO_funlockfile
  832. 00056e70 g DF .text 0000004b GLIBC_2.0 _IO_flockfile
  833. 00075860 g DF .text 00000072 GLIBC_2.1.1 __strsep_2c
  834. 0008e420 g DF .text 0000006c GLIBC_2.0 seekdir
  835. 00023ce0 w DF .text 00000015 GLIBC_2.3 isblank_l
  836. 00023cc0 w DF .text 00000011 GLIBC_2.1 __isascii_l
  837. 0008eea0 g DF .text 00000024 GLIBC_2.2 alphasort64
  838. 000f8740 g DF .text 000001a6 GLIBC_2.0 pmap_getport
  839. 0010ed30 g DF .text 00000024 (GLIBC_2.1) alphasort64
  840. 00039e40 w DF .text 00000065 GLIBC_2.1 makecontext
  841. 000cbd80 g DF .text 00000065 GLIBC_2.0 fdatasync
  842. 00101320 g DF .text 000001bd GLIBC_2.1 authdes_getucred
  843. 000cdb80 g DF .text 00000063 GLIBC_2.1 truncate64
  844. 000d6db0 g DF .text 00000092 GLIBC_2.1 __iswgraph_l
  845. 00023e30 g DF .text 00000015 GLIBC_2.1 __ispunct_l
  846. 00039cc0 g DF .text 00000029 GLIBC_2.1 strtoumax
  847. 000d9740 w DF .text 0000018d GLIBC_2.1 argp_failure
  848. 00071260 g DF .text 00000062 GLIBC_2.0 __strcasecmp
  849. 00050a50 g DF .text 00000039 GLIBC_2.0 __vfscanf
  850. 000585a0 w DF .text 00000171 GLIBC_2.0 fgets
  851. 000d67d0 g DF .text 0000006e GLIBC_2.0 __iswctype
  852. 00111640 g DF .text 000000e5 (GLIBC_2.0) getnetent_r
  853. 000eabb0 g DF .text 000000ed GLIBC_2.1.2 getnetent_r
  854. 000c1540 g DF .text 0000001c GLIBC_2.2 posix_spawnattr_setflags
  855. 00110920 g DF .text 00000032 (GLIBC_2.3.3) sched_setaffinity
  856. 000b7750 g DF .text 00000144 GLIBC_2.3.4 sched_setaffinity
  857. 00060590 w DF .text 0000003c GLIBC_2.0 vscanf
  858. 00090fa0 g DF .text 0000012d GLIBC_2.0 getpwnam
  859. 000f3b60 g DF .text 0000006b GLIBC_2.3.3 inet6_option_append
  860. 0006b590 w DF .text 000002fd GLIBC_2.0 calloc
  861. 0002e530 g DF .text 00000045 (GLIBC_2.0) __strtouq_internal
  862. 00093500 w DF .text 00000008 GLIBC_2.0 getppid
  863. 001275a5 g DO .rodata 00000012 GLIBC_2.0 _nl_default_dirname
  864. 001067a0 g DF .text 00000060 GLIBC_2.1 getmsg
  865. 0005c7a0 g DF .text 00000038 GLIBC_2.2 _IO_unsave_wmarkers
  866. 00109230 g DF .text 00000353 GLIBC_PRIVATE _dl_addr
  867. 000cfaa0 w DF .text 00000070 GLIBC_2.0 msync
  868. 00065070 g DF .text 00000042 GLIBC_2.0 _IO_init
  869. 000297a0 g DF .text 0000000f GLIBC_2.1 __signbit
  870. 000c96c0 g DF .text 00000022 GLIBC_2.6 futimens
  871. 00056ce0 g DF .text 0000018f GLIBC_2.4 renameat
  872. 00082800 w DF .text 0000012d GLIBC_2.0 asctime_r
  873. 00023250 w DF .text 00000088 GLIBC_2.3 freelocale
  874. 0006ff50 g DF .text 000000af GLIBC_2.0 strlen
  875. 0002d770 w DF .text 00000086 GLIBC_2.0 initstate
  876. 000e7fe0 g DF .text 0000002b GLIBC_2.4 __wmemset_chk
  877. 0005a980 w DF .text 000000ac GLIBC_2.0 ungetc
  878. 00075ef0 g DF .text 00000021 GLIBC_2.0 wcschr
  879. 000238e0 g DF .text 00000048 GLIBC_2.0 isxdigit
  880. 000ed480 g DF .text 00000705 GLIBC_2.0 ether_line
  881. 00064310 g DF .text 00000047 GLIBC_2.1 _IO_file_init
  882. 0005cd20 g DF .text 000000e7 GLIBC_2.2 __wuflow
  883. 000c3d00 g DF .text 00000108 GLIBC_2.0 lockf
  884. 001433f4 g DO .data 00000004 (GLIBC_2.0) __ctype_b
  885. 0010e480 g DF .text 0000006f (GLIBC_2.0) _IO_file_init
  886. 000fed10 g DF .text 000000ae GLIBC_2.1 xdr_authdes_cred
  887. 000d67d0 w DF .text 0000006e GLIBC_2.0 iswctype
  888. 000d03a0 g DF .text 00000063 GLIBC_2.0 qecvt
  889. 00075a00 g DF .text 00000022 GLIBC_2.1.1 __memset_gg
  890. 0010d410 g DF .text 000000a2 (GLIBC_2.0) tmpfile
  891. 000f0d30 g DF .text 00000071 GLIBC_PRIVATE __internal_setnetgrent
  892. 00076b80 g DF .text 00000048 GLIBC_2.0 __mbrlen
  893. 00056020 g DF .text 000000a2 GLIBC_2.1 tmpfile
  894. 00103850 g DF .text 00000068 GLIBC_2.1 xdr_int8_t
  895. 000d69c0 g DF .text 0000005d GLIBC_2.1 __towupper_l
  896. 000d5660 w DF .text 000004ec GLIBC_2.2.3 sprofil
  897. 000d36f0 g DF .text 00000038 GLIBC_2.2.1 pivot_root
  898. 00072910 g DF .text 0000007a GLIBC_2.0 envz_entry
  899. 000f57a0 g DF .text 000000be GLIBC_2.0 xdr_authunix_parms
  900. 000fa0b0 g DF .text 0000009e GLIBC_2.0 xprt_unregister
  901. 001434c0 g DO .data 00000098 GLIBC_2.1 _IO_2_1_stdout_
  902. 000228b0 w DF .text 000007fa GLIBC_2.3 newlocale
  903. 000ef700 g DF .text 000005f9 GLIBC_2.2 rexec_af
  904. 000d12d0 w DF .text 000002bf GLIBC_2.0 tsearch
  905. 000f1340 g DF .text 0000012d GLIBC_2.0 getaliasbyname
  906. 000f9f10 g DF .text 0000004e GLIBC_2.0 svcerr_progvers
  907. 00023e50 w DF .text 00000017 GLIBC_2.3 isspace_l
  908. 00072340 w DF .text 00000124 GLIBC_2.0 argz_insert
  909. 00075970 g DF .text 00000031 GLIBC_2.1.1 __memcpy_c
  910. 0002a130 w DF .text 0000008a GLIBC_2.0 gsignal
  911. 000f4450 g DF .text 00000048 GLIBC_2.5 inet6_opt_get_val
  912. 001113e0 g DF .text 00000063 (GLIBC_2.0) gethostbyname2_r
  913. 0002cff0 g DF .text 00000057 GLIBC_2.1.3 __cxa_atexit
  914. 000e9d20 g DF .text 000002ac GLIBC_2.1.2 gethostbyname2_r
  915. 000c11b0 g DF .text 00000035 GLIBC_2.2 posix_spawn_file_actions_init
  916. 000685d0 w DF .text 00000277 GLIBC_2.0 malloc_stats
  917. 000d3730 w DF .text 00000046 GLIBC_2.0 prctl
  918. 00061350 g DF .text 0000000f GLIBC_2.2 __fwriting
  919. 000cecf0 g DF .text 00000023 GLIBC_2.0 setlogmask
  920. 000758e0 g DF .text 00000086 GLIBC_2.1.1 __strsep_3c
  921. 000d72a0 g DF .text 0000005d GLIBC_2.1 __towctrans_l
  922. 000fc890 g DF .text 0000001a GLIBC_2.0 xdr_enum
  923. 001419b0 g DO .data.rel.ro 00000014 GLIBC_2.0 h_errlist
  924. 00061ed0 g DF .text 0000005b GLIBC_2.1 fread_unlocked
  925. 00074cd0 g DF .text 00000033 GLIBC_2.1.1 __memcpy_g
  926. 000d38e0 g DF .text 00000034 GLIBC_2.4 unshare
  927. 000caf70 w DF .text 00000044 GLIBC_2.0 brk
  928. 000d3d10 w DF .text 0000006c GLIBC_2.0 send
  929. 00023e10 w DF .text 00000017 GLIBC_2.3 isprint_l
  930. 00085b00 w DF .text 0000003a GLIBC_2.0 setitimer
  931. 000d68c0 g DF .text 0000005d GLIBC_2.1 __towctrans
  932. 001416a0 g DO .data.rel.ro 00000080 (GLIBC_2.0) sys_sigabbrev
  933. 00039dd0 w DF .text 00000066 GLIBC_2.0 setcontext
  934. 001416a0 g DO .data.rel.ro 00000100 (GLIBC_2.1) sys_sigabbrev
  935. 001416a0 g DO .data.rel.ro 00000104 GLIBC_2.3.3 sys_sigabbrev
  936. 000f3830 g DF .text 000000ad GLIBC_2.3.3 inet6_option_next
  937. 0002ad60 g DF .text 0000004d GLIBC_2.0 sigemptyset
  938. 000d7020 w DF .text 00000092 GLIBC_2.3 iswupper_l
  939. 00109e30 g DF .text 0000001f GLIBC_PRIVATE _dl_sym
  940. 000cefd0 g DF .text 00000085 GLIBC_2.0 openlog
  941. 000b9d90 g DF .text 0000077f GLIBC_2.0 getaddrinfo
  942. 00065650 g DF .text 0000006a GLIBC_2.0 _IO_init_marker
  943. 00061cf0 g DF .text 0000003d GLIBC_2.0 getchar_unlocked
  944. 000e3890 g DF .text 0000011b GLIBC_PRIVATE __res_maybe_init
  945. 000d24e0 g DF .text 000000cc GLIBC_2.0 dirname
  946. 00017b50 g DF .text 00000016 GLIBC_PRIVATE __gconv_get_alias_db
  947. 00070f70 g DF .text 00000056 GLIBC_2.0 memset
  948. 00022600 g DF .text 000001a2 GLIBC_2.2 localeconv
  949. 00022600 g DF .text 000001a2 (GLIBC_2.0) localeconv
  950. 000ca210 g DF .text 00000010 GLIBC_2.0 cfgetospeed
  951. 00074d30 g DF .text 0000002f GLIBC_2.1.1 __memset_ccn_by2
  952. 000cb490 w DF .text 00000103 GLIBC_2.0 writev
  953. 00066370 g DF .text 000000e2 GLIBC_2.0 _IO_default_xsgetn
  954. 00023930 g DF .text 00000046 GLIBC_2.0 isalnum
  955. 00074d10 g DF .text 0000001d GLIBC_2.1.1 __memset_ccn_by4
  956. 00106a10 w DF .text 00000051 GLIBC_2.0 setutent
  957. 000f9370 g DF .text 00000125 GLIBC_2.0 _seterr_reply
  958. 0005c500 g DF .text 00000079 GLIBC_2.2 _IO_switch_to_wget_mode
  959. 000f4820 g DF .text 00000047 GLIBC_2.5 inet6_rth_add
  960. 00061cc0 w DF .text 0000002a GLIBC_2.1 fgetc_unlocked
  961. 0005bfb0 g DF .text 0000003b GLIBC_2.2 swprintf
  962. 000d1ad0 g DF .text 0000001d GLIBC_2.0 warn
  963. 0005fd70 g DF .text 000000f2 GLIBC_2.0 getchar
  964. 00106d90 w DF .text 00000068 GLIBC_2.0 getutid
  965. 0001f6a0 g DF .text 00000016 GLIBC_PRIVATE __gconv_get_cache
  966. 000958d0 g DF .text 00001859 GLIBC_2.0 glob
  967. 00070910 g DF .text 00000192 GLIBC_2.0 strstr
  968. 000d46d0 g DF .text 00000049 GLIBC_2.3.3 semtimedop
  969. 0002ccf0 g DF .text 00000035 GLIBC_2.0 __secure_getenv
  970. 00077aa0 w DF .text 00000075 GLIBC_2.1 wcsnlen
  971. 00077ed0 g DF .text 0000003e GLIBC_2.0 __wcstof_internal
  972. 0006fa80 g DF .text 000000ae GLIBC_2.0 strcspn
  973. 000ca870 g DF .text 00000075 GLIBC_2.0 tcsendbreak
  974. 0008e4a0 g DF .text 0000000b GLIBC_2.0 telldir
  975. 00023a70 g DF .text 00000048 GLIBC_2.0 islower
  976. 000c9670 g DF .text 00000044 GLIBC_2.6 utimensat
  977. 000cfd80 g DF .text 000000c4 GLIBC_2.0 fcvt
  978. 000320d0 w DF .text 00000029 GLIBC_2.1 __strtof_l
  979. 00016520 g DF .text 0000001d GLIBC_2.0 __errno_location
  980. 000c5230 w DF .text 00000034 GLIBC_2.0 rmdir
  981. 0005a680 g DF .text 00000127 GLIBC_2.0 _IO_setbuffer
  982. 000658a0 g DF .text 00000008 GLIBC_2.2 _IO_iter_file
  983. 000d3a10 g DF .text 00000037 GLIBC_2.0 bind
  984. 0002f510 w DF .text 00000030 GLIBC_2.1 __strtoll_l
  985. 000ca390 g DF .text 00000243 GLIBC_2.0 tcsetattr
  986. 0005fb40 g DF .text 000000fa GLIBC_2.0 fseek
  987. 000fce60 g DF .text 0000003e GLIBC_2.0 xdr_float
  988. 000b5b70 g DF .text 000003bc GLIBC_2.0 confstr
  989. 000c40a0 w DF .text 00000034 GLIBC_2.0 chdir
  990. 000c3060 w DF .text 000000e5 GLIBC_2.1 open64
  991. 000f46c0 g DF .text 00000019 GLIBC_2.5 inet6_rth_segments
  992. 000c3680 w DF .text 00000070 GLIBC_2.0 read
  993. 0006e930 g DF .text 00000094 GLIBC_2.0 muntrace
  994. 0005b200 g DF .text 000000f2 GLIBC_2.2 getwchar
  995. 00070ec0 g DF .text 0000001e GLIBC_2.0 memcmp
  996. 000f18f0 g DF .text 00000913 GLIBC_2.1 getnameinfo
  997. 000cb800 w DF .text 00000026 GLIBC_2.0 getpagesize
  998. 000fe3e0 g DF .text 000000b9 GLIBC_2.1 xdr_sizeof
  999. 00016690 g DF .text 000001fe (GLIBC_2.0) __moddi3
  1000. 00024470 w DF .text 00000022 GLIBC_2.0 dgettext
  1001. 00074de0 g DF .text 00000018 GLIBC_2.1.1 __strlen_g
  1002. 00058fa0 g DF .text 000001d1 GLIBC_2.0 _IO_ftell
  1003. 0005bb30 g DF .text 000000f6 GLIBC_2.2 putwc
  1004. 000f8180 g DF .text 000000e9 GLIBC_2.0 getrpcport
  1005. 000658b0 g DF .text 0000004d GLIBC_2.2 _IO_list_lock
  1006. 000465b0 g DF .text 00000034 GLIBC_2.0 _IO_sprintf
  1007. 000e79e0 g DF .text 00000042 GLIBC_2.4 __pread_chk
  1008. 000cfbe0 g DF .text 00000038 GLIBC_2.0 mlock
  1009. 0008ffe0 g DF .text 000000b0 GLIBC_2.0 endgrent
  1010. 0006fcf0 w DF .text 00000064 GLIBC_2.0 strndup
  1011. 000d3490 g DF .text 00000046 GLIBC_2.0 init_module
  1012. 000cf630 g DF .text 0000002b GLIBC_2.4 __syslog_chk
  1013. 000826e0 g DF .text 0000011b GLIBC_2.0 asctime
  1014. 000f5d10 g DF .text 00000084 GLIBC_2.0 clnt_sperrno
  1015. 000fd990 g DF .text 0000016a GLIBC_2.0 xdrrec_skiprecord
  1016. 00077400 w DF .text 00000362 GLIBC_2.0 mbsnrtowcs
  1017. 00072e50 g DF .text 0000109f GLIBC_2.1 __strcoll_l
  1018. 000e39f0 g DF .text 000000ae GLIBC_PRIVATE __gai_sigqueue
  1019. 000238a0 g DF .text 00000037 GLIBC_2.0 toupper
  1020. 000eb570 g DF .text 000000a8 GLIBC_2.0 setprotoent
  1021. 000934c0 g DF .text 00000031 GLIBC_2.0 __getpid
  1022. 0002d4d0 g DF .text 000000b9 GLIBC_2.0 mbtowc
  1023. 0010a030 g DF .text 00000084 GCC_3.0 __register_frame_info_table_bases
  1024. 00100b60 g DF .text 000000f9 GLIBC_2.1 netname2user
  1025. 00023c80 g DF .text 00000028 GLIBC_2.0 _toupper
  1026. 000d3b40 w DF .text 00000037 GLIBC_2.0 getsockopt
  1027. 000fb520 g DF .text 00000245 GLIBC_2.0 svctcp_create
  1028. 0005cf80 g DF .text 00000080 GLIBC_2.2 _IO_wsetb
  1029. 000593f0 w DF .text 00000278 GLIBC_2.0 getdelim
  1030. 0008f8c0 g DF .text 0000003f GLIBC_2.0 setgroups
  1031. 000f5fe0 g DF .text 0000009a GLIBC_2.0 clnt_perrno
  1032. 000d2aa0 g DF .text 00000046 GLIBC_2.3 setxattr
  1033. 0010b930 g DF .text 00000096 GCC_3.0 _Unwind_Find_FDE
  1034. 0002dfb0 w DF .text 000000a0 GLIBC_2.0 erand48_r
  1035. 0002dde0 g DF .text 00000034 GLIBC_2.0 lrand48
  1036. 00064d10 g DF .text 0000007a GLIBC_2.0 _IO_doallocbuf
  1037. 000c4650 g DF .text 0000026a GLIBC_2.0 ttyname
  1038. 00144aa4 w DO .bss 00000004 GLIBC_2.0 ___brk_addr
  1039. 001089b0 g DF .text 000000d5 GLIBC_2.1 grantpt
  1040. 000df190 g DF .text 0000003c GLIBC_2.1 pthread_attr_init
  1041. 00070fd0 g DF .text 00000044 GLIBC_2.1 mempcpy
  1042. 000df150 g DF .text 0000003c (GLIBC_2.0) pthread_attr_init
  1043. 000dfe90 g DF .text 00000155 GLIBC_2.0 herror
  1044. 000b7340 g DF .text 00000049 GLIBC_2.0 getopt
  1045. 00077c40 g DF .text 00000046 GLIBC_2.0 wcstoul
  1046. 000e78d0 g DF .text 000000a8 GLIBC_2.4 __fgets_unlocked_chk
  1047. 001081b0 w DF .text 000000f9 GLIBC_2.0 utmpname
  1048. 00093b00 g DF .text 00000149 GLIBC_2.0 getlogin_r
  1049. 00023db0 w DF .text 00000017 GLIBC_2.3 isdigit_l
  1050. 00046dd0 w DF .text 00003e13 GLIBC_2.2 vfwprintf
  1051. 000cce30 g DF .text 00000083 GLIBC_2.2 __setmntent
  1052. 0005a370 g DF .text 00000100 GLIBC_2.0 _IO_seekoff
  1053. 000ca7f0 g DF .text 00000032 GLIBC_2.0 tcflow
  1054. 000d0cc0 g DF .text 000000d4 GLIBC_2.0 hcreate_r
  1055. 00077d30 w DF .text 00000046 GLIBC_2.0 wcstouq
  1056. 0005c480 g DF .text 0000007e GLIBC_2.2 _IO_wdoallocbuf
  1057. 000efd00 g DF .text 0000003e GLIBC_2.0 rexec
  1058. 000d4490 g DF .text 00000061 GLIBC_2.0 msgget
  1059. 0005c0c0 g DF .text 00000034 GLIBC_2.2 fwscanf
  1060. 00103770 g DF .text 00000069 GLIBC_2.1 xdr_int16_t
  1061. 000e7bf0 g DF .text 00000034 GLIBC_2.4 __getcwd_chk
  1062. 000c2d60 g DF .text 0000015a GLIBC_2.4 fchmodat
  1063. 00072990 g DF .text 0000007a GLIBC_2.0 envz_strip
  1064. 001461a8 g DO .bss 00000004 GLIBC_PRIVATE _dl_open_hook
  1065. 000c3f80 w DF .text 00000038 GLIBC_2.0 dup2
  1066. 0005f550 g DF .text 00000085 GLIBC_2.0 clearerr
  1067. 00144a94 w DO .bss 00000004 GLIBC_2.0 environ
  1068. 000eea20 g DF .text 00000b7b GLIBC_2.2 rcmd_af
  1069. 000f9c50 g DF .text 00000039 GLIBC_2.2.3 __rpc_thread_svc_max_pollfd
  1070. 00092670 w DF .text 00000055 GLIBC_2.0 pause
  1071. 0002c740 w DF .text 000000fe GLIBC_2.0 unsetenv
  1072. 0002dd00 g DF .text 00000052 GLIBC_2.0 rand_r
  1073. 0010c980 g DF .text 0000003d (GLIBC_2.0) atexit
  1074. 00066d30 g DF .text 0000003f GLIBC_2.0 _IO_str_init_static
  1075. 00029470 g DF .text 00000011 GLIBC_2.0 __finite
  1076. 00083540 w DF .text 0000003c GLIBC_2.0 timelocal
  1077. 000724d0 w DF .text 000000a5 GLIBC_2.0 argz_add_sep
  1078. 000fdd10 g DF .text 0000006b GLIBC_2.0 xdr_pointer
  1079. 00076a00 g DF .text 0000015e GLIBC_2.0 wctob
  1080. 00029f60 w DF .text 00000064 GLIBC_2.0 longjmp
  1081. 000c2180 g DF .text 0000003f (GLIBC_2.1) __fxstat64
  1082. 00086250 g DF .text 0000004a GLIBC_2.0 strptime
  1083. 00062f30 g DF .text 000001e4 GLIBC_2.1 _IO_file_xsputn
  1084. 000c2180 g DF .text 0000003f GLIBC_2.2 __fxstat64
  1085. 0010dac0 g DF .text 000002a5 (GLIBC_2.0) _IO_file_xsputn
  1086. 000f6080 g DF .text 00000395 GLIBC_2.0 clnt_sperror
  1087. 000e7140 g DF .text 000000f2 GLIBC_2.3.4 __vprintf_chk
  1088. 000d3130 g DF .text 00000034 GLIBC_2.0 __adjtimex
  1089. 000d3ea0 w DF .text 00000037 GLIBC_2.0 shutdown
  1090. 00106910 g DF .text 00000022 GLIBC_2.1 fattach
  1091. 00029f20 g DF .text 00000036 GLIBC_2.0 _setjmp
  1092. 00060650 w DF .text 000000f7 GLIBC_2.0 vsnprintf
  1093. 000c8e50 w DF .text 000000a4 GLIBC_2.0 poll
  1094. 0006bcb0 w DF .text 0000018c GLIBC_2.0 malloc_get_state
  1095. 00106800 g DF .text 00000046 GLIBC_2.1 getpmsg
  1096. 00059690 g DF .text 00000047 GLIBC_2.0 _IO_getline
  1097. 00108ea0 g DF .text 00000045 GLIBC_2.1 ptsname
  1098. 00092b00 g DF .text 000000f5 GLIBC_2.0 fexecve
  1099. 000afff0 w DF .text 0000013a GLIBC_2.0 re_comp
  1100. 000f6420 g DF .text 00000044 GLIBC_2.0 clnt_perror
  1101. 000d0340 g DF .text 0000005e GLIBC_2.0 qgcvt
  1102. 000f9d90 g DF .text 00000042 GLIBC_2.0 svcerr_noproc
  1103. 00077b50 g DF .text 00000045 GLIBC_2.0 __wcstol_internal
  1104. 000656f0 g DF .text 00000011 GLIBC_2.0 _IO_marker_difference
  1105. 000e7080 g DF .text 000000a8 GLIBC_2.3.4 __fprintf_chk
  1106. 000713a0 g DF .text 00000069 GLIBC_2.1 __strncasecmp_l
  1107. 0002ae10 g DF .text 0000006a GLIBC_2.0 sigaddset
  1108. 00055d10 g DF .text 00000034 GLIBC_2.0 _IO_sscanf
  1109. 000829c0 g DF .text 0000001b GLIBC_2.0 ctime
  1110. 0010bc30 g DF .text 0000007b GLIBC_2.0 __frame_state_for
  1111. 000d6660 w DF .text 000000cb GLIBC_2.0 iswupper
  1112. 000f9ec0 g DF .text 00000042 GLIBC_2.0 svcerr_noprog
  1113. 00065880 g DF .text 00000007 GLIBC_2.2 _IO_iter_end
  1114. 000e7d50 g DF .text 0000003e GLIBC_2.4 __wmemcpy_chk
  1115. 0008fb10 g DF .text 0000012d GLIBC_2.0 getgrnam
  1116. 000d3130 w DF .text 00000034 GLIBC_2.0 adjtimex
  1117. 000df890 g DF .text 0000003c GLIBC_2.0 pthread_mutex_unlock
  1118. 000cb910 g DF .text 00000038 GLIBC_2.0 sethostname
  1119. 00065980 g DF .text 00000070 GLIBC_2.0 _IO_setb
  1120. 000c0fd0 w DF .text 000000ef GLIBC_2.1 __pread64
  1121. 0006dc80 g DF .text 000000f8 GLIBC_2.0 mcheck
  1122. 00023ce0 g DF .text 00000015 GLIBC_2.1 __isblank_l
  1123. 000fdd80 g DF .text 000000df GLIBC_2.0 xdr_reference
  1124. 0010f0d0 g DF .text 0000005f (GLIBC_2.0) getpwuid_r
  1125. 000916e0 g DF .text 000001ec GLIBC_2.1.2 getpwuid_r
  1126. 000ec7d0 g DF .text 000000b0 GLIBC_2.0 endrpcent
  1127. 00100ac0 g DF .text 00000091 GLIBC_2.1 netname2host
  1128. 000e9230 g DF .text 00000282 GLIBC_2.0 inet_network
  1129. 0002c610 g DF .text 00000091 GLIBC_2.0 putenv
  1130. 0007ffb0 g DF .text 00000100 GLIBC_2.0 wcswidth
  1131. 00023ef0 w DF .text 0000002c GLIBC_2.3 isctype
  1132. 000f8440 g DF .text 0000013a GLIBC_2.0 pmap_set
  1133. 00111170 g DF .text 0000003c (GLIBC_2.0) pthread_cond_broadcast
  1134. 000c4410 w DF .text 00000053 GLIBC_2.0 fchown
  1135. 000df570 g DF .text 0000003c GLIBC_2.3.2 pthread_cond_broadcast
  1136. 00028ab0 g DF .text 00000172 GLIBC_2.0 catopen
  1137. 000791a0 w DF .text 00000040 GLIBC_2.1 __wcstoull_l
  1138. 00000000 g DO *ABS* 00000000 GLIBC_2.0 GLIBC_2.0
  1139. 000fc980 g DF .text 00000029 GLIBC_2.0 xdr_netobj
  1140. 000d42b0 g DF .text 00000047 GLIBC_2.0 ftok
  1141. 00064a40 g DF .text 000001b2 GLIBC_2.0 _IO_link_in
  1142. 00000000 g DO *ABS* 00000000 GLIBC_2.1 GLIBC_2.1
  1143. 00044110 w DF .text 00000097 GLIBC_2.0 register_printf_function
  1144. 00029e40 g DF .text 00000035 GLIBC_2.0 __sigsetjmp
  1145. 00000000 g DO *ABS* 00000000 GLIBC_2.2 GLIBC_2.2
  1146. 000710f0 g DF .text 00000010 GLIBC_2.0 __ffs
  1147. 00143840 g DO .data 00000004 GLIBC_2.0 stdout
  1148. 000cde20 g DF .text 0000078d GLIBC_2.0 getttyent
  1149. 000e8f90 g DF .text 0000005c GLIBC_2.0 inet_makeaddr
  1150. 00000000 g DO *ABS* 00000000 GLIBC_2.3 GLIBC_2.3
  1151. 00144aa4 g DO .bss 00000004 GLIBC_2.0 __curbrk
  1152. 00000000 g DO *ABS* 00000000 GLIBC_2.4 GLIBC_2.4
  1153. 00000000 g DO *ABS* 00000000 GLIBC_2.5 GLIBC_2.5
  1154. 000e94e0 g DF .text 00000169 GLIBC_2.0 gethostbyaddr
  1155. 0010d310 g DF .text 0000008a (GLIBC_2.0) _IO_popen
  1156. 00000000 g DO *ABS* 00000000 GLIBC_2.6 GLIBC_2.6
  1157. 000d2320 w DF .text 0000001a GLIBC_2.0 get_phys_pages
  1158. 00059fc0 g DF .text 0000008d GLIBC_2.1 _IO_popen
  1159. 000dd1e0 w DF .text 0000001d GLIBC_2.1 argp_help
  1160. 0005f790 g DF .text 000000f6 GLIBC_2.0 fputc
  1161. 00143400 g DO .data 00000004 (GLIBC_2.0) __ctype_toupper
  1162. 001114c0 g DF .text 000000e5 (GLIBC_2.0) gethostent_r
  1163. 00065740 g DF .text 00000079 GLIBC_2.0 _IO_seekmark
  1164. 000ea340 g DF .text 000000ed GLIBC_2.1.2 gethostent_r
  1165. 000d70c0 g DF .text 0000005d GLIBC_2.1 __towlower_l
  1166. 00029690 w DF .text 00000072 GLIBC_2.0 frexp
  1167. 00055ef0 g DF .text 0000012e GLIBC_2.0 psignal
  1168. 000d1be0 g DF .text 00000023 GLIBC_2.0 verrx
  1169. 00093c70 g DF .text 00000022 GLIBC_2.0 setlogin
  1170. 000f05f0 g DF .text 000001b3 GLIBC_PRIVATE __internal_getnetgrent_r
  1171. 00061040 g DF .text 000000f8 GLIBC_2.1 fseeko64
  1172. 00142a00 g DO .data.rel.ro 00000054 GLIBC_2.0 _IO_file_jumps
  1173. 0010ed60 g DF .text 00000024 (GLIBC_2.1) versionsort64
  1174. 0008eed0 g DF .text 00000024 GLIBC_2.2 versionsort64
  1175. 000d2840 g DF .text 00000038 GLIBC_2.3 fremovexattr
  1176. 000e7d00 g DF .text 00000042 GLIBC_2.4 __wcscpy_chk
  1177. 0006ae90 g DF .text 000000fc GLIBC_2.0 __libc_valloc
  1178. 00065130 g DF .text 0000004b GLIBC_2.0 _IO_sungetc
  1179. 000d3bc0 w DF .text 0000006c GLIBC_2.0 recv
  1180. 000f8050 g DF .text 0000002d GLIBC_2.0 _rpc_dtablesize
  1181. 000d3230 g DF .text 0000003a GLIBC_2.0 create_module
  1182. 000937d0 g DF .text 00000034 GLIBC_2.0 getsid
  1183. 000cc170 g DF .text 0000003d GLIBC_2.0 mktemp
  1184. 000e0160 g DF .text 00000172 GLIBC_2.0 inet_addr
  1185. 000cab50 w DF .text 00000038 GLIBC_2.0 getrusage
  1186. 00061dc0 g DF .text 000000ec GLIBC_2.0 _IO_peekc_locked
  1187. 000656c0 g DF .text 00000028 GLIBC_2.0 _IO_remove_marker
  1188. 000e8b50 g DF .text 00000050 GLIBC_2.4 __mbstowcs_chk
  1189. 00143328 w DO .data 00000004 GLIBC_2.0 __malloc_hook
  1190. 00023e50 g DF .text 00000017 GLIBC_2.1 __isspace_l
  1191. 000c8740 g DF .text 0000070d GLIBC_2.0 fts_read
  1192. 000d6d10 w DF .text 00000092 GLIBC_2.3 iswlower_l
  1193. 000d6320 w DF .text 000000cb GLIBC_2.0 iswgraph
  1194. 000cc6d0 g DF .text 000000d5 GLIBC_2.0 getfsspec
  1195. 0002e490 g DF .text 00000045 GLIBC_2.0 __strtoll_internal
  1196. 000cc250 g DF .text 00000051 GLIBC_2.0 ualarm
  1197. 00058b90 w DF .text 00000149 GLIBC_2.0 fputs
  1198. 000d3780 g DF .text 00000046 GLIBC_2.0 query_module
  1199. 000c1250 g DF .text 00000028 GLIBC_2.2 posix_spawn_file_actions_destroy
  1200. 00070bd0 w DF .text 00000104 GLIBC_2.0 strtok_r
  1201. 000ea430 g DF .text 000000b0 GLIBC_2.0 endhostent
  1202. 00023e10 g DF .text 00000017 GLIBC_2.1 __isprint_l
  1203. 000df680 g DF .text 00000043 GLIBC_2.3.2 pthread_cond_wait
  1204. 00111280 g DF .text 00000043 (GLIBC_2.0) pthread_cond_wait
  1205. 00072260 g DF .text 00000088 GLIBC_2.0 argz_delete
  1206. 0005c8c0 g DF .text 00000053 GLIBC_2.2 __woverflow
  1207. 000fc420 g DF .text 00000065 GLIBC_2.0 xdr_u_long
  1208. 000e7dc0 g DF .text 0000003e GLIBC_2.4 __wmempcpy_chk
  1209. 00094a90 w DF .text 000001f5 GLIBC_2.0 fpathconf
  1210. 00023d90 w DF .text 00000015 GLIBC_2.3 iscntrl_l
  1211. 000a2230 w DF .text 000000a7 GLIBC_2.0 regerror
  1212. 00070000 g DF .text 0000009d GLIBC_2.0 strnlen
  1213. 0002de20 g DF .text 00000037 GLIBC_2.0 nrand48
  1214. 00111000 g DF .text 000000e5 (GLIBC_2.0) getspent_r
  1215. 00076830 w DF .text 00000034 GLIBC_2.2 wmempcpy
  1216. 000d7c00 g DF .text 000000e2 GLIBC_2.1.2 getspent_r
  1217. 0014636c g DO .bss 00000004 GLIBC_2.1 argp_program_bug_address
  1218. 000c3760 w DF .text 0000003a GLIBC_2.0 lseek
  1219. 00093990 w DF .text 00000085 GLIBC_2.0 setresgid
  1220. 0002abd0 w DF .text 00000038 GLIBC_2.0 sigaltstack
  1221. 00075040 g DF .text 00000042 GLIBC_2.1.1 __strncmp_g
  1222. 000fca80 g DF .text 00000123 GLIBC_2.0 xdr_string
  1223. 00085c10 g DF .text 00000072 GLIBC_2.0 ftime
  1224. 00071460 g DF .text 00000046 GLIBC_2.0 memcpy
  1225. 0005b0c0 w DF .text 000000e7 GLIBC_2.2 getwc
  1226. 00076b80 w DF .text 00000048 GLIBC_2.0 mbrlen
  1227. 000ce660 g DF .text 00000052 GLIBC_2.0 endusershell
  1228. 000c4250 g DF .text 00000089 GLIBC_2.0 getwd
  1229. 000b7640 g DF .text 00000034 GLIBC_2.0 __sched_get_priority_min
  1230. 00060df0 g DF .text 00000228 GLIBC_2.1 freopen64
  1231. 0010cd10 g DF .text 00000183 (GLIBC_2.0) fclose
  1232. 00057d70 g DF .text 000001e8 GLIBC_2.1 fclose
  1233. 00085c90 w DF .text 00000558 GLIBC_2.1 getdate_r
  1234. 000c1d40 g DF .text 00000015 GLIBC_2.2 posix_spawnattr_setschedparam
  1235. 0005c710 g DF .text 00000082 GLIBC_2.2 _IO_seekwmark
  1236. 00065180 g DF .text 0000003c GLIBC_2.0 _IO_adjust_column
  1237. 000c37e0 w DF .text 000000f7 GLIBC_2.0 euidaccess
  1238. 0002a8d0 g DF .text 0000012e GLIBC_2.0 __sigpause
  1239. 000c4e20 g DF .text 0000010c GLIBC_2.4 symlinkat
  1240. 0002dce0 g DF .text 00000017 GLIBC_2.0 rand
  1241. 000cbaa0 w DF .text 000001c0 GLIBC_2.0 pselect
  1242. 000df950 g DF .text 00000043 GLIBC_2.0 pthread_setcanceltype
  1243. 000ca700 g DF .text 00000032 GLIBC_2.0 tcsetpgrp
  1244. 00075f20 g DF .text 0000002e GLIBC_2.0 wcscmp
  1245. 000e67a0 g DF .text 000000a3 GLIBC_2.3.4 __memmove_chk
  1246. 000c71c0 g DF .text 00000052 GLIBC_2.3.3 nftw64
  1247. 000cfa60 w DF .text 0000003a GLIBC_2.0 mprotect
  1248. 00110d80 g DF .text 0000002b (GLIBC_2.1) nftw64
  1249. 000e7ba0 g DF .text 00000043 GLIBC_2.4 __getwd_chk
  1250. 000759b0 g DF .text 00000045 GLIBC_2.1.1 __strcat_c
  1251. 000e3ae0 g DF .text 00000355 GLIBC_PRIVATE __nss_lookup_function
  1252. 000710f0 w DF .text 00000010 GLIBC_2.1 ffsl
  1253. 000cc890 g DF .text 000000aa GLIBC_2.0 getmntent
  1254. 00109f30 g DF .text 0000001d GLIBC_PRIVATE __libc_dl_error_tsd
  1255. 000819d0 g DF .text 00000055 GLIBC_2.1 __wcscasecmp_l
  1256. 0002e350 g DF .text 00000045 GLIBC_2.0 __strtol_internal
  1257. 000e6e80 g DF .text 0000010c GLIBC_2.3.4 __vsnprintf_chk
  1258. 00074f70 g DF .text 00000036 GLIBC_2.1.1 __strcat_g
  1259. 0008b0d0 g DF .text 00002517 GLIBC_2.3 __wcsftime_l
  1260. 00057c30 g DF .text 0000013c GLIBC_2.0 _IO_file_doallocate
  1261. 0002e440 g DF .text 00000046 GLIBC_2.0 strtoul
  1262. 000618a0 g DF .text 00000144 GLIBC_2.2 fmemopen
  1263. 000df770 g DF .text 0000004a GLIBC_2.0 pthread_setschedparam
  1264. 000d0c70 g DF .text 0000004f GLIBC_2.0 hdestroy_r
  1265. 000d7cf0 g DF .text 000000b0 GLIBC_2.0 endspent
  1266. 000cfca0 g DF .text 0000002c GLIBC_2.0 munlockall
  1267. 0002aa20 w DF .text 0000001b GLIBC_2.0 sigpause
  1268. 000fc490 g DF .text 0000001a GLIBC_2.0 xdr_u_int
  1269. 000416a0 g DF .text 00000036 GLIBC_2.0 vprintf
  1270. 00109040 g DF .text 00000032 GLIBC_2.1.1 getutmpx
  1271. 00109040 g DF .text 00000032 GLIBC_2.1.1 getutmp
  1272. 000d3e60 g DF .text 00000037 GLIBC_2.0 setsockopt
  1273. 0006b890 g DF .text 00000180 GLIBC_2.0 malloc
  1274. 00065ae0 g DF .text 0000010e GLIBC_2.0 _IO_default_xsputn
  1275. 000cfb90 w DF .text 00000046 GLIBC_2.3.3 remap_file_pages
  1276. 00029f60 w DF .text 00000064 GLIBC_2.0 siglongjmp
  1277. 001465b8 g DO .bss 0000000c GLIBC_2.0 svcauthdes_stats
  1278. 000ce990 g DF .text 00000240 GLIBC_2.0 getpass
  1279. 0002e580 w DF .text 00000046 GLIBC_2.0 strtouq
  1280. 00143404 g DO .data 00000004 (GLIBC_2.2) __ctype32_tolower
  1281. 00100a90 g DF .text 00000022 GLIBC_2.0 xdr_keystatus
  1282. 000d3920 g DF .text 00000034 GLIBC_2.0 uselib
  1283. 0002b070 g DF .text 00000052 GLIBC_2.0 sigisemptyset
  1284. 00075240 g DF .text 00000044 GLIBC_2.1.1 __strspn_g
  1285. 0002a1c0 g DF .text 00000044 GLIBC_2.0 killpg
  1286. 00037fe0 g DF .text 00000048 GLIBC_2.0 strfmon
  1287. 000230e0 w DF .text 0000014b GLIBC_2.3 duplocale
  1288. 0006f690 g DF .text 000001aa GLIBC_2.0 strcat
  1289. 000fc400 g DF .text 0000001a GLIBC_2.0 xdr_int
  1290. 000c2ca0 w DF .text 00000010 GLIBC_2.0 umask
  1291. 00071260 w DF .text 00000062 GLIBC_2.0 strcasecmp
  1292. 0008ef00 w DF .text 000000a2 GLIBC_2.4 fdopendir
  1293. 00061160 g DF .text 00000179 GLIBC_2.1 ftello64
  1294. 000df3b0 g DF .text 00000043 GLIBC_2.0 pthread_attr_getschedpolicy
  1295. 0010c9c0 g DF .text 0000003f (GLIBC_2.0) realpath
  1296. 00037800 g DF .text 0000050e GLIBC_2.3 realpath
  1297. 00085bd0 g DF .text 0000003e GLIBC_2.0 timegm
  1298. 00060c10 g DF .text 000001bb GLIBC_2.1 ftello
  1299. 000294b0 w DF .text 000001cf GLIBC_2.0 modf
  1300. 00109870 g DF .text 0000008b GLIBC_PRIVATE __libc_dlclose
  1301. 00068850 g DF .text 0000018a GLIBC_2.0 __libc_mallinfo
  1302. 0002a130 g DF .text 0000008a GLIBC_2.0 raise
  1303. 000cb750 g DF .text 000000a7 GLIBC_2.0 setegid
  1304. 000670f0 w DF .text 00000034 GLIBC_2.0 malloc_usable_size
  1305. 00023db0 g DF .text 00000017 GLIBC_2.1 __isdigit_l
  1306. 000d2f50 g DF .text 00000013 GLIBC_2.0 setfsgid
  1307. 0005c840 g DF .text 0000007e GLIBC_2.2 _IO_wdefault_doallocate
  1308. 0004ae40 g DF .text 00005c04 GLIBC_2.0 _IO_vfscanf
  1309. 00056a20 g DF .text 0000005c GLIBC_2.0 remove
  1310. 000b7550 w DF .text 0000003a GLIBC_2.0 sched_setscheduler
  1311. 0007dce0 w DF .text 00000039 GLIBC_2.3 wcstold_l
  1312. 00093740 w DF .text 00000038 GLIBC_2.0 setpgid
  1313. 000d3ac0 w DF .text 00000037 GLIBC_2.0 getpeername
  1314. 000819d0 w DF .text 00000055 GLIBC_2.3 wcscasecmp_l
  1315. 00074da0 g DF .text 00000038 GLIBC_2.1.1 __memset_gcn_by2
  1316. 000e7750 g DF .text 00000158 GLIBC_2.4 __fgets_chk
  1317. 0006fb30 g DF .text 00000154 GLIBC_2.1.1 __strverscmp
  1318. 000e39d0 g DF .text 00000019 GLIBC_2.2 __res_state
  1319. 000f8580 g DF .text 00000115 GLIBC_2.0 pmap_getmaps
  1320. 000298f0 w DF .text 0000006a GLIBC_2.0 frexpf
  1321. 00141360 g DO .data.rel.ro 000001f8 (GLIBC_2.3) sys_errlist
  1322. 0006fcf0 g DF .text 00000064 GLIBC_2.2 __strndup
  1323. 00141360 g DO .data.rel.ro 000001ec (GLIBC_2.0) sys_errlist
  1324. 00141360 g DO .data.rel.ro 00000210 GLIBC_2.4 sys_errlist
  1325. 00074d60 g DF .text 00000035 GLIBC_2.1.1 __memset_gcn_by4
  1326. 00141360 g DO .data.rel.ro 000001f4 (GLIBC_2.1) sys_errlist
  1327. 001462ec g DO .bss 00000004 GLIBC_2.0 mallwatch
  1328. 00065450 w DF .text 000001fd GLIBC_2.2 _flushlbf
  1329. 00076b60 w DF .text 00000019 GLIBC_2.0 mbsinit
  1330. 000d69c0 w DF .text 0000005d GLIBC_2.3 towupper_l
  1331. 000e6b90 g DF .text 000000bc GLIBC_2.3.4 __strncpy_chk
  1332. 00093530 w DF .text 0000000c GLIBC_2.0 getgid
  1333. 0010a520 g DF .text 00000043 GLIBC_2.0 __register_frame_table
  1334. 000b0260 w DF .text 0000007c GLIBC_2.0 re_compile_pattern
  1335. 000465f0 w DF .text 00000034 GLIBC_2.0 asprintf
  1336. 00084630 w DF .text 00000079 GLIBC_2.0 tzset
  1337. 000c0f10 g DF .text 000000bc GLIBC_PRIVATE __libc_pwrite
  1338. 001430cc g DO .data 00000004 GLIBC_2.0 re_max_failures
  1339. 000c21c0 g DF .text 0000003f (GLIBC_2.1) __lxstat64
  1340. 00143920 g DO .data 00000050 GLIBC_2.0 _IO_stderr_
  1341. 000c21c0 g DF .text 0000003f GLIBC_2.2 __lxstat64
  1342. 00029c80 w DF .text 00000071 GLIBC_2.0 frexpl
  1343. 000fd820 g DF .text 00000170 GLIBC_2.0 xdrrec_eof
  1344. 00023c00 g DF .text 00000048 GLIBC_2.0 isupper
  1345. 000cf600 g DF .text 00000029 GLIBC_2.0 vsyslog
  1346. 00016a10 g DF .text 0000019e (GLIBC_2.0) __umoddi3
  1347. 000fb9e0 g DF .text 000002ee GLIBC_2.0 svcudp_bufcreate
  1348. 0006fe20 g DF .text 00000121 GLIBC_2.0 __strerror_r
  1349. 00029800 w DF .text 00000011 GLIBC_2.0 finitef
  1350. 000c28e0 w DF .text 0000012b GLIBC_2.1 fstatfs64
  1351. 00106e00 w DF .text 00000068 GLIBC_2.0 getutline
  1352. 000e5970 g DF .text 0000008a GLIBC_PRIVATE __nss_services_lookup
  1353. 00066100 g DF .text 00000138 GLIBC_2.0 __uflow
  1354. 00070fd0 g DF .text 00000044 GLIBC_2.0 __mempcpy
  1355. 0002ea30 w DF .text 00000030 GLIBC_2.3 strtol_l
  1356. 000297e0 g DF .text 00000018 GLIBC_2.0 __isnanf
  1357. 00022820 g DF .text 00000067 GLIBC_2.2 __nl_langinfo_l
  1358. 000fa150 g DF .text 00000087 GLIBC_2.2 svc_getreq_poll
  1359. 00029ab0 w DF .text 0000000e GLIBC_2.0 finitel
  1360. 000c1d90 g DF .text 00000081 GLIBC_2.6 __sched_cpucount
  1361. 000df2c0 g DF .text 00000043 GLIBC_2.0 pthread_attr_setinheritsched
  1362. 00000000 g DO *ABS* 00000000 GLIBC_2.1.1 GLIBC_2.1.1
  1363. 00146510 g DO .bss 00000004 GLIBC_2.2 svc_pollfd
  1364. 00000000 g DO *ABS* 00000000 GLIBC_2.1.2 GLIBC_2.1.2
  1365. 00060650 w DF .text 000000f7 GLIBC_2.0 __vsnprintf
  1366. 000227b0 g DF .text 00000070 GLIBC_2.0 nl_langinfo
  1367. 00000000 g DO *ABS* 00000000 GLIBC_2.1.3 GLIBC_2.1.3
  1368. 000cc460 g DF .text 00000089 GLIBC_2.0 setfsent
  1369. 000cc940 w DF .text 00000092 GLIBC_2.0 hasmntopt
  1370. 00029a60 g DF .text 00000046 GLIBC_2.0 __isnanl
  1371. 0002b1b0 g DF .text 00000016 GLIBC_2.1 __libc_current_sigrtmax
  1372. 0008e0b0 w DF .text 00000092 GLIBC_2.0 opendir
  1373. 000ea770 g DF .text 000001e1 GLIBC_2.1.2 getnetbyaddr_r
  1374. 001115d0 g DF .text 00000063 (GLIBC_2.0) getnetbyaddr_r
  1375. 00076080 g DF .text 000000a1 GLIBC_2.0 wcsncat
  1376. 00029680 w DF .text 0000000d GLIBC_2.1 scalbln
  1377. 000ea270 g DF .text 000000ab GLIBC_2.0 gethostent
  1378. 000e8ab0 g DF .text 00000042 GLIBC_2.4 __mbsrtowcs_chk
  1379. 000585a0 g DF .text 00000171 GLIBC_2.0 _IO_fgets
  1380. 00146500 g DO .bss 00000010 GLIBC_2.0 rpc_createerr
  1381. 000710c0 w DF .text 0000002e GLIBC_2.0 bzero
  1382. 000f8a60 g DF .text 00000685 GLIBC_2.0 clnt_broadcast
  1383. 0002ad00 g DF .text 00000024 GLIBC_2.0 __sigaddset
  1384. 000297b0 g DF .text 00000024 GLIBC_2.0 __isinff
  1385. 0006e220 g DF .text 000000bd GLIBC_2.2 mcheck_check_all
  1386. 00143164 g DO .data 00000004 GLIBC_2.1 argp_err_exit_status
  1387. 000d73c0 g DF .text 0000012d GLIBC_2.0 getspnam
  1388. 000df4f0 g DF .text 0000003c GLIBC_2.0 pthread_condattr_destroy
  1389. 000c2730 g DF .text 00000038 GLIBC_2.2 __statfs
  1390. 00144a94 g DO .bss 00000004 GLIBC_2.0 __environ
  1391. 000e7e90 g DF .text 00000056 GLIBC_2.4 __wcscat_chk
  1392. 000c2140 g DF .text 0000003f GLIBC_2.2 __xstat64
  1393. 00090850 w DF .text 0000024e GLIBC_2.0 fgetgrent_r
  1394. 000c2140 g DF .text 0000003f (GLIBC_2.1) __xstat64
  1395. 000f37d0 g DF .text 00000011 GLIBC_2.3.3 inet6_option_space
  1396. 000d2cd0 w DF .text 00000090 GLIBC_2.0 clone
  1397. 000d6ef0 g DF .text 00000090 GLIBC_2.1 __iswpunct_l
  1398. 0002c520 g DF .text 000000ef GLIBC_2.0 getenv
  1399. 00023fa0 g DF .text 0000003c GLIBC_2.3 __ctype_b_loc
  1400. 00029a00 g DF .text 00000055 GLIBC_2.0 __isinfl
  1401. 001108e0 g DF .text 00000032 (GLIBC_2.3.3) sched_getaffinity
  1402. 000b76c0 g DF .text 00000089 GLIBC_2.3.4 sched_getaffinity
  1403. 0002aa00 w DF .text 0000001b GLIBC_2.2 __xpg_sigpause
  1404. 000d5230 w DF .text 000001cd GLIBC_2.0 profil
  1405. 00055d10 g DF .text 00000034 GLIBC_2.0 sscanf
  1406. 0010a100 g DF .text 00000023 GLIBC_2.0 __deregister_frame_info
  1407. 00093900 w DF .text 00000085 GLIBC_2.0 setresuid
  1408. 0002e130 w DF .text 00000052 GLIBC_2.0 jrand48_r
  1409. 000d3c30 w DF .text 0000006c GLIBC_2.0 recvfrom
  1410. 00074e70 g DF .text 00000040 GLIBC_2.1.1 __mempcpy_by2
  1411. 000d5c40 g DF .text 00000019 GLIBC_2.0 __profile_frequency
  1412. 00077770 w DF .text 0000032f GLIBC_2.0 wcsnrtombs
  1413. 00074e30 g DF .text 00000033 GLIBC_2.1.1 __mempcpy_by4
  1414. 00146520 g DO .bss 00000080 GLIBC_2.0 svc_fdset
  1415. 000ef660 g DF .text 0000009c GLIBC_2.0 ruserok
  1416. 0006f550 g DF .text 0000002c GLIBC_2.0 _obstack_allocated_p
  1417. 000c7250 g DF .text 0000003b GLIBC_2.0 fts_set
  1418. 000fc690 g DF .text 0000001a GLIBC_2.1.1 xdr_u_longlong_t
  1419. 000caec0 g DF .text 000000ab GLIBC_2.0 nice
  1420. 000b0130 w DF .text 00000126 GLIBC_2.0 regcomp
  1421. 00101c60 g DF .text 0000023b GLIBC_2.1 xdecrypt
  1422. 000c2ff0 w DF .text 00000070 GLIBC_2.0 __open
  1423. 00085ac0 w DF .text 00000038 GLIBC_2.0 getitimer
  1424. 00023ac0 g DF .text 00000048 GLIBC_2.0 isgraph
  1425. 00146344 g DO .bss 00000004 GLIBC_2.0 optarg
  1426. 00028a30 g DF .text 00000080 GLIBC_2.0 catclose
  1427. 000f7630 g DF .text 000002db GLIBC_2.0 clntudp_bufcreate
  1428. 000eb950 g DF .text 0000013d GLIBC_2.0 getservbyname
  1429. 00061330 g DF .text 0000001a GLIBC_2.2 __freading
  1430. 0007ff30 g DF .text 0000007b GLIBC_2.0 wcwidth
  1431. 00143844 g DO .data 00000004 GLIBC_2.0 stderr
  1432. 000d4500 g DF .text 00000065 GLIBC_2.2 msgctl
  1433. 00110eb0 g DF .text 00000062 (GLIBC_2.0) msgctl
  1434. 000e8f60 g DF .text 0000002d GLIBC_2.0 inet_lnaof
  1435. 0002ae80 g DF .text 0000006a GLIBC_2.0 sigdelset
  1436. 00016110 w DF .text 00000016 GLIBC_2.1 gnu_get_libc_release
  1437. 000cb070 w DF .text 0000003a GLIBC_2.0 ioctl
  1438. 000c44d0 g DF .text 00000178 GLIBC_2.4 fchownat
  1439. 000923c0 g DF .text 00000034 GLIBC_2.0 alarm
  1440. 00143560 g DO .data 00000098 GLIBC_2.1 _IO_2_1_stderr_
  1441. 0005c580 g DF .text 00000049 GLIBC_2.2 _IO_sputbackwc
  1442. 0006ad30 g DF .text 00000105 GLIBC_2.0 __libc_pvalloc
  1443. 00037700 w DF .text 0000007d GLIBC_2.0 system
  1444. 00100700 g DF .text 00000068 GLIBC_2.1 xdr_getcredres
  1445. 000782f0 w DF .text 00000040 GLIBC_2.1 __wcstol_l
  1446. 00055c30 w DF .text 00000039 GLIBC_2.2 vfwscanf
  1447. 000d3520 g DF .text 0000002c GLIBC_2.4 inotify_init
  1448. 000cdc60 g DF .text 00000044 GLIBC_2.0 chflags
  1449. 000d1c60 g DF .text 00000026 GLIBC_2.0 err
  1450. 000ebab0 g DF .text 000001fb GLIBC_2.1.2 getservbyname_r
  1451. 00111990 g DF .text 00000066 (GLIBC_2.0) getservbyname_r
  1452. 000fc810 g DF .text 00000079 GLIBC_2.0 xdr_bool
  1453. 00071100 g DF .text 00000064 GLIBC_2.1 ffsll
  1454. 00023ef0 g DF .text 0000002c GLIBC_2.3 __isctype
  1455. 000caae0 g DF .text 0000006a GLIBC_2.1 setrlimit64
  1456. 00093670 w DF .text 00000088 GLIBC_2.0 group_member
  1457. 000c1e60 g DF .text 00000056 GLIBC_2.6 sched_getcpu
  1458. 000583a0 g DF .text 000001df GLIBC_2.2 _IO_fgetpos
  1459. 00065a80 g DF .text 00000052 GLIBC_2.0 _IO_free_backup_area
  1460. 000cfa20 w DF .text 00000038 GLIBC_2.0 munmap
  1461. 0010d4c0 g DF .text 0000013b (GLIBC_2.0) _IO_fgetpos
  1462. 000c14e0 g DF .text 00000037 GLIBC_2.2 posix_spawnattr_setsigdefault
  1463. 0006f2e0 g DF .text 000000cc GLIBC_2.0 _obstack_begin_1
  1464. 000918d0 g DF .text 00000319 GLIBC_PRIVATE _nss_files_parse_pwent
  1465. 000e88a0 g DF .text 0000003b GLIBC_2.4 __getgroups_chk
  1466. 00091fe0 w DF .text 00000029 GLIBC_2.0 wait3
  1467. 00092010 w DF .text 00000040 GLIBC_2.0 wait4
  1468. 0006f3b0 g DF .text 00000195 GLIBC_2.0 _obstack_newchunk
  1469. 00074ef0 g DF .text 00000034 GLIBC_2.1.1 __stpcpy_g
  1470. 000d25b0 w DF .text 0000007c GLIBC_2.0 advance
  1471. 000f42e0 g DF .text 0000002a GLIBC_2.5 inet6_opt_init
  1472. 00143024 g DO .data 00000002 GLIBC_2.0 __fpu_control
  1473. 00109ff0 g DF .text 0000003a GLIBC_2.0 __register_frame_info
  1474. 000e9980 g DF .text 000001a5 GLIBC_2.0 gethostbyname
  1475. 000c3760 w DF .text 0000003a GLIBC_2.0 __lseek
  1476. 000e6e40 g DF .text 00000039 GLIBC_2.3.4 __snprintf_chk
  1477. 001430d8 g DO .data 00000004 GLIBC_2.0 optopt
  1478. 000c13b0 g DF .text 00000097 GLIBC_2.2 posix_spawn_file_actions_adddup2
  1479. 000782f0 w DF .text 00000040 GLIBC_2.3 wcstol_l
  1480. 00146354 g DO .bss 00000004 GLIBC_2.0 error_message_count
  1481. 00023d90 g DF .text 00000015 GLIBC_2.1 __iscntrl_l
  1482. 000c2f00 g DF .text 000000ed GLIBC_2.4 mkdirat
  1483. 000cb6a0 g DF .text 000000a7 GLIBC_2.0 seteuid
  1484. 00075f50 g DF .text 0000002c GLIBC_2.0 wcscpy
  1485. 0002e0f0 g DF .text 00000037 GLIBC_2.0 mrand48_r
  1486. 000d2f30 g DF .text 00000013 GLIBC_2.0 setfsuid
  1487. 000c3f40 w DF .text 00000034 GLIBC_2.0 dup
  1488. 000e68a0 g DF .text 000000d9 GLIBC_2.3.4 __memset_chk
  1489. 00143860 g DO .data 00000050 GLIBC_2.0 _IO_stdin_
  1490. 000df9a0 g DF .text 00000046 GLIBC_2.0 pthread_exit
  1491. 000fc7d0 g DF .text 00000037 GLIBC_2.0 xdr_u_char
  1492. 0005b310 g DF .text 0000003d GLIBC_2.2 getwchar_unlocked
  1493. 00146340 g DO .bss 00000004 GLIBC_2.0 re_syntax_options
  1494. 00108fb0 g DF .text 00000023 GLIBC_2.1 pututxline
  1495. 000d4300 w DF .text 000000b6 GLIBC_2.0 msgsnd
  1496. 00093a20 g DF .text 000000dd GLIBC_2.0 getlogin
  1497. 000cdcb0 g DF .text 00000044 GLIBC_2.0 fchflags
  1498. 0002b0d0 g DF .text 0000005f GLIBC_2.0 sigandset
  1499. 000298e0 w DF .text 0000000d GLIBC_2.0 scalbnf
  1500. 000b7680 w DF .text 00000038 GLIBC_2.0 sched_rr_get_interval
  1501. 00064360 g DF .text 00000091 GLIBC_2.1 _IO_file_finish
  1502. 000d2c50 g DF .text 00000075 GLIBC_2.2 __sysctl
  1503. 000fcea0 g DF .text 000000a0 GLIBC_2.0 xdr_double
  1504. 00093550 w DF .text 0000003f GLIBC_2.0 getgroups
  1505. 00029c70 w DF .text 0000000d GLIBC_2.0 scalbnl
  1506. 000cb210 w DF .text 00000103 GLIBC_2.0 readv
  1507. 00093510 w DF .text 0000000c GLIBC_2.0 getuid
  1508. 000ef5a0 g DF .text 0000003f GLIBC_2.0 rcmd
  1509. 000c4f30 w DF .text 0000003a GLIBC_2.0 readlink
  1510. 000d1790 g DF .text 0000008b GLIBC_2.0 lsearch
  1511. 000ee6b0 g DF .text 000000ca GLIBC_2.2 iruserok_af
  1512. 00055c90 g DF .text 00000024 GLIBC_2.0 fscanf
  1513. 000eccc0 g DF .text 00000656 GLIBC_2.0 ether_aton_r
  1514. 00041ac0 g DF .text 0000264a GLIBC_2.0 __printf_fp
  1515. 000d3620 w DF .text 00000046 GLIBC_2.0 mremap
  1516. 000d2ec0 w DF .text 0000006a GLIBC_2.3 readahead
  1517. 00100c60 g DF .text 000001a0 GLIBC_2.1 host2netname
  1518. 000d2a60 g DF .text 00000038 GLIBC_2.3 removexattr
  1519. 0005c410 g DF .text 0000002d GLIBC_2.2 _IO_switch_to_wbackup_area
  1520. 000f88f0 g DF .text 0000006f GLIBC_2.0 xdr_pmap
  1521. 00000000 g DO *ABS* 00000000 GLIBC_2.2.1 GLIBC_2.2.1
  1522. 00074eb0 g DF .text 00000033 GLIBC_2.1.1 __mempcpy_byn
  1523. 000eb310 g DF .text 000000a2 GLIBC_2.0 getprotoent
  1524. 00092aa0 w DF .text 00000053 GLIBC_2.0 execve
  1525. 0005e350 g DF .text 0000015f GLIBC_2.2 _IO_wfile_sync
  1526. 00000000 g DO *ABS* 00000000 GLIBC_2.2.2 GLIBC_2.2.2
  1527. 000fc8b0 g DF .text 000000cd GLIBC_2.0 xdr_opaque
  1528. 00093540 w DF .text 0000000c GLIBC_2.0 getegid
  1529. 00000000 g DO *ABS* 00000000 GLIBC_2.2.3 GLIBC_2.2.3
  1530. 00000000 g DO *ABS* 00000000 GLIBC_2.2.4 GLIBC_2.2.4
  1531. 000caa10 g DF .text 0000003f GLIBC_2.2 setrlimit
  1532. 000d30f0 g DF .text 00000038 (GLIBC_2.0) setrlimit
  1533. 000b7480 g DF .text 00000047 GLIBC_2.0 getopt_long
  1534. 00063c10 g DF .text 0000011b GLIBC_2.0 _IO_file_open
  1535. 00000000 g DO *ABS* 00000000 GLIBC_2.2.6 GLIBC_2.2.6
  1536. 000835e0 w DF .text 00000038 GLIBC_2.0 settimeofday
  1537. 0005fe80 g DF .text 000000cb GLIBC_2.0 open_memstream
  1538. 000cb040 g DF .text 00000022 GLIBC_2.0 sstk
  1539. 00109e50 g DF .text 000000d7 GLIBC_PRIVATE _dl_vsym
  1540. 000613b0 g DF .text 00000076 GLIBC_2.2 __fpurge
  1541. 00108fe0 g DF .text 00000023 GLIBC_2.1 utmpxname
  1542. 00093700 w DF .text 00000034 GLIBC_2.0 getpgid
  1543. 0002b1b0 g DF .text 00000016 GLIBC_PRIVATE __libc_current_sigrtmax_private
  1544. 00037150 w DF .text 00000029 GLIBC_2.3 strtold_l
  1545. 000e6aa0 g DF .text 000000e7 GLIBC_2.3.4 __strncat_chk
  1546. 000c1d60 g DF .text 00000024 GLIBC_2.2 posix_madvise
  1547. 000c1560 g DF .text 00000012 GLIBC_2.2 posix_spawnattr_getpgroup
  1548. 000d1af0 g DF .text 000000e3 GLIBC_2.0 vwarnx
  1549. 000753b0 g DF .text 000000d3 GLIBC_2.1.1 __mempcpy_small
  1550. 0010d620 g DF .text 00000184 (GLIBC_2.1) fgetpos64
  1551. 0005abb0 g DF .text 000001af GLIBC_2.2 fgetpos64
  1552. 0006f840 w DF .text 00000167 GLIBC_2.0 index
  1553. 001464e4 g DO .bss 00000004 GLIBC_2.0 rexecoptions
  1554. 000df1d0 g DF .text 00000043 GLIBC_2.0 pthread_attr_getdetachstate
  1555. 0005daf0 g DF .text 0000019f GLIBC_2.2 _IO_wfile_xsputn
  1556. 00092f20 g DF .text 00000441 GLIBC_2.0 execvp
  1557. 000cfb50 g DF .text 0000003a GLIBC_2.2 mincore
  1558. 00068850 w DF .text 0000018a GLIBC_2.0 mallinfo
  1559. 000689e0 w DF .text 00000077 GLIBC_2.0 malloc_trim
  1560. 000665f0 g DF .text 00000042 GLIBC_2.0 _IO_str_underflow
  1561. 000f2710 g DF .text 00000023 GLIBC_2.3 freeifaddrs
  1562. 000fb8b0 g DF .text 00000126 GLIBC_2.0 svcudp_enablecache
  1563. 000230e0 g DF .text 0000014b GLIBC_2.1 __duplocale
  1564. 00081a30 g DF .text 00000073 GLIBC_2.1 __wcsncasecmp_l
  1565. 000c4c10 g DF .text 000001c1 GLIBC_2.4 linkat
  1566. 00065d90 g DF .text 00000129 GLIBC_2.0 _IO_default_pbackfail
  1567. 000f4690 g DF .text 00000024 GLIBC_2.5 inet6_rth_space
  1568. 0005c7e0 g DF .text 00000058 GLIBC_2.2 _IO_free_wbackup_area
  1569. 000df6d0 g DF .text 0000004a GLIBC_2.3.2 pthread_cond_timedwait
  1570. 001112d0 g DF .text 0000004a (GLIBC_2.0) pthread_cond_timedwait
  1571. 000914f0 g DF .text 000001ec GLIBC_2.1.2 getpwnam_r
  1572. 0010d7d0 g DF .text 00000110 (GLIBC_2.0) _IO_fsetpos
  1573. 0010f070 g DF .text 0000005f (GLIBC_2.0) getpwnam_r
  1574. 00058e40 g DF .text 0000013e GLIBC_2.2 _IO_fsetpos
  1575. 0014332c w DO .data 00000004 GLIBC_2.0 __realloc_hook
  1576. 0005f8b0 g DF .text 0000026b GLIBC_2.0 freopen
  1577. 000e6520 w DF .text 00000217 GLIBC_2.1 backtrace_symbols_fd
  1578. 000712d0 w DF .text 0000007a GLIBC_2.0 strncasecmp
  1579. 000c2200 g DF .text 00000096 GLIBC_2.0 __xmknod
  1580. 0005dc90 g DF .text 000006b2 GLIBC_2.2 _IO_wfile_seekoff
  1581. 000e7a80 g DF .text 00000032 GLIBC_2.4 __recv_chk
  1582. 000cc390 g DF .text 0000008b GLIBC_2.0 ptrace
  1583. 000f4710 g DF .text 00000106 GLIBC_2.5 inet6_rth_reverse
  1584. 000cdd30 g DF .text 0000001a GLIBC_2.0 remque
  1585. 000f2b40 g DF .text 00000c87 GLIBC_2.3 getifaddrs
  1586. 000d70c0 w DF .text 0000005d GLIBC_2.3 towlower_l
  1587. 0005bc50 g DF .text 00000038 GLIBC_2.2 putwc_unlocked
  1588. 00045bc0 g DF .text 0000002b GLIBC_2.1 printf_size_info
  1589. 00000020 g D .tbss 00000004 GLIBC_PRIVATE h_errno
  1590. 00029680 w DF .text 0000000d GLIBC_2.0 scalbn
  1591. 0007dce0 w DF .text 00000039 GLIBC_2.1 __wcstold_l
  1592. 000f22d0 g DF .text 000000a4 GLIBC_2.1 if_nametoindex
  1593. 000298e0 w DF .text 0000000d GLIBC_2.1 scalblnf
  1594. 00077ce0 g DF .text 00000045 GLIBC_2.0 __wcstoll_internal
  1595. 00146480 g DO .bss 00000030 GLIBC_2.2 _res_hconf
  1596. 000c4000 w DF .text 0000006c GLIBC_2.0 creat
  1597. 000c2020 g DF .text 0000008e GLIBC_2.0 __fxstat
  1598. 0010e860 g DF .text 000000d8 (GLIBC_2.0) _IO_file_close_it
  1599. 00064400 g DF .text 0000019d GLIBC_2.1 _IO_file_close_it
  1600. 00029c70 w DF .text 0000000d GLIBC_2.1 scalblnl
  1601. 000631f0 g DF .text 00000016 GLIBC_2.0 _IO_file_close
  1602. 000700a0 g DF .text 000000aa GLIBC_2.0 strncat
  1603. 001002d0 g DF .text 00000081 GLIBC_2.1 key_decryptsession_pk
  1604. 0014316c g DO .data 00000004 GLIBC_2.0 __check_rhosts_file
  1605. 000c9630 g DF .text 00000040 GLIBC_2.3 sendfile64
  1606. 000d3d80 w DF .text 0000006c GLIBC_2.0 sendmsg
  1607. 000e6520 g DF .text 00000217 GLIBC_2.1 __backtrace_symbols_fd
  1608. 00039cf0 g DF .text 00000029 GLIBC_2.1 wcstoimax
  1609. 0002e580 g DF .text 00000046 GLIBC_2.0 strtoull
  1610. 00071970 g DF .text 00000090 GLIBC_2.1.1 __strsep_g
  1611. 0005cb30 g DF .text 000000e7 GLIBC_2.2 __wunderflow
  1612. 00016bb0 g DF .text 00000133 (GLIBC_2.0) __udivdi3
  1613. 00057d70 g DF .text 000001e8 GLIBC_2.1 _IO_fclose
  1614. 0010cd10 g DF .text 00000183 (GLIBC_2.0) _IO_fclose
  1615. 00061380 g DF .text 00000013 GLIBC_2.2 __fwritable
  1616. 000e7c30 g DF .text 00000038 GLIBC_2.4 __realpath_chk
  1617. 0002afc0 g DF .text 000000a2 GLIBC_2.0 __sysv_signal
  1618. 000cab90 w DF .text 000000cb GLIBC_2.0 ulimit
  1619. 000609d0 w DF .text 00000034 GLIBC_2.0 obstack_printf
  1620. 0005e870 g DF .text 00000475 GLIBC_2.2 _IO_wfile_underflow
  1621. 0005b050 g DF .text 0000006d GLIBC_2.2 fputwc_unlocked
  1622. 000c1c40 g DF .text 00000039 GLIBC_2.2 posix_spawnattr_getsigmask
  1623. 000e5bb0 g DF .text 0000008c GLIBC_2.0 __nss_passwd_lookup
  1624. 0002dd60 g DF .text 00000034 GLIBC_2.0 drand48
  1625. 000fc380 g DF .text 0000001f GLIBC_2.0 xdr_free
  1626. 0005f750 g DF .text 00000034 GLIBC_2.0 fileno
  1627. 0010d3e0 g DF .text 00000023 (GLIBC_2.0) pclose
  1628. 000710c0 g DF .text 0000002e GLIBC_2.0 __bzero
  1629. 000ea4e0 g DF .text 000000a8 GLIBC_2.0 sethostent
  1630. 00023e90 g DF .text 00000017 GLIBC_2.1 __isxdigit_l
  1631. 00060040 g DF .text 00000023 GLIBC_2.1 pclose
  1632. 000f46e0 g DF .text 00000026 GLIBC_2.5 inet6_rth_getaddr
  1633. 000b5970 w DF .text 00000039 GLIBC_2.0 re_search
  1634. 00093740 g DF .text 00000038 GLIBC_2.0 __setpgid
  1635. 000cb870 w DF .text 00000098 GLIBC_2.0 gethostname
  1636. 00024470 g DF .text 00000022 GLIBC_2.0 __dgettext
  1637. 000df0c0 g DF .text 00000046 GLIBC_2.0 pthread_equal
  1638. 000d8400 w DF .text 0000008f GLIBC_2.0 sgetspent_r
  1639. 000c2bf0 w DF .text 000000a3 GLIBC_2.1 fstatvfs64
  1640. 000cc2b0 g DF .text 0000003e GLIBC_2.0 usleep
  1641. 000df800 g DF .text 00000043 GLIBC_2.0 pthread_mutex_init
  1642. 000d2cd0 g DF .text 00000090 GLIBC_2.0 __clone
  1643. 000cd7c0 w DF .text 0000003f GLIBC_2.0 utimes
  1644. 00143408 g DO .data 00000004 (GLIBC_2.2) __ctype32_toupper
  1645. 0002b690 g DF .text 000001fd GLIBC_2.1 sigset
  1646. 000d4210 g DF .text 0000003e GLIBC_2.0 __cmsg_nxthdr
  1647. 0006f580 g DF .text 00000021 GLIBC_2.0 _obstack_memory_used
  1648. 000d2180 g DF .text 00000086 GLIBC_2.0 ustat
  1649. 000c43b0 g DF .text 00000053 GLIBC_2.1 chown
  1650. 00110960 g DF .text 00000031 (GLIBC_2.0) chown
  1651. 0006cff0 g DF .text 00000487 GLIBC_2.0 __libc_realloc
  1652. 000d3810 g DF .text 0000004c GLIBC_2.5 splice
  1653. 000c1590 g DF .text 00000050 GLIBC_2.2 posix_spawn
  1654. 000d6b50 g DF .text 00000090 GLIBC_2.1 __iswblank_l
  1655. 0005c5d0 g DF .text 0000004b GLIBC_2.2 _IO_sungetwc
  1656. 00121960 g DO .rodata 00000024 GLIBC_PRIVATE _itoa_lower_digits
  1657. 000c4120 w DF .text 00000130 GLIBC_2.0 getcwd
  1658. 000fccb0 g DF .text 0000004f GLIBC_2.0 xdr_vector
  1659. 000593f0 w DF .text 00000278 GLIBC_2.0 __getdelim
  1660. 00039eb0 w DF .text 000000a4 GLIBC_2.1 swapcontext
  1661. 000f9d10 g DF .text 00000030 GLIBC_2.2.3 __rpc_thread_svc_fdset
  1662. 00143340 g DO .data 00000004 GLIBC_2.0 __progname_full
  1663. 000d2950 g DF .text 00000040 GLIBC_2.3 lgetxattr
  1664. 001038c0 g DF .text 00000068 GLIBC_2.1 xdr_uint8_t
  1665. 00029800 g DF .text 00000011 GLIBC_2.0 __finitef
  1666. 00146358 g DO .bss 00000004 GLIBC_2.0 error_one_per_line
  1667. 00080fb0 w DF .text 00000955 GLIBC_2.3 wcsxfrm_l
  1668. 000fe9e0 g DF .text 0000022e GLIBC_2.1 authdes_pk_create
  1669. 000f2230 g DF .text 0000009b GLIBC_2.1 if_indextoname
  1670. 000d3960 g DF .text 00000040 GLIBC_2.5 vmsplice
  1671. 0005c370 g DF .text 00000024 GLIBC_2.2 swscanf
  1672. 000f9de0 g DF .text 00000042 GLIBC_2.0 svcerr_decode
  1673. 00059270 w DF .text 0000015f GLIBC_2.0 fwrite
  1674. 00109010 g DF .text 0000002a GLIBC_2.1 updwtmpx
  1675. 00016130 w DF .text 00000016 GLIBC_2.1 gnu_get_libc_version
  1676. 00029ab0 g DF .text 0000000e GLIBC_2.0 __finitel
  1677. 000ffcc0 g DF .text 00000089 GLIBC_2.1 des_setparity
  1678. 00029820 w DF .text 0000001e GLIBC_2.0 copysignf
  1679. 000e6740 g DF .text 00000005 GLIBC_2.2 __cyg_profile_func_enter
  1680. 00058d00 w DF .text 00000118 GLIBC_2.0 fread
  1681. 000f4000 g DF .text 00000184 GLIBC_2.3.4 getsourcefilter
  1682. 000297e0 w DF .text 00000018 GLIBC_2.0 isnanf
  1683. 000d04e0 g DF .text 0000032a GLIBC_2.0 qfcvt_r
  1684. 0002e050 g DF .text 00000037 GLIBC_2.0 lrand48_r
  1685. 000cfe50 g DF .text 000002e1 GLIBC_2.0 fcvt_r
  1686. 000835a0 w DF .text 00000038 GLIBC_2.0 gettimeofday
  1687. 000d6a20 w DF .text 00000090 GLIBC_2.3 iswalnum_l
  1688. 00017100 g DF .text 0000003a GLIBC_2.1 iconv_close
  1689. 00083620 w DF .text 0000011c GLIBC_2.0 adjtime
  1690. 000f07b0 w DF .text 00000095 GLIBC_2.0 getnetgrent_r
  1691. 0002a360 w DF .text 00000157 GLIBC_2.0 sigaction
  1692. 0005c6d0 g DF .text 0000003d GLIBC_2.2 _IO_wmarker_delta
  1693. 00056a80 g DF .text 00000038 GLIBC_2.0 rename
  1694. 00029ac0 w DF .text 0000001e GLIBC_2.0 copysignl
  1695. 0002df10 g DF .text 00000039 GLIBC_2.0 seed48
  1696. 000cdd50 g DF .text 00000042 GLIBC_2.0 endttyent
  1697. 00029a60 w DF .text 00000046 GLIBC_2.0 isnanl
  1698. 000659f0 g DF .text 0000008d GLIBC_2.0 _IO_default_finish
  1699. 001010f0 g DF .text 00000227 GLIBC_2.1 rtime
  1700. 000cc7b0 g DF .text 000000a9 GLIBC_2.0 getfsent
  1701. 000d32f0 g DF .text 00000040 GLIBC_2.3.2 epoll_ctl
  1702. 000d6920 g DF .text 00000092 GLIBC_2.1 __iswxdigit_l
  1703. 00058b90 g DF .text 00000149 GLIBC_2.0 _IO_fputs
  1704. 00000000 g DO *ABS* 00000000 GLIBC_2.3.2 GLIBC_2.3.2
  1705. 000cfb10 g DF .text 0000003a GLIBC_2.0 madvise
  1706. 00090580 g DF .text 000002c2 GLIBC_PRIVATE _nss_files_parse_grent
  1707. 00100f00 g DF .text 00000063 GLIBC_2.1 getnetname
  1708. 00101bf0 g DF .text 00000061 GLIBC_2.1 passwd2des
  1709. 00000000 g DO *ABS* 00000000 GLIBC_2.3.3 GLIBC_2.3.3
  1710. 001095e0 g DF .text 00000033 GLIBC_2.1 _dl_mcount_wrapper
  1711. 0002ad30 g DF .text 00000024 GLIBC_2.0 __sigdelset
  1712. 00000000 g DO *ABS* 00000000 GLIBC_2.3.4 GLIBC_2.3.4
  1713. 0008e510 g DF .text 000001e4 GLIBC_2.0 scandir
  1714. 00075520 g DF .text 000000b2 GLIBC_2.1.1 __stpcpy_small
  1715. 000ead50 g DF .text 000000a8 GLIBC_2.0 setnetent
  1716. 000cc1e0 g DF .text 0000002b GLIBC_2.2 mkstemp64
  1717. 0002b190 g DF .text 00000016 GLIBC_PRIVATE __libc_current_sigrtmin_private
  1718. 000d2fa0 g DF .text 00000019 GLIBC_2.3.3 gnu_dev_minor
  1719. 000297b0 w DF .text 00000024 GLIBC_2.0 isinff
  1720. 000938a0 w DF .text 00000053 GLIBC_2.0 getresgid
  1721. 00029f60 g DF .text 00000064 GLIBC_PRIVATE __libc_siglongjmp
  1722. 000c2730 w DF .text 00000038 GLIBC_2.0 statfs
  1723. 00093520 w DF .text 0000000c GLIBC_2.0 geteuid
  1724. 000b74d0 w DF .text 00000038 GLIBC_2.0 sched_setparam
  1725. 000e6750 g DF .text 00000050 GLIBC_2.3.4 __memcpy_chk
  1726. 000ed320 g DF .text 00000153 GLIBC_2.0 ether_hostton
  1727. 000d6ab0 w DF .text 00000092 GLIBC_2.3 iswalpha_l
  1728. 000d37d0 g DF .text 00000040 GLIBC_2.0 quotactl
  1729. 0002d800 w DF .text 00000060 GLIBC_2.0 srandom
  1730. 000d6f80 g DF .text 00000092 GLIBC_2.1 __iswspace_l
  1731. 000ecb10 g DF .text 0000017d GLIBC_2.1.2 getrpcbynumber_r
  1732. 00111cf0 g DF .text 0000005f (GLIBC_2.0) getrpcbynumber_r
  1733. 00029a00 w DF .text 00000055 GLIBC_2.0 isinfl
  1734. 0002b890 g DF .text 00000023 GLIBC_2.0 atof
  1735. 000ce5b0 g DF .text 000000a7 GLIBC_2.0 getttynam
  1736. 0009f160 w DF .text 0000004b GLIBC_2.0 re_set_registers
  1737. 00028c30 g DF .text 000007d2 GLIBC_PRIVATE __open_catalog
  1738. 0002aef0 g DF .text 0000006e GLIBC_2.0 sigismember
  1739. 000df360 g DF .text 00000043 GLIBC_2.0 pthread_attr_setschedparam
  1740. 00071020 g DF .text 0000009f GLIBC_2.0 bcopy
  1741. 000602f0 g DF .text 0000003b GLIBC_2.0 setlinebuf
  1742. 000e6c50 g DF .text 000000cd GLIBC_2.4 __stpncpy_chk
  1743. 00076430 w DF .text 0000011e GLIBC_2.1 wcswcs
  1744. 0002b8c0 g DF .text 0000002b GLIBC_2.0 atoi
  1745. 000d6e50 g DF .text 00000092 GLIBC_2.1 __iswprint_l
  1746. 00075800 g DF .text 0000005e GLIBC_2.1.1 __strtok_r_1c
  1747. 000fc4b0 g DF .text 000000cb GLIBC_2.1.1 xdr_hyper
  1748. 0008f010 g DF .text 00000074 GLIBC_2.2 getdirentries64
  1749. 00085b40 g DF .text 00000034 GLIBC_2.0 stime
  1750. 00027430 w DF .text 0000011d GLIBC_2.0 textdomain
  1751. 000b7600 w DF .text 00000034 GLIBC_2.0 sched_get_priority_max
  1752. 0002b8f0 g DF .text 0000002b GLIBC_2.0 atol
  1753. 000ca830 g DF .text 00000032 GLIBC_2.0 tcflush
  1754. 000c1ca0 g DF .text 00000039 GLIBC_2.2 posix_spawnattr_getschedparam
  1755. 000f4390 g DF .text 000000b4 GLIBC_2.5 inet6_opt_find
  1756. 00077d30 g DF .text 00000046 GLIBC_2.1 wcstoull
  1757. 000edc30 g DF .text 00000155 GLIBC_2.0 ether_ntohost
  1758. 00141580 g DO .data.rel.ro 00000100 (GLIBC_2.1) sys_siglist
  1759. 00141580 g DO .data.rel.ro 00000080 (GLIBC_2.0) sys_siglist
  1760. 000cfc60 g DF .text 00000034 GLIBC_2.0 mlockall
  1761. 00141580 g DO .data.rel.ro 00000104 GLIBC_2.3.3 sys_siglist
  1762. 000cc340 g DF .text 00000044 GLIBC_2.0 stty
  1763. 000d5d00 w DF .text 000000cb GLIBC_2.0 iswxdigit
  1764. 000c7220 g DF .text 00000026 GLIBC_2.1 ftw64
  1765. 00091f70 w DF .text 00000070 GLIBC_2.0 waitpid
  1766. 000e8a10 g DF .text 00000049 GLIBC_2.4 __mbsnrtowcs_chk
  1767. 00061430 g DF .text 0000002a GLIBC_2.2 __fpending
  1768. 000c3610 w DF .text 00000065 GLIBC_2.0 close
  1769. 00108a90 g DF .text 0000006b GLIBC_2.1 unlockpt
  1770. 000fc9b0 g DF .text 00000090 GLIBC_2.0 xdr_union
  1771. 000e6100 w DF .text 00000160 GLIBC_2.1 backtrace
  1772. 0006fb30 w DF .text 00000154 GLIBC_2.1 strverscmp
  1773. 000c1c80 g DF .text 00000015 GLIBC_2.2 posix_spawnattr_getschedpolicy
  1774. 00028980 g DF .text 000000ab GLIBC_2.0 catgets
  1775. 0002d310 g DF .text 00000095 GLIBC_2.0 lldiv
  1776. 00106b50 w DF .text 0000005e GLIBC_2.0 endutent
  1777. 000df900 w DF .text 00000043 GLIBC_2.0 pthread_setcancelstate
  1778. 00056180 g DF .text 000000b8 GLIBC_2.0 tmpnam
  1779. 000e1020 g DF .text 000000cf GLIBC_2.0 inet_nsap_ntoa
  1780. 00075d80 g DF .text 00000126 GLIBC_2.6 strerror_l
  1781. 000c2ff0 w DF .text 00000070 GLIBC_2.0 open
  1782. 000d0ea0 w DF .text 00000022 GLIBC_2.0 twalk
  1783. 0002dee0 g DF .text 0000002d GLIBC_2.0 srand48
  1784. 00023ed0 w DF .text 00000011 GLIBC_2.3 toupper_l
  1785. 00102d10 g DF .text 00000012 GLIBC_2.1 svcunixfd_create
  1786. 000d2ba0 g DF .text 00000034 GLIBC_2.0 iopl
  1787. 000c6200 g DF .text 00000026 GLIBC_2.0 ftw
  1788. 00077d80 g DF .text 00000045 GLIBC_2.0 __wcstoull_internal
  1789. 000d7510 g DF .text 00000141 GLIBC_2.0 sgetspent
  1790. 0006fe20 w DF .text 00000121 GLIBC_2.0 strerror_r
  1791. 00065860 g DF .text 00000016 GLIBC_2.2 _IO_iter_begin
  1792. 000df720 g DF .text 0000004a GLIBC_2.0 pthread_getschedparam
  1793. 000258d0 w DF .text 00000040 GLIBC_2.2 dngettext
  1794. 000f9cd0 g DF .text 00000039 GLIBC_2.2.3 __rpc_thread_createerr
  1795. 000cc0b0 g DF .text 00000034 GLIBC_2.0 vhangup
  1796. 00082ab0 g DF .text 00000035 GLIBC_2.0 localtime
  1797. 00100650 g DF .text 0000008f GLIBC_2.1 key_secretkey_is_set
  1798. 00082a20 g DF .text 0000000d GLIBC_2.0 difftime
  1799. 000cc0f0 w DF .text 00000038 GLIBC_2.0 swapon
  1800. 00108f30 g DF .text 00000017 GLIBC_2.1 endutxent
  1801. 000d2d90 w DF .text 000000a5 GLIBC_2.1 lseek64
  1802. 000e8a60 g DF .text 00000049 GLIBC_2.4 __wcsnrtombs_chk
  1803. 00061c70 g DF .text 00000010 GLIBC_2.0 ferror_unlocked
  1804. 000d2e40 w DF .text 00000034 GLIBC_2.0 umount
  1805. 00092a84 w DF .text 00000013 GLIBC_2.1.1 _Exit
  1806. 000d31f0 g DF .text 00000038 GLIBC_2.1 capset
  1807. 0006f840 g DF .text 00000167 GLIBC_2.0 strchr
  1808. 000d7220 w DF .text 00000073 GLIBC_2.3 wctrans_l
  1809. 000d2800 g DF .text 0000003a GLIBC_2.3 flistxattr
  1810. 000f5da0 g DF .text 000001fd GLIBC_2.0 clnt_spcreateerror
  1811. 0006f610 g DF .text 00000078 GLIBC_2.0 obstack_free
  1812. 000df450 g DF .text 00000043 GLIBC_2.0 pthread_attr_getscope
  1813. 000f1280 g DF .text 000000a2 GLIBC_2.0 getaliasent
  1814. 00141360 g DO .data.rel.ro 000001f8 (GLIBC_2.3) _sys_errlist
  1815. 00141360 g DO .data.rel.ro 00000210 GLIBC_2.4 _sys_errlist
  1816. 00141360 g DO .data.rel.ro 000001f4 (GLIBC_2.1) _sys_errlist
  1817. 00141360 g DO .data.rel.ro 000001ec (GLIBC_2.0) _sys_errlist
  1818. 0002b620 g DF .text 00000070 GLIBC_2.1 sigignore
  1819. 0002af60 w DF .text 00000022 GLIBC_2.0 sigreturn
  1820. 000ee830 g DF .text 000001c7 GLIBC_2.2 rresvport_af
  1821. 000d4ef0 g DF .text 000001a0 GLIBC_2.0 __monstartup
  1822. 000d5dd0 w DF .text 000000a4 GLIBC_2.0 iswdigit
  1823. 000fa3a0 g DF .text 00000037 GLIBC_2.0 svcerr_weakauth
  1824. 00060ad0 w DF .text 00000017 GLIBC_2.0 fcloseall
  1825. 000e81a0 g DF .text 0000010b GLIBC_2.4 __wprintf_chk
  1826. 000d6180 w DF .text 000000c9 GLIBC_2.0 iswcntrl
  1827. 000cce00 w DF .text 0000002c GLIBC_2.0 endmntent
  1828. 00056f40 w DF .text 0000002f GLIBC_2.0 funlockfile
  1829. 001447c4 g DO .bss 00000004 GLIBC_2.0 __timezone
  1830. 00046500 g DF .text 00000024 GLIBC_2.0 fprintf
  1831. 000d3b00 g DF .text 00000037 GLIBC_2.0 getsockname
  1832. 000c1ec0 g DF .text 00000038 GLIBC_2.0 utime
  1833. 0010eb40 g DF .text 000001e4 (GLIBC_2.1) scandir64
  1834. 0008ecb0 g DF .text 000001e4 GLIBC_2.2 scandir64
  1835. 000d0a50 g DF .text 00000045 GLIBC_2.0 hsearch
  1836. 000dd100 w DF .text 000000dd GLIBC_2.1 argp_error
  1837. 00146234 g DO .bss 00000004 GLIBC_2.0 _nl_domain_bindings
  1838. 00075760 g DF .text 00000041 GLIBC_2.1.1 __strpbrk_c2
  1839. 0002d1f0 g DF .text 00000011 GLIBC_2.0 abs
  1840. 000d3df0 w DF .text 0000006c GLIBC_2.0 sendto
  1841. 000757b0 g DF .text 0000004c GLIBC_2.1.1 __strpbrk_c3
  1842. 000cc9e0 w DF .text 0000041f GLIBC_2.0 addmntent
  1843. 000d6ef0 w DF .text 00000090 GLIBC_2.3 iswpunct_l
  1844. 00037150 w DF .text 00000029 GLIBC_2.1 __strtold_l
  1845. 001082d0 w DF .text 0000010f GLIBC_2.0 updwtmp
  1846. 000e46e0 g DF .text 00000372 GLIBC_2.0 __nss_database_lookup
  1847. 0005c3a0 g DF .text 00000033 GLIBC_2.2 _IO_least_wmarker
  1848. 00070300 w DF .text 000001b9 GLIBC_2.0 rindex
  1849. 00092a30 w DF .text 00000051 GLIBC_2.0 vfork
  1850. 0010ed90 g DF .text 000000e5 (GLIBC_2.0) getgrent_r
  1851. 000fa1e0 g DF .text 000000fe GLIBC_2.0 xprt_register
  1852. 000393e0 g DF .text 000000f0 GLIBC_2.1 addseverity
  1853. 0008fef0 g DF .text 000000e2 GLIBC_2.1.2 getgrent_r
  1854. 000e7250 g DF .text 000000bc GLIBC_2.3.4 __vfprintf_chk
  1855. 00083540 g DF .text 0000003c GLIBC_2.0 mktime
  1856. 00100550 g DF .text 00000100 GLIBC_2.1 key_gendes
  1857. 0002d3b0 g DF .text 000000c5 GLIBC_2.0 mblen
  1858. 000d16e0 w DF .text 0000005c GLIBC_2.1 tdestroy
  1859. 000d2c50 w DF .text 00000075 GLIBC_2.0 sysctl
  1860. 000f5a20 g DF .text 000002e2 GLIBC_2.0 clnt_create
  1861. 0008e700 g DF .text 00000024 GLIBC_2.0 alphasort
  1862. 001447c4 w DO .bss 00000004 GLIBC_2.0 timezone
  1863. 000f90f0 g DF .text 000000ec GLIBC_2.0 xdr_rmtcall_args
  1864. 00070bd0 g DF .text 00000104 GLIBC_2.0 __strtok_r
  1865. 00068ec0 w DF .text 0000014b GLIBC_2.0 mallopt
  1866. 000fde60 g DF .text 00000035 GLIBC_2.0 xdrstdio_create
  1867. 00039c90 g DF .text 00000029 GLIBC_2.1 strtoimax
  1868. 00056950 w DF .text 00000039 GLIBC_2.0 getline
  1869. 00144100 w DO .bss 00000004 GLIBC_2.0 __malloc_initialize_hook
  1870. 000d6c70 g DF .text 00000093 GLIBC_2.1 __iswdigit_l
  1871. 00071170 g DF .text 00000041 GLIBC_2.0 __stpcpy
  1872. 00016f70 g DF .text 00000187 GLIBC_2.1 iconv
  1873. 000f8080 g DF .text 000000f5 GLIBC_2.0 get_myaddress
  1874. 000ec990 g DF .text 0000017d GLIBC_2.1.2 getrpcbyname_r
  1875. 00111c90 g DF .text 0000005f (GLIBC_2.0) getrpcbyname_r
  1876. 00143344 w DO .data 00000004 GLIBC_2.0 program_invocation_short_name
  1877. 000d3170 g DF .text 00000038 GLIBC_2.0 bdflush
  1878. 0002d230 w DF .text 00000031 GLIBC_2.1.1 imaxabs
  1879. 00016540 g DF .text 0000002a (GLIBC_2.0) __floatdidf
  1880. 000a2f60 w DF .text 00000093 GLIBC_2.0 re_compile_fastmap
  1881. 000d29d0 g DF .text 00000038 GLIBC_2.3 lremovexattr
  1882. 0010cb50 g DF .text 000001b6 (GLIBC_2.0) fdopen
  1883. 00057fa0 g DF .text 000002da GLIBC_2.1 fdopen
  1884. 000668e0 g DF .text 000001b9 GLIBC_2.0 _IO_str_seekoff
  1885. 000ce900 g DF .text 0000001d GLIBC_2.0 setusershell
  1886. 00142740 g DO .data.rel.ro 00000054 GLIBC_2.2 _IO_wfile_jumps
  1887. 0008ea50 g DF .text 000000b0 GLIBC_2.2 readdir64
  1888. 0010e940 g DF .text 000000af (GLIBC_2.1) readdir64
  1889. 000f9750 g DF .text 00000406 GLIBC_2.0 xdr_callmsg
  1890. 000f9e80 g DF .text 00000036 GLIBC_2.0 svcerr_auth
  1891. 0002c3e0 g DF .text 0000013e GLIBC_2.0 qsort
  1892. 00037d10 w DF .text 0000002b GLIBC_2.0 canonicalize_file_name
  1893. 00093700 g DF .text 00000034 GLIBC_2.0 __getpgid
  1894. 00016cf0 g DF .text 0000027d GLIBC_2.1 iconv_open
  1895. 00064de0 g DF .text 0000002a GLIBC_2.0 _IO_sgetn
  1896. 0002fc20 g DF .text 0000003e GLIBC_2.0 __strtod_internal
  1897. 0005adc0 g DF .text 0000013c GLIBC_2.2 _IO_fsetpos64
  1898. 0010d900 g DF .text 0000010e (GLIBC_2.1) _IO_fsetpos64
  1899. 000391c0 w DF .text 00000042 GLIBC_2.3 strfmon_l
  1900. 0002de60 g DF .text 00000034 GLIBC_2.0 mrand48
  1901. 000c1520 g DF .text 00000013 GLIBC_2.2 posix_spawnattr_getflags
  1902. 000d39a0 w DF .text 0000006c GLIBC_2.0 accept
  1903. 0002d590 g DF .text 00000046 GLIBC_2.0 wcstombs
  1904. 0006ce00 g DF .text 000001e5 GLIBC_2.0 __libc_free
  1905. 000e9b50 g DF .text 000001ab GLIBC_2.0 gethostbyname2
  1906. 000fee80 g DF .text 00000197 GLIBC_2.1 cbc_crypt
  1907. 000e5a00 g DF .text 0000008c GLIBC_2.0 __nss_hosts_lookup
  1908. 0002fb70 w DF .text 00000030 GLIBC_2.1 __strtoull_l
  1909. 00100a20 g DF .text 0000003a GLIBC_2.1 xdr_netnamestr
  1910. 00066aa0 g DF .text 00000189 GLIBC_2.0 _IO_str_overflow
  1911. 00144108 w DO .bss 00000004 GLIBC_2.0 __after_morecore_hook
  1912. 000de250 w DF .text 00000d40 GLIBC_2.1 argp_parse
  1913. 0005a520 g DF .text 00000141 GLIBC_2.0 _IO_seekpos
  1914. 00072bf0 g DF .text 000000a2 GLIBC_2.0 envz_get
  1915. 00071a00 g DF .text 00000151 GLIBC_2.1 __strcasestr
  1916. 00093840 w DF .text 00000053 GLIBC_2.0 getresuid
  1917. 000c1ce0 g DF .text 0000003a GLIBC_2.2 posix_spawnattr_setsigmask
  1918. 000dfdf0 g DF .text 00000096 GLIBC_2.0 hstrerror
  1919. 000cf060 g DF .text 0000059d GLIBC_2.4 __vsyslog_chk
  1920. 000d34e0 g DF .text 0000003a GLIBC_2.4 inotify_add_watch
  1921. 0010cec0 g DF .text 000001a5 (GLIBC_2.0) _IO_proc_close
  1922. 000ca5e0 w DF .text 000000d6 GLIBC_2.0 tcgetattr
  1923. 00023cb0 g DF .text 0000000b GLIBC_2.0 toascii
  1924. 00059b70 g DF .text 000001a5 GLIBC_2.1 _IO_proc_close
  1925. 000c27b0 w DF .text 0000012b GLIBC_2.1 statfs64
  1926. 000f5040 g DF .text 00000081 GLIBC_2.0 authnone_create
  1927. 00075000 g DF .text 0000003f GLIBC_2.1.1 __strcmp_gg
  1928. 00023e70 w DF .text 00000017 GLIBC_2.3 isupper_l
  1929. 000cbfd0 g DF .text 000000a5 GLIBC_2.0 sethostid
  1930. 00108f80 g DF .text 00000023 GLIBC_2.1 getutxline
  1931. 000560d0 g DF .text 000000a2 GLIBC_2.1 tmpfile64
  1932. 00092400 w DF .text 0000026a GLIBC_2.0 sleep
  1933. 00091e80 w DF .text 00000034 GLIBC_2.0 times
  1934. 00063840 g DF .text 000000dd GLIBC_2.1 _IO_file_sync
  1935. 0010e5f0 g DF .text 00000097 (GLIBC_2.0) _IO_file_sync
  1936. 0007fef0 g DF .text 0000003e GLIBC_2.0 wcsxfrm
  1937. 000751b0 g DF .text 00000046 GLIBC_2.1.1 __strcspn_g
  1938. 00073ef0 w DF .text 00000d51 GLIBC_2.3 strxfrm_l
  1939. 0002b1d0 g DF .text 0000004f GLIBC_2.1 __libc_allocate_rtsig
  1940. 000e89c0 g DF .text 00000049 GLIBC_2.4 __wcrtomb_chk
  1941. 00023f60 g DF .text 0000003c GLIBC_2.3 __ctype_toupper_loc
  1942. 000d2be0 g DF .text 00000038 GLIBC_2.3.4 vm86
  1943. 000d3070 g DF .text 00000034 (GLIBC_2.0) vm86
  1944. 000cdd00 g DF .text 0000002f GLIBC_2.0 insque
  1945. 000f6500 g DF .text 00000126 GLIBC_2.0 clntraw_create
  1946. 000d33b0 g DF .text 00000094 GLIBC_2.6 epoll_pwait
  1947. 000cb800 g DF .text 00000026 GLIBC_2.0 __getpagesize
  1948. 000e6a20 g DF .text 00000078 GLIBC_2.3.4 __strcpy_chk
  1949. 0006ae90 w DF .text 000000fc GLIBC_2.0 valloc
  1950. 00023f20 g DF .text 0000003c GLIBC_2.3 __ctype_tolower_loc
  1951. 00108f10 g DF .text 00000017 GLIBC_2.1 getutxent
  1952. 00065900 g DF .text 00000045 GLIBC_2.2 _IO_list_unlock
  1953. 00143334 g DO .data 00000004 GLIBC_2.0 obstack_alloc_failed_handler
  1954. 0005b6f0 g DF .text 0000007c GLIBC_2.2 fputws_unlocked
  1955. 000fcd00 g DF .text 0000015c GLIBC_2.0 xdr_array
  1956. 000d2990 g DF .text 0000003a GLIBC_2.3 llistxattr
  1957. 0002d070 g DF .text 00000175 GLIBC_2.1.3 __cxa_finalize
  1958. 0002b190 g DF .text 00000016 GLIBC_2.1 __libc_current_sigrtmin
  1959. 000d2e80 w DF .text 00000038 GLIBC_2.1 umount2
  1960. 000cf790 g DF .text 0000004b GLIBC_2.0 syscall
  1961. 0002a5a0 g DF .text 00000041 GLIBC_2.0 sigpending
  1962. 0002bbf0 g DF .text 0000006c GLIBC_2.0 bsearch
  1963. 00075290 g DF .text 00000032 GLIBC_2.1.1 __strpbrk_cg
  1964. 000b78d0 g DF .text 00000044 GLIBC_2.0 freeaddrinfo
  1965. 000713a0 w DF .text 00000069 GLIBC_2.3 strncasecmp_l
  1966. 000236a0 g DF .text 00000181 GLIBC_2.0 __assert_perror_fail
  1967. 000d2340 w DF .text 000001a0 GLIBC_2.0 get_nprocs
  1968. 00111930 g DF .text 0000005f (GLIBC_2.0) getprotobyname_r
  1969. 00075cd0 g DF .text 000000b0 GLIBC_2.3.4 __xpg_strerror_r
  1970. 0005a7d0 w DF .text 00000189 GLIBC_2.0 setvbuf
  1971. 000eb7d0 g DF .text 0000017d GLIBC_2.1.2 getprotobyname_r
  1972. 00080fb0 g DF .text 00000955 GLIBC_2.1 __wcsxfrm_l
  1973. 0005ab10 w DF .text 0000009b GLIBC_2.0 vsscanf
  1974. 00111370 g DF .text 0000006c (GLIBC_2.0) gethostbyaddr_r
  1975. 000e9670 g DF .text 0000030c GLIBC_2.1.2 gethostbyaddr_r
  1976. 00016890 g DF .text 00000179 (GLIBC_2.0) __divdi3
  1977. 00090ad0 g DF .text 0000018e GLIBC_2.0 fgetpwent
  1978. 000f1170 g DF .text 000000a7 GLIBC_2.0 setaliasent
  1979. 0002a640 g DF .text 000000a7 GLIBC_2.1.3 __sigsuspend
  1980. 000f9530 g DF .text 0000007f GLIBC_2.0 xdr_rejected_reply
  1981. 000d31b0 g DF .text 00000038 GLIBC_2.1 capget
  1982. 0010ea10 g DF .text 00000110 (GLIBC_2.1) readdir64_r
  1983. 0008eb20 g DF .text 00000110 GLIBC_2.2 readdir64_r
  1984. 000b7550 g DF .text 0000003a GLIBC_2.0 __sched_setscheduler
  1985. 000fe250 g DF .text 000000fc GLIBC_2.0 getpublickey
  1986. 000f9c90 g DF .text 00000039 GLIBC_2.2.3 __rpc_thread_svc_pollfd
  1987. 000c7540 g DF .text 00000551 GLIBC_2.0 fts_open
  1988. 000fa030 g DF .text 0000007e GLIBC_2.0 svc_unregister
  1989. 00106ae0 w DF .text 00000062 GLIBC_2.0 pututline
  1990. 00093810 w DF .text 0000002c GLIBC_2.0 setsid
  1991. 00000004 g D .tdata 00000004 GLIBC_PRIVATE __resp
  1992. 00106970 w DF .text 0000005e GLIBC_2.0 getutent
  1993. 000c14a0 g DF .text 00000037 GLIBC_2.2 posix_spawnattr_getsigdefault
  1994. 000d6db0 w DF .text 00000092 GLIBC_2.3 iswgraph_l
  1995. 00045bf0 g DF .text 00000902 GLIBC_2.1 printf_size
  1996. 000df110 g DF .text 0000003c GLIBC_2.0 pthread_attr_destroy
  1997. 0007feb0 w DF .text 00000037 GLIBC_2.0 wcscoll
  1998. 00077bf0 g DF .text 00000045 GLIBC_2.0 __wcstoul_internal
  1999. 0010a5d0 g DF .text 00000031 GLIBC_2.0 __deregister_frame
  2000. 0002a360 w DF .text 00000157 GLIBC_2.0 __sigaction
  2001. 00103630 g DF .text 000000bb GLIBC_2.1.1 xdr_uint64_t
  2002. 00103130 g DF .text 00000274 GLIBC_2.1 svcunix_create
  2003. 0002e090 w DF .text 00000058 GLIBC_2.0 nrand48_r
  2004. 000ca310 g DF .text 00000076 GLIBC_2.0 cfsetspeed
  2005. 000d8030 g DF .text 000003cc GLIBC_PRIVATE _nss_files_parse_spent
  2006. 00112c00 g DF __libc_freeres_fn 0000007b GLIBC_2.1 __libc_freeres
  2007. 000c3c00 w DF .text 000000b7 GLIBC_2.0 fcntl
  2008. 000e8010 g DF .text 0000003b GLIBC_2.4 __wcpncpy_chk
  2009. 000d6730 w DF .text 0000009e GLIBC_2.0 wctype
  2010. 00076340 g DF .text 0000004f GLIBC_2.0 wcsspn
  2011. 00110e20 g DF .text 0000008e (GLIBC_2.1) getrlimit64
  2012. 000caa50 g DF .text 0000008e GLIBC_2.2 getrlimit64
  2013. 000f37f0 g DF .text 00000039 GLIBC_2.3.3 inet6_option_init
  2014. 000d71b0 g DF .text 0000006e GLIBC_2.1 __iswctype_l
  2015. 000cfd20 g DF .text 00000055 GLIBC_2.0 ecvt
  2016. 000e7d90 g DF .text 0000002e GLIBC_2.4 __wmemmove_chk
  2017. 000e6d20 g DF .text 00000032 GLIBC_2.3.4 __sprintf_chk
  2018. 000eea00 g DF .text 0000001b GLIBC_2.0 rresvport
  2019. 000f5860 g DF .text 000001b4 GLIBC_2.0 bindresvport
  2020. 000ca240 g DF .text 00000051 GLIBC_2.0 cfsetospeed
  2021. 000465f0 g DF .text 00000034 GLIBC_2.1 __asprintf
  2022. 00071350 g DF .text 0000004f GLIBC_2.1 __strcasecmp_l
  2023. 0005f250 g DF .text 000000f7 GLIBC_2.2 fwide
  2024. 0010eea0 g DF .text 0000005f (GLIBC_2.0) getgrgid_r
  2025. 000901a0 g DF .text 000001ec GLIBC_2.1.2 getgrgid_r
  2026. 000df5f0 g DF .text 00000043 GLIBC_2.3.2 pthread_cond_init
  2027. 001111f0 g DF .text 00000043 (GLIBC_2.0) pthread_cond_init
  2028. 000937b0 g DF .text 0000001c GLIBC_2.0 setpgrp
  2029. 00075fc0 g DF .text 0000005b GLIBC_2.0 wcsdup
  2030. 000ca220 g DF .text 00000018 GLIBC_2.0 cfgetispeed
  2031. 0002b920 g DF .text 0000002b GLIBC_2.0 atoll
  2032. 0002a060 w DF .text 000000cf GLIBC_2.0 bsd_signal
  2033. 00108b00 w DF .text 0000039c GLIBC_2.1 ptsname_r
  2034. 0002ea30 w DF .text 00000030 GLIBC_2.1 __strtol_l
  2035. 000d2880 g DF .text 00000046 GLIBC_2.3 fsetxattr
  2036. 000e94c0 g DF .text 0000001d GLIBC_2.0 __h_errno_location
  2037. 000fd360 g DF .text 00000162 GLIBC_2.0 xdrrec_create
  2038. 0010dde0 g DF .text 000003de (GLIBC_2.0) _IO_file_seekoff
  2039. 00056ed0 g DF .text 00000069 GLIBC_2.0 _IO_ftrylockfile
  2040. 000632e0 g DF .text 0000055b GLIBC_2.1 _IO_file_seekoff
  2041. 000c3610 w DF .text 00000065 GLIBC_2.0 __close
  2042. 00065890 g DF .text 0000000b GLIBC_2.2 _IO_iter_next
  2043. 000ccec0 w DF .text 000008d5 GLIBC_2.0 getmntent_r
  2044. 000750d0 g DF .text 0000001b GLIBC_2.1.1 __strchrnul_c
  2045. 0002d210 g DF .text 00000011 GLIBC_2.0 labs
  2046. 001430c8 g DO .data 00000004 GLIBC_2.0 obstack_exit_failure
  2047. 000c4bd0 w DF .text 00000038 GLIBC_2.0 link
  2048. 00088f70 g DF .text 0000215c GLIBC_2.3 __strftime_l
  2049. 001008e0 g DF .text 00000068 GLIBC_2.0 xdr_cryptkeyres
  2050. 000cd990 g DF .text 00000167 GLIBC_2.4 futimesat
  2051. 0005cc20 g DF .text 000000f1 GLIBC_2.2 _IO_wdefault_xsgetn
  2052. 000f0910 g DF .text 00000399 GLIBC_2.0 innetgr
  2053. 001435f8 g DO .data 00000004 GLIBC_2.0 _IO_list_all
  2054. 000c33c0 w DF .text 00000089 GLIBC_2.4 openat
  2055. 0005c1c0 w DF .text 000000f7 GLIBC_2.2 vswprintf
  2056. 000d6be0 g DF .text 00000090 GLIBC_2.1 __iswcntrl_l
  2057. 000604b0 w DF .text 000000dd GLIBC_2.0 vdprintf
  2058. 000e7a30 g DF .text 00000049 GLIBC_2.4 __pread64_chk
  2059. 000750f0 g DF .text 0000001d GLIBC_2.1.1 __strchrnul_g
  2060. 000f7430 g DF .text 00000046 GLIBC_2.0 clntudp_create
  2061. 000eb680 g DF .text 0000012d GLIBC_2.0 getprotobyname
  2062. 0010a610 g DF .text 000000ea GCC_3.0 __deregister_frame_info_bases
  2063. 000596e0 g DF .text 000001a4 GLIBC_2.1 _IO_getline_info
  2064. 00023eb0 w DF .text 00000011 GLIBC_2.3 tolower_l
  2065. 00061460 g DF .text 00000038 GLIBC_2.2 __fsetlocking
  2066. 00088e80 w DF .text 00000044 GLIBC_2.3.2 strptime_l
  2067. 00072130 w DF .text 000000d8 GLIBC_2.0 argz_create_sep
  2068. 001433f8 g DO .data 00000004 (GLIBC_2.0) __ctype32_b
  2069. 000c1f90 g DF .text 0000008e GLIBC_2.0 __xstat
  2070. 000800b0 w DF .text 00000ef3 GLIBC_2.3 wcscoll_l
  2071. 000e6100 g DF .text 00000160 GLIBC_2.1 __backtrace
  2072. 000d30b0 g DF .text 00000038 (GLIBC_2.0) getrlimit
  2073. 000ca9d0 g DF .text 0000003f GLIBC_2.2 getrlimit
  2074. 0002a860 w DF .text 00000063 GLIBC_2.0 sigsetmask
  2075. 00100470 g DF .text 00000073 GLIBC_2.1 key_encryptsession
  2076. 00023a20 g DF .text 00000048 GLIBC_2.0 isdigit
  2077. 00055cc0 g DF .text 00000041 GLIBC_2.0 scanf
  2078. 000d28d0 g DF .text 00000040 GLIBC_2.3 getxattr
  2079. 000c2d30 g DF .text 00000022 GLIBC_2.3.2 lchmod
  2080. 000239d0 g DF .text 00000046 GLIBC_2.0 iscntrl
  2081. 000d43c0 g DF .text 000000c5 GLIBC_PRIVATE __libc_msgrcv
  2082. 000cb830 w DF .text 00000039 GLIBC_2.0 getdtablesize
  2083. 000d35d0 w DF .text 00000046 GLIBC_2.0 mount
  2084. 0012d500 g DO .rodata 00000004 GLIBC_2.4 sys_nerr
  2085. 0012d50c g DO .rodata 00000004 (GLIBC_2.3) sys_nerr
  2086. 0012d508 g DO .rodata 00000004 (GLIBC_2.1) sys_nerr
  2087. 0012d504 g DO .rodata 00000004 (GLIBC_2.0) sys_nerr
  2088. 00023ed0 g DF .text 00000011 GLIBC_2.1 __toupper_l
  2089. 0002d9f0 w DF .text 000000b7 GLIBC_2.0 random_r
  2090. 000d64c0 w DF .text 000000c9 GLIBC_2.0 iswpunct
  2091. 000d1c30 g DF .text 00000026 GLIBC_2.0 errx
  2092. 00071350 w DF .text 0000004f GLIBC_2.3 strcasecmp_l
  2093. 00076550 g DF .text 00000073 GLIBC_2.0 wmemchr
  2094. 00091e40 w DF .text 00000034 GLIBC_2.0 uname
  2095. 00070ee0 g DF .text 0000008f GLIBC_2.0 memmove
  2096. 00100270 g DF .text 0000005a GLIBC_2.1 key_setnet
  2097. 00063150 g DF .text 00000097 GLIBC_2.1 _IO_file_write
  2098. 0010dd70 g DF .text 0000006d (GLIBC_2.0) _IO_file_write
  2099. 00146514 g DO .bss 00000004 GLIBC_2.2 svc_max_pollfd
  2100. 00077e10 w DF .text 0000003f GLIBC_2.0 wcstod
  2101. 00146238 g DO .bss 00000004 GLIBC_2.0 _nl_msg_cat_cntr
  2102. 000e7500 g DF .text 00000046 GLIBC_2.3.4 __chk_fail
  2103. 000f9fa0 g DF .text 00000082 GLIBC_2.0 svc_getreqset
  2104. 000d5c60 w DF .text 00000013 GLIBC_2.0 mcount
  2105. 0006df50 g DF .text 00000099 GLIBC_2.0 mprobe
  2106. 000c15e0 g DF .text 00000050 GLIBC_2.2 posix_spawnp
  2107. 00077f10 w DF .text 0000003f GLIBC_2.0 wcstof
  2108. 0010e690 g DF .text 00000153 (GLIBC_2.0) _IO_file_overflow
  2109. 000e8b00 g DF .text 00000042 GLIBC_2.4 __wcsrtombs_chk
  2110. 000e6260 w DF .text 000002bc GLIBC_2.1 backtrace_symbols
  2111. 00063920 g DF .text 000001ef GLIBC_2.1 _IO_file_overflow
  2112. 00065950 g DF .text 0000002e GLIBC_2.2 _IO_list_resetlock
  2113. 000d3030 g DF .text 0000003a GLIBC_PRIVATE __modify_ldt
  2114. 000d4ea0 g DF .text 00000044 GLIBC_2.0 _mcleanup
  2115. 000d7220 g DF .text 00000073 GLIBC_2.2 __wctrans_l
  2116. 00023e90 w DF .text 00000017 GLIBC_2.3 isxdigit_l
  2117. 0002b2f0 w DF .text 00000061 GLIBC_2.1 sigtimedwait
  2118. 00059270 g DF .text 0000015f GLIBC_2.0 _IO_fwrite
  2119. 000effc0 g DF .text 00000426 GLIBC_2.0 ruserpass
  2120. 00076390 g DF .text 0000009b GLIBC_2.0 wcstok
  2121. 000df8d0 g DF .text 00000030 GLIBC_2.0 pthread_self
  2122. 000fa2e0 g DF .text 000000b9 GLIBC_2.0 svc_register
  2123. 00091f70 g DF .text 00000070 GLIBC_2.0 __waitpid
  2124. 00077ba0 g DF .text 00000046 GLIBC_2.0 wcstol
  2125. 0005ad80 w DF .text 00000032 GLIBC_2.1 fopen64
  2126. 000df400 g DF .text 00000043 GLIBC_2.0 pthread_attr_setschedpolicy
  2127. 0005c2c0 g DF .text 000000a6 GLIBC_2.2 vswscanf
  2128. 00016570 g DF .text 00000031 (GLIBC_2.0) __fixunsxfdi
  2129. 000ec1c0 g DF .text 000000b0 GLIBC_2.0 endservent
  2130. 000e5b20 g DF .text 0000008c GLIBC_2.0 __nss_group_lookup
  2131. 000c0e50 w DF .text 000000bc GLIBC_2.1 pread
  2132. 00016610 g DF .text 00000038 (GLIBC_2.0) __ucmpdi2
  2133. 0003bf00 g DF .text 00000030 GLIBC_2.0 ctermid
  2134. 00077b20 w DF .text 00000024 GLIBC_2.2 wcschrnul
  2135. 00109740 g DF .text 00000099 GLIBC_PRIVATE __libc_dlsym
  2136. 000c0f10 w DF .text 000000bc GLIBC_2.1 pwrite
  2137. 000cce00 g DF .text 0000002c GLIBC_2.2 __endmntent
  2138. 00077c90 w DF .text 00000046 GLIBC_2.0 wcstoq
  2139. 0002ab50 g DF .text 0000007c GLIBC_2.0 sigstack
  2140. 00092a30 g DF .text 00000051 GLIBC_2.1.2 __vfork
  2141. 00071970 w DF .text 00000090 GLIBC_2.0 strsep
  2142. 00061360 g DF .text 00000013 GLIBC_2.2 __freadable
  2143. 000d6b50 w DF .text 00000090 GLIBC_2.3 iswblank_l
  2144. 0006f210 g DF .text 000000c9 GLIBC_2.0 _obstack_begin
  2145. 000f0f10 g DF .text 000000be GLIBC_2.0 getnetgrent
  2146. 000645a0 g DF .text 00000210 GLIBC_2.1 _IO_file_underflow
  2147. 0010e1c0 g DF .text 000000e8 (GLIBC_2.0) _IO_file_underflow
  2148. 00100e00 g DF .text 000000fb GLIBC_2.1 user2netname
  2149. 000e4630 g DF .text 000000b0 GLIBC_2.0 __nss_next
  2150. 000770a0 w DF .text 0000035f GLIBC_2.0 wcsrtombs
  2151. 00143970 g DO .data 00000004 GLIBC_2.0 __morecore
  2152. 00024400 w DF .text 00000015 GLIBC_2.0 bindtextdomain
  2153. 000c37a0 w DF .text 00000038 GLIBC_2.0 access
  2154. 000b7590 g DF .text 00000034 GLIBC_2.0 __sched_getscheduler
  2155. 000397c0 g DF .text 00000495 GLIBC_2.1 fmtmsg
  2156. 000d0410 g DF .text 000000c4 GLIBC_2.0 qfcvt
  2157. 0002e490 g DF .text 00000045 (GLIBC_2.0) __strtoq_internal
  2158. 0008df80 g DF .text 00000056 GLIBC_2.1 ntp_gettime
  2159. 0006de70 g DF .text 000000e0 GLIBC_2.2 mcheck_pedantic
  2160. 0006e9d0 g DF .text 000001e5 GLIBC_2.0 mtrace
  2161. 0005fc60 g DF .text 000000e7 GLIBC_2.0 _IO_getc
  2162. 000c23f0 g DF .text 000001dc GLIBC_2.4 __fxstatat
  2163. 00071cb0 g DF .text 00000084 GLIBC_2.0 memmem
  2164. 0014635c g DO .bss 00000004 GLIBC_2.0 loc1
  2165. 00061300 g DF .text 0000002a GLIBC_2.2 __fbufsize
  2166. 00065710 g DF .text 0000002f GLIBC_2.0 _IO_marker_delta
  2167. 00146360 g DO .bss 00000004 GLIBC_2.0 loc2
  2168. 00071d40 w DF .text 000000c6 GLIBC_2.1 rawmemchr
  2169. 000cbd50 g DF .text 0000002c GLIBC_2.0 sync
  2170. 000d3860 g DF .text 00000034 GLIBC_2.0 sysinfo
  2171. 0008f810 g DF .text 000000ae GLIBC_2.2.4 getgrouplist
  2172. 00070ec0 w DF .text 0000001e GLIBC_2.0 bcmp
  2173. 0005b1d0 w DF .text 0000002a GLIBC_2.2 getwc_unlocked
  2174. 0002aa40 w DF .text 00000104 GLIBC_2.0 sigvec
  2175. 001430d4 g DO .data 00000004 GLIBC_2.0 opterr
  2176. 00071f70 w DF .text 00000074 GLIBC_2.0 argz_append
  2177. 000f9f60 g DF .text 00000036 GLIBC_2.0 svc_getreq
  2178. 00093600 w DF .text 00000070 GLIBC_2.0 setgid
  2179. 00068a60 w DF .text 0000045a GLIBC_2.0 malloc_set_state
  2180. 000e69c0 g DF .text 00000057 GLIBC_2.3.4 __strcat_chk
  2181. 00072040 g DF .text 00000041 GLIBC_2.0 __argz_count
  2182. 0005c030 g DF .text 00000039 GLIBC_2.2 wprintf
  2183. 000d86f0 w DF .text 00000079 GLIBC_2.0 ulckpwdf
  2184. 000c85f0 g DF .text 00000146 GLIBC_2.0 fts_children
  2185. 00111a00 g DF .text 00000066 (GLIBC_2.0) getservbyport_r
  2186. 000ebe10 g DF .text 000001fb GLIBC_2.1.2 getservbyport_r
  2187. 000c1f00 g DF .text 0000003a GLIBC_2.0 mkfifo
  2188. 00070ce0 g DF .text 0000003e GLIBC_2.0 strxfrm
  2189. 000c3580 w DF .text 00000089 GLIBC_2.4 openat64
  2190. 000b7590 w DF .text 00000034 GLIBC_2.0 sched_getscheduler
  2191. 0002ce30 w DF .text 00000051 GLIBC_2.0 on_exit
  2192. 000c38e0 g DF .text 000002bb GLIBC_2.4 faccessat
  2193. 001465b4 g DO .bss 00000004 GLIBC_2.1 __key_decryptsession_pk_LOCAL
  2194. 000e1410 g DF .text 0000000f GLIBC_2.0 __res_randomid
  2195. 000602b0 g DF .text 00000032 GLIBC_2.0 setbuf
  2196. 00059890 g DF .text 00000180 GLIBC_2.0 _IO_gets
  2197. 00061f30 g DF .text 000000a7 GLIBC_2.1 fwrite_unlocked
  2198. 0006f9b0 g DF .text 00000054 GLIBC_2.0 strcmp
  2199. 00029f60 g DF .text 00000064 GLIBC_PRIVATE __libc_longjmp
  2200. 0002e530 g DF .text 00000045 GLIBC_2.0 __strtoull_internal
  2201. 000d6f80 w DF .text 00000092 GLIBC_2.3 iswspace_l
  2202. 000d3ca0 w DF .text 0000006c GLIBC_2.0 recvmsg
  2203. 00023dd0 w DF .text 00000017 GLIBC_2.3 islower_l
  2204. 00066240 g DF .text 00000128 GLIBC_2.0 __underflow
  2205. 000c10c0 w DF .text 000000ef GLIBC_2.1 pwrite64
  2206. 0006fd60 g DF .text 000000b6 GLIBC_2.0 strerror
  2207. 000391c0 g DF .text 00000042 GLIBC_2.1 __strfmon_l
  2208. 000fca40 g DF .text 0000003a GLIBC_2.0 xdr_wrapstring
  2209. 000ca6c0 g DF .text 00000038 GLIBC_2.0 tcgetpgrp
  2210. 00015f50 g DF .text 000001b6 GLIBC_2.0 __libc_start_main
  2211. 0008ea40 g DF .text 0000000a GLIBC_2.0 dirfd
  2212. 0005b1d0 w DF .text 0000002a GLIBC_2.2 fgetwc_unlocked
  2213. 00110d50 g DF .text 0000002b (GLIBC_2.1) nftw
  2214. 000f96d0 g DF .text 00000022 GLIBC_2.0 xdr_des_block
  2215. 000c61a0 g DF .text 00000052 GLIBC_2.3.3 nftw
  2216. 000f94a0 g DF .text 0000008c GLIBC_2.0 xdr_callhdr
  2217. 000d6e50 w DF .text 00000092 GLIBC_2.3 iswprint_l
  2218. 001009b0 g DF .text 0000006c GLIBC_2.0 xdr_cryptkeyarg2
  2219. 000913e0 g DF .text 000000a7 GLIBC_2.0 setpwent
  2220. 000d4570 g DF .text 00000062 GLIBC_2.0 semop
  2221. 000cc420 g DF .text 00000034 GLIBC_2.0 endfsent
  2222. 00023e70 g DF .text 00000017 GLIBC_2.1 __isupper_l
  2223. 0005c070 g DF .text 00000041 GLIBC_2.2 wscanf
  2224. 0005f6a0 w DF .text 0000009a GLIBC_2.0 ferror
  2225. 00106a70 w DF .text 00000069 GLIBC_2.0 getutent_r
  2226. 000fec10 g DF .text 0000009b GLIBC_2.1 authdes_create
  2227. 000c8f00 g DF .text 00000220 GLIBC_2.4 ppoll
  2228. 00071170 w DF .text 00000041 GLIBC_2.0 stpcpy
  2229. 000df5b0 g DF .text 0000003c GLIBC_2.3.2 pthread_cond_destroy
  2230. 00091bf0 w DF .text 00000221 GLIBC_2.0 fgetpwent_r
  2231. 00073ef0 g DF .text 00000d51 GLIBC_2.1 __strxfrm_l
  2232. 00106940 g DF .text 00000022 GLIBC_2.1 fdetach
  2233. 00029710 w DF .text 00000085 GLIBC_2.0 ldexp
  2234. 001111b0 g DF .text 0000003c (GLIBC_2.0) pthread_cond_destroy
  2235. 000cfcd0 g DF .text 00000050 GLIBC_2.0 gcvt
  2236. 00091ec0 w DF .text 000000ac GLIBC_2.0 __wait
  2237. 0005bf70 w DF .text 00000034 GLIBC_2.2 fwprintf
  2238. 000fcbb0 g DF .text 000000fe GLIBC_2.0 xdr_bytes
  2239. 0002cbe0 w DF .text 00000074 GLIBC_2.0 setenv
  2240. 00022820 w DF .text 00000067 GLIBC_2.3 nl_langinfo_l
  2241. 000cae80 g DF .text 0000003a GLIBC_2.0 setpriority
  2242. 000c1310 g DF .text 00000094 GLIBC_2.2 posix_spawn_file_actions_addopen
  2243. 00017b30 g DF .text 00000016 GLIBC_PRIVATE __gconv_get_modules_db
  2244. 00066080 g DF .text 0000007e GLIBC_2.0 _IO_default_doallocate
  2245. 001097e0 g DF .text 00000088 GLIBC_PRIVATE __libc_dlopen_mode
  2246. 00058d00 g DF .text 00000118 GLIBC_2.0 _IO_fread
  2247. 0008f090 g DF .text 00000192 GLIBC_2.0 fgetgrent
  2248. 000e7ac0 g DF .text 00000040 GLIBC_2.4 __recvfrom_chk
  2249. 000cb9d0 g DF .text 00000038 GLIBC_2.0 setdomainname
  2250. 000c36f0 w DF .text 00000070 GLIBC_2.0 write
  2251. 000ebcb0 g DF .text 0000013d GLIBC_2.0 getservbyport
  2252. 000f2380 g DF .text 00000048 GLIBC_2.1 if_freenameindex
  2253. 00034930 w DF .text 00000029 GLIBC_2.3 strtod_l
  2254. 000eaae0 g DF .text 000000ab GLIBC_2.0 getnetent
  2255. 00106f60 w DF .text 00000068 GLIBC_2.0 getutline_r
  2256. 00076020 w DF .text 00000054 GLIBC_2.0 wcslen
  2257. 000c91a0 g DF .text 000001ae GLIBC_2.2 posix_fallocate
  2258. 000c3fc0 g DF .text 00000034 GLIBC_2.0 __pipe
  2259. 000d8770 w DF .text 0000038b GLIBC_2.0 lckpwdf
  2260. 000fdb00 g DF .text 000000aa GLIBC_2.0 xdrrec_endofrecord
  2261. 00060af0 g DF .text 000000fa GLIBC_2.1 fseeko
  2262. 000d72a0 w DF .text 0000005d GLIBC_2.3 towctrans_l
  2263. 0006fa10 g DF .text 00000037 GLIBC_2.0 strcoll
  2264. 000f44a0 g DF .text 00000048 GLIBC_2.5 inet6_opt_set_val
  2265. 0002a060 w DF .text 000000cf GLIBC_2.0 ssignal
  2266. 0003d040 g DF .text 000043ec GLIBC_2.0 vfprintf
  2267. 0002d680 w DF .text 00000067 GLIBC_2.0 random
  2268. 00094d50 g DF .text 0000006a GLIBC_2.0 globfree
  2269. 000d3270 g DF .text 0000003a GLIBC_2.0 delete_module
  2270. 00077e50 g DF .text 0000003e GLIBC_2.0 __wcstold_internal
  2271. 000dd050 w DF .text 000000af GLIBC_2.1 argp_state_help
  2272. 00141580 g DO .data.rel.ro 00000100 (GLIBC_2.1) _sys_siglist
  2273. 00141580 g DO .data.rel.ro 00000104 GLIBC_2.3.3 _sys_siglist
  2274. 00072e20 g DF .text 0000002b GLIBC_2.0 basename
  2275. 00141580 g DO .data.rel.ro 00000080 (GLIBC_2.0) _sys_siglist
  2276. 000e8f40 w DF .text 00000007 GLIBC_2.0 ntohl
  2277. 00093780 g DF .text 00000008 GLIBC_2.0 getpgrp
  2278. 000b7430 g DF .text 00000047 GLIBC_2.0 getopt_long_only
  2279. 000cf690 g DF .text 000000a2 GLIBC_2.0 closelog
  2280. 00076130 g DF .text 000000d2 GLIBC_2.0 wcsncmp
  2281. 000b5ae0 w DF .text 0000004d GLIBC_2.0 re_exec
  2282. 00023cc0 g DF .text 00000011 GLIBC_2.0 isascii
  2283. 000d2340 w DF .text 000001a0 GLIBC_2.0 get_nprocs_conf
  2284. 000f5fa0 g DF .text 0000003d GLIBC_2.0 clnt_pcreateerror
  2285. 000e7c70 g DF .text 0000003b GLIBC_2.4 __ptsname_r_chk
  2286. 000d4ef0 w DF .text 000001a0 GLIBC_2.0 monstartup
  2287. 000c3c00 w DF .text 000000b7 GLIBC_2.0 __fcntl
  2288. 000e8f50 w DF .text 0000000e GLIBC_2.0 ntohs
  2289. 00046570 w DF .text 0000003b GLIBC_2.0 snprintf
  2290. 00066460 g DF .text 00000066 GLIBC_2.0 __overflow
  2291. 0002e3f0 g DF .text 00000045 GLIBC_2.0 __strtoul_internal
  2292. 000766b0 w DF .text 00000024 GLIBC_2.0 wmemmove
  2293. 000c9170 g DF .text 00000030 GLIBC_2.3.3 posix_fadvise64
  2294. 00110db0 g DF .text 00000024 (GLIBC_2.2) posix_fadvise64
  2295. 00100950 g DF .text 00000057 GLIBC_2.0 xdr_cryptkeyarg
  2296. 00094670 w DF .text 0000041d GLIBC_2.0 sysconf
  2297. 000e7330 g DF .text 000001ab GLIBC_2.3.4 __gets_chk
  2298. 0006f610 g DF .text 00000078 GLIBC_2.0 _obstack_free
  2299. 000d2fc0 g DF .text 00000068 GLIBC_2.3.3 gnu_dev_makedev
  2300. 000fc580 g DF .text 000000ea GLIBC_2.1.1 xdr_u_hyper
  2301. 000f0850 g DF .text 000000bb GLIBC_2.0 setnetgrent
  2302. 000c22a0 g DF .text 0000014d GLIBC_2.4 __xmknodat
  2303. 000165e0 g DF .text 00000023 (GLIBC_2.0) __fixunsdfdi
  2304. 0010cb50 g DF .text 000001b6 (GLIBC_2.0) _IO_fdopen
  2305. 00057fa0 g DF .text 000002da GLIBC_2.1 _IO_fdopen
  2306. 000f38e0 g DF .text 000000d6 GLIBC_2.3.3 inet6_option_find
  2307. 000791a0 w DF .text 00000040 GLIBC_2.3 wcstoull_l
  2308. 000f6d20 g DF .text 000002a9 GLIBC_2.0 clnttcp_create
  2309. 00023df0 w DF .text 00000017 GLIBC_2.3 isgraph_l
  2310. 000ec010 g DF .text 000000a2 GLIBC_2.0 getservent
  2311. 000e88e0 g DF .text 0000003b GLIBC_2.4 __ttyname_r_chk
  2312. 0002d5e0 g DF .text 00000093 GLIBC_2.0 wctomb
  2313. 00146364 g DO .bss 00000004 GLIBC_2.0 locs
  2314. 00062090 g DF .text 00000099 GLIBC_2.1 fputs_unlocked
  2315. 0002af90 g DF .text 00000024 GLIBC_2.0 siggetmask
  2316. 00143330 w DO .data 00000004 GLIBC_2.0 __memalign_hook
  2317. 00090d60 g DF .text 00000177 GLIBC_2.0 putpwent
  2318. 0005bdb0 g DF .text 0000004f GLIBC_2.2 putwchar_unlocked
  2319. 00075ac0 g DF .text 00000073 GLIBC_2.1.1 __strncpy_by2
  2320. 000d45e0 g DF .text 00000062 GLIBC_2.0 semget
  2321. 00066ce0 g DF .text 0000004c GLIBC_2.0 _IO_str_init_readonly
  2322. 00075b40 g DF .text 0000006b GLIBC_2.1.1 __strncpy_by4
  2323. 0002dbc0 w DF .text 00000116 GLIBC_2.0 initstate_r
  2324. 000f95b0 g DF .text 0000008f GLIBC_2.0 xdr_accepted_reply
  2325. 0005ab10 w DF .text 0000009b GLIBC_2.0 __vsscanf
  2326. 0006ce00 g DF .text 000001e5 GLIBC_2.0 free
  2327. 00076430 g DF .text 0000011e GLIBC_2.0 wcsstr
  2328. 00076310 g DF .text 00000028 GLIBC_2.0 wcsrchr
  2329. 00023b60 g DF .text 00000046 GLIBC_2.0 ispunct
  2330. 00062390 g DF .text 0000003b GLIBC_2.0 _IO_file_seek
  2331. 001447c0 g DO .bss 00000004 GLIBC_2.0 __daylight
  2332. 000e6740 g DF .text 00000005 GLIBC_2.2 __cyg_profile_func_exit
  2333. 000df270 g DF .text 00000043 GLIBC_2.0 pthread_attr_getinheritsched
  2334. 000e7b60 g DF .text 00000032 GLIBC_2.5 __readlinkat_chk
  2335. 001003f0 g DF .text 00000073 GLIBC_2.1 key_decryptsession
  2336. 000d1960 g DF .text 00000137 GLIBC_2.0 vwarn
  2337. 00076730 w DF .text 00000038 GLIBC_2.0 wcpcpy