forked from billziss-gh/glibc-compat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglibc-2.31-13.h
2167 lines (2163 loc) · 114 KB
/
glibc-2.31-13.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
__asm__(".symver _Exit _Exit@GLIBC_2.2.5")
__asm__(".symver _IO_2_1_stderr_ _IO_2_1_stderr_@GLIBC_2.2.5")
__asm__(".symver _IO_2_1_stdin_ _IO_2_1_stdin_@GLIBC_2.2.5")
__asm__(".symver _IO_2_1_stdout_ _IO_2_1_stdout_@GLIBC_2.2.5")
__asm__(".symver _IO_adjust_column _IO_adjust_column@GLIBC_2.2.5")
__asm__(".symver _IO_adjust_wcolumn _IO_adjust_wcolumn@GLIBC_2.2.5")
__asm__(".symver _IO_default_doallocate _IO_default_doallocate@GLIBC_2.2.5")
__asm__(".symver _IO_default_finish _IO_default_finish@GLIBC_2.2.5")
__asm__(".symver _IO_default_pbackfail _IO_default_pbackfail@GLIBC_2.2.5")
__asm__(".symver _IO_default_uflow _IO_default_uflow@GLIBC_2.2.5")
__asm__(".symver _IO_default_xsgetn _IO_default_xsgetn@GLIBC_2.2.5")
__asm__(".symver _IO_default_xsputn _IO_default_xsputn@GLIBC_2.2.5")
__asm__(".symver _IO_do_write _IO_do_write@GLIBC_2.2.5")
__asm__(".symver _IO_doallocbuf _IO_doallocbuf@GLIBC_2.2.5")
__asm__(".symver _IO_fclose _IO_fclose@GLIBC_2.2.5")
__asm__(".symver _IO_fdopen _IO_fdopen@GLIBC_2.2.5")
__asm__(".symver _IO_feof _IO_feof@GLIBC_2.2.5")
__asm__(".symver _IO_ferror _IO_ferror@GLIBC_2.2.5")
__asm__(".symver _IO_fflush _IO_fflush@GLIBC_2.2.5")
__asm__(".symver _IO_fgetpos _IO_fgetpos@GLIBC_2.2.5")
__asm__(".symver _IO_fgetpos64 _IO_fgetpos64@GLIBC_2.2.5")
__asm__(".symver _IO_fgets _IO_fgets@GLIBC_2.2.5")
__asm__(".symver _IO_file_attach _IO_file_attach@GLIBC_2.2.5")
__asm__(".symver _IO_file_close _IO_file_close@GLIBC_2.2.5")
__asm__(".symver _IO_file_close_it _IO_file_close_it@GLIBC_2.2.5")
__asm__(".symver _IO_file_doallocate _IO_file_doallocate@GLIBC_2.2.5")
__asm__(".symver _IO_file_finish _IO_file_finish@GLIBC_2.2.5")
__asm__(".symver _IO_file_fopen _IO_file_fopen@GLIBC_2.2.5")
__asm__(".symver _IO_file_init _IO_file_init@GLIBC_2.2.5")
__asm__(".symver _IO_file_jumps _IO_file_jumps@GLIBC_2.2.5")
__asm__(".symver _IO_file_open _IO_file_open@GLIBC_2.2.5")
__asm__(".symver _IO_file_overflow _IO_file_overflow@GLIBC_2.2.5")
__asm__(".symver _IO_file_read _IO_file_read@GLIBC_2.2.5")
__asm__(".symver _IO_file_seek _IO_file_seek@GLIBC_2.2.5")
__asm__(".symver _IO_file_seekoff _IO_file_seekoff@GLIBC_2.2.5")
__asm__(".symver _IO_file_setbuf _IO_file_setbuf@GLIBC_2.2.5")
__asm__(".symver _IO_file_stat _IO_file_stat@GLIBC_2.2.5")
__asm__(".symver _IO_file_sync _IO_file_sync@GLIBC_2.2.5")
__asm__(".symver _IO_file_underflow _IO_file_underflow@GLIBC_2.2.5")
__asm__(".symver _IO_file_write _IO_file_write@GLIBC_2.2.5")
__asm__(".symver _IO_file_xsputn _IO_file_xsputn@GLIBC_2.2.5")
__asm__(".symver _IO_flockfile _IO_flockfile@GLIBC_2.2.5")
__asm__(".symver _IO_flush_all _IO_flush_all@GLIBC_2.2.5")
__asm__(".symver _IO_flush_all_linebuffered _IO_flush_all_linebuffered@GLIBC_2.2.5")
__asm__(".symver _IO_fopen _IO_fopen@GLIBC_2.2.5")
__asm__(".symver _IO_fprintf _IO_fprintf@GLIBC_2.2.5")
__asm__(".symver _IO_fputs _IO_fputs@GLIBC_2.2.5")
__asm__(".symver _IO_fread _IO_fread@GLIBC_2.2.5")
__asm__(".symver _IO_free_backup_area _IO_free_backup_area@GLIBC_2.2.5")
__asm__(".symver _IO_free_wbackup_area _IO_free_wbackup_area@GLIBC_2.2.5")
__asm__(".symver _IO_fsetpos _IO_fsetpos@GLIBC_2.2.5")
__asm__(".symver _IO_fsetpos64 _IO_fsetpos64@GLIBC_2.2.5")
__asm__(".symver _IO_ftell _IO_ftell@GLIBC_2.2.5")
__asm__(".symver _IO_ftrylockfile _IO_ftrylockfile@GLIBC_2.2.5")
__asm__(".symver _IO_funlockfile _IO_funlockfile@GLIBC_2.2.5")
__asm__(".symver _IO_fwrite _IO_fwrite@GLIBC_2.2.5")
__asm__(".symver _IO_getc _IO_getc@GLIBC_2.2.5")
__asm__(".symver _IO_getline _IO_getline@GLIBC_2.2.5")
__asm__(".symver _IO_getline_info _IO_getline_info@GLIBC_2.2.5")
__asm__(".symver _IO_gets _IO_gets@GLIBC_2.2.5")
__asm__(".symver _IO_init _IO_init@GLIBC_2.2.5")
__asm__(".symver _IO_init_marker _IO_init_marker@GLIBC_2.2.5")
__asm__(".symver _IO_init_wmarker _IO_init_wmarker@GLIBC_2.2.5")
__asm__(".symver _IO_iter_begin _IO_iter_begin@GLIBC_2.2.5")
__asm__(".symver _IO_iter_end _IO_iter_end@GLIBC_2.2.5")
__asm__(".symver _IO_iter_file _IO_iter_file@GLIBC_2.2.5")
__asm__(".symver _IO_iter_next _IO_iter_next@GLIBC_2.2.5")
__asm__(".symver _IO_least_wmarker _IO_least_wmarker@GLIBC_2.2.5")
__asm__(".symver _IO_link_in _IO_link_in@GLIBC_2.2.5")
__asm__(".symver _IO_list_all _IO_list_all@GLIBC_2.2.5")
__asm__(".symver _IO_list_lock _IO_list_lock@GLIBC_2.2.5")
__asm__(".symver _IO_list_resetlock _IO_list_resetlock@GLIBC_2.2.5")
__asm__(".symver _IO_list_unlock _IO_list_unlock@GLIBC_2.2.5")
__asm__(".symver _IO_marker_delta _IO_marker_delta@GLIBC_2.2.5")
__asm__(".symver _IO_marker_difference _IO_marker_difference@GLIBC_2.2.5")
__asm__(".symver _IO_padn _IO_padn@GLIBC_2.2.5")
__asm__(".symver _IO_peekc_locked _IO_peekc_locked@GLIBC_2.2.5")
__asm__(".symver _IO_popen _IO_popen@GLIBC_2.2.5")
__asm__(".symver _IO_printf _IO_printf@GLIBC_2.2.5")
__asm__(".symver _IO_proc_close _IO_proc_close@GLIBC_2.2.5")
__asm__(".symver _IO_proc_open _IO_proc_open@GLIBC_2.2.5")
__asm__(".symver _IO_putc _IO_putc@GLIBC_2.2.5")
__asm__(".symver _IO_puts _IO_puts@GLIBC_2.2.5")
__asm__(".symver _IO_remove_marker _IO_remove_marker@GLIBC_2.2.5")
__asm__(".symver _IO_seekmark _IO_seekmark@GLIBC_2.2.5")
__asm__(".symver _IO_seekoff _IO_seekoff@GLIBC_2.2.5")
__asm__(".symver _IO_seekpos _IO_seekpos@GLIBC_2.2.5")
__asm__(".symver _IO_seekwmark _IO_seekwmark@GLIBC_2.2.5")
__asm__(".symver _IO_setb _IO_setb@GLIBC_2.2.5")
__asm__(".symver _IO_setbuffer _IO_setbuffer@GLIBC_2.2.5")
__asm__(".symver _IO_setvbuf _IO_setvbuf@GLIBC_2.2.5")
__asm__(".symver _IO_sgetn _IO_sgetn@GLIBC_2.2.5")
__asm__(".symver _IO_sprintf _IO_sprintf@GLIBC_2.2.5")
__asm__(".symver _IO_sputbackc _IO_sputbackc@GLIBC_2.2.5")
__asm__(".symver _IO_sputbackwc _IO_sputbackwc@GLIBC_2.2.5")
__asm__(".symver _IO_sscanf _IO_sscanf@GLIBC_2.2.5")
__asm__(".symver _IO_str_init_readonly _IO_str_init_readonly@GLIBC_2.2.5")
__asm__(".symver _IO_str_init_static _IO_str_init_static@GLIBC_2.2.5")
__asm__(".symver _IO_str_overflow _IO_str_overflow@GLIBC_2.2.5")
__asm__(".symver _IO_str_pbackfail _IO_str_pbackfail@GLIBC_2.2.5")
__asm__(".symver _IO_str_seekoff _IO_str_seekoff@GLIBC_2.2.5")
__asm__(".symver _IO_str_underflow _IO_str_underflow@GLIBC_2.2.5")
__asm__(".symver _IO_sungetc _IO_sungetc@GLIBC_2.2.5")
__asm__(".symver _IO_sungetwc _IO_sungetwc@GLIBC_2.2.5")
__asm__(".symver _IO_switch_to_get_mode _IO_switch_to_get_mode@GLIBC_2.2.5")
__asm__(".symver _IO_switch_to_main_wget_area _IO_switch_to_main_wget_area@GLIBC_2.2.5")
__asm__(".symver _IO_switch_to_wbackup_area _IO_switch_to_wbackup_area@GLIBC_2.2.5")
__asm__(".symver _IO_switch_to_wget_mode _IO_switch_to_wget_mode@GLIBC_2.2.5")
__asm__(".symver _IO_un_link _IO_un_link@GLIBC_2.2.5")
__asm__(".symver _IO_ungetc _IO_ungetc@GLIBC_2.2.5")
__asm__(".symver _IO_unsave_markers _IO_unsave_markers@GLIBC_2.2.5")
__asm__(".symver _IO_unsave_wmarkers _IO_unsave_wmarkers@GLIBC_2.2.5")
__asm__(".symver _IO_vfprintf _IO_vfprintf@GLIBC_2.2.5")
__asm__(".symver _IO_vfscanf _IO_vfscanf@GLIBC_2.2.5")
__asm__(".symver _IO_vsprintf _IO_vsprintf@GLIBC_2.2.5")
__asm__(".symver _IO_wdefault_doallocate _IO_wdefault_doallocate@GLIBC_2.2.5")
__asm__(".symver _IO_wdefault_finish _IO_wdefault_finish@GLIBC_2.2.5")
__asm__(".symver _IO_wdefault_pbackfail _IO_wdefault_pbackfail@GLIBC_2.2.5")
__asm__(".symver _IO_wdefault_uflow _IO_wdefault_uflow@GLIBC_2.2.5")
__asm__(".symver _IO_wdefault_xsgetn _IO_wdefault_xsgetn@GLIBC_2.2.5")
__asm__(".symver _IO_wdefault_xsputn _IO_wdefault_xsputn@GLIBC_2.2.5")
__asm__(".symver _IO_wdo_write _IO_wdo_write@GLIBC_2.2.5")
__asm__(".symver _IO_wdoallocbuf _IO_wdoallocbuf@GLIBC_2.2.5")
__asm__(".symver _IO_wfile_jumps _IO_wfile_jumps@GLIBC_2.2.5")
__asm__(".symver _IO_wfile_overflow _IO_wfile_overflow@GLIBC_2.2.5")
__asm__(".symver _IO_wfile_seekoff _IO_wfile_seekoff@GLIBC_2.2.5")
__asm__(".symver _IO_wfile_sync _IO_wfile_sync@GLIBC_2.2.5")
__asm__(".symver _IO_wfile_underflow _IO_wfile_underflow@GLIBC_2.2.5")
__asm__(".symver _IO_wfile_xsputn _IO_wfile_xsputn@GLIBC_2.2.5")
__asm__(".symver _IO_wmarker_delta _IO_wmarker_delta@GLIBC_2.2.5")
__asm__(".symver _IO_wsetb _IO_wsetb@GLIBC_2.2.5")
__asm__(".symver __adjtimex __adjtimex@GLIBC_2.2.5")
__asm__(".symver __after_morecore_hook __after_morecore_hook@GLIBC_2.2.5")
__asm__(".symver __arch_prctl __arch_prctl@GLIBC_2.2.5")
__asm__(".symver __argz_count __argz_count@GLIBC_2.2.5")
__asm__(".symver __argz_next __argz_next@GLIBC_2.2.5")
__asm__(".symver __argz_stringify __argz_stringify@GLIBC_2.2.5")
__asm__(".symver __asprintf __asprintf@GLIBC_2.2.5")
__asm__(".symver __asprintf_chk __asprintf_chk@GLIBC_2.8")
__asm__(".symver __assert __assert@GLIBC_2.2.5")
__asm__(".symver __assert_fail __assert_fail@GLIBC_2.2.5")
__asm__(".symver __assert_perror_fail __assert_perror_fail@GLIBC_2.2.5")
__asm__(".symver __backtrace __backtrace@GLIBC_2.2.5")
__asm__(".symver __backtrace_symbols __backtrace_symbols@GLIBC_2.2.5")
__asm__(".symver __backtrace_symbols_fd __backtrace_symbols_fd@GLIBC_2.2.5")
__asm__(".symver __bsd_getpgrp __bsd_getpgrp@GLIBC_2.2.5")
__asm__(".symver __bzero __bzero@GLIBC_2.2.5")
__asm__(".symver __check_rhosts_file __check_rhosts_file@GLIBC_2.2.5")
__asm__(".symver __chk_fail __chk_fail@GLIBC_2.3.4")
__asm__(".symver __clone __clone@GLIBC_2.2.5")
__asm__(".symver __close __close@GLIBC_2.2.5")
__asm__(".symver __cmsg_nxthdr __cmsg_nxthdr@GLIBC_2.2.5")
__asm__(".symver __confstr_chk __confstr_chk@GLIBC_2.4")
__asm__(".symver __connect __connect@GLIBC_2.2.5")
__asm__(".symver __ctype32_b __ctype32_b@GLIBC_2.2.5")
__asm__(".symver __ctype32_tolower __ctype32_tolower@GLIBC_2.2.5")
__asm__(".symver __ctype32_toupper __ctype32_toupper@GLIBC_2.2.5")
__asm__(".symver __ctype_b __ctype_b@GLIBC_2.2.5")
__asm__(".symver __ctype_b_loc __ctype_b_loc@GLIBC_2.3")
__asm__(".symver __ctype_get_mb_cur_max __ctype_get_mb_cur_max@GLIBC_2.2.5")
__asm__(".symver __ctype_tolower __ctype_tolower@GLIBC_2.2.5")
__asm__(".symver __ctype_tolower_loc __ctype_tolower_loc@GLIBC_2.3")
__asm__(".symver __ctype_toupper __ctype_toupper@GLIBC_2.2.5")
__asm__(".symver __ctype_toupper_loc __ctype_toupper_loc@GLIBC_2.3")
__asm__(".symver __curbrk __curbrk@GLIBC_2.2.5")
__asm__(".symver __cxa_at_quick_exit __cxa_at_quick_exit@GLIBC_2.10")
__asm__(".symver __cxa_atexit __cxa_atexit@GLIBC_2.2.5")
__asm__(".symver __cxa_finalize __cxa_finalize@GLIBC_2.2.5")
__asm__(".symver __cxa_thread_atexit_impl __cxa_thread_atexit_impl@GLIBC_2.18")
__asm__(".symver __cyg_profile_func_enter __cyg_profile_func_enter@GLIBC_2.2.5")
__asm__(".symver __cyg_profile_func_exit __cyg_profile_func_exit@GLIBC_2.2.5")
__asm__(".symver __daylight __daylight@GLIBC_2.2.5")
__asm__(".symver __dcgettext __dcgettext@GLIBC_2.2.5")
__asm__(".symver __default_morecore __default_morecore@GLIBC_2.2.5")
__asm__(".symver __dgettext __dgettext@GLIBC_2.2.5")
__asm__(".symver __dprintf_chk __dprintf_chk@GLIBC_2.8")
__asm__(".symver __dup2 __dup2@GLIBC_2.2.5")
__asm__(".symver __duplocale __duplocale@GLIBC_2.2.5")
__asm__(".symver __endmntent __endmntent@GLIBC_2.2.5")
__asm__(".symver __environ __environ@GLIBC_2.2.5")
__asm__(".symver __errno_location __errno_location@GLIBC_2.2.5")
__asm__(".symver __explicit_bzero_chk __explicit_bzero_chk@GLIBC_2.25")
__asm__(".symver __fbufsize __fbufsize@GLIBC_2.2.5")
__asm__(".symver __fcntl __fcntl@GLIBC_2.2.5")
__asm__(".symver __fdelt_chk __fdelt_chk@GLIBC_2.15")
__asm__(".symver __fdelt_warn __fdelt_warn@GLIBC_2.15")
__asm__(".symver __fentry__ __fentry__@GLIBC_2.13")
__asm__(".symver __ffs __ffs@GLIBC_2.2.5")
__asm__(".symver __fgets_chk __fgets_chk@GLIBC_2.4")
__asm__(".symver __fgets_unlocked_chk __fgets_unlocked_chk@GLIBC_2.4")
__asm__(".symver __fgetws_chk __fgetws_chk@GLIBC_2.4")
__asm__(".symver __fgetws_unlocked_chk __fgetws_unlocked_chk@GLIBC_2.4")
__asm__(".symver __finite __finite@GLIBC_2.2.5")
__asm__(".symver __finitef __finitef@GLIBC_2.2.5")
__asm__(".symver __finitel __finitel@GLIBC_2.2.5")
__asm__(".symver __flbf __flbf@GLIBC_2.2.5")
__asm__(".symver __fork __fork@GLIBC_2.2.5")
__asm__(".symver __fpending __fpending@GLIBC_2.2.5")
__asm__(".symver __fprintf_chk __fprintf_chk@GLIBC_2.3.4")
__asm__(".symver __fpu_control __fpu_control@GLIBC_2.2.5")
__asm__(".symver __fpurge __fpurge@GLIBC_2.2.5")
__asm__(".symver __fread_chk __fread_chk@GLIBC_2.7")
__asm__(".symver __fread_unlocked_chk __fread_unlocked_chk@GLIBC_2.7")
__asm__(".symver __freadable __freadable@GLIBC_2.2.5")
__asm__(".symver __freading __freading@GLIBC_2.2.5")
__asm__(".symver __free_hook __free_hook@GLIBC_2.2.5")
__asm__(".symver __freelocale __freelocale@GLIBC_2.2.5")
__asm__(".symver __fsetlocking __fsetlocking@GLIBC_2.2.5")
__asm__(".symver __fwprintf_chk __fwprintf_chk@GLIBC_2.4")
__asm__(".symver __fwritable __fwritable@GLIBC_2.2.5")
__asm__(".symver __fwriting __fwriting@GLIBC_2.2.5")
__asm__(".symver __fxstat __fxstat@GLIBC_2.2.5")
__asm__(".symver __fxstat64 __fxstat64@GLIBC_2.2.5")
__asm__(".symver __fxstatat __fxstatat@GLIBC_2.4")
__asm__(".symver __fxstatat64 __fxstatat64@GLIBC_2.4")
__asm__(".symver __getauxval __getauxval@GLIBC_2.16")
__asm__(".symver __getcwd_chk __getcwd_chk@GLIBC_2.4")
__asm__(".symver __getdelim __getdelim@GLIBC_2.2.5")
__asm__(".symver __getdomainname_chk __getdomainname_chk@GLIBC_2.4")
__asm__(".symver __getgroups_chk __getgroups_chk@GLIBC_2.4")
__asm__(".symver __gethostname_chk __gethostname_chk@GLIBC_2.4")
__asm__(".symver __getlogin_r_chk __getlogin_r_chk@GLIBC_2.4")
__asm__(".symver __getmntent_r __getmntent_r@GLIBC_2.2.5")
__asm__(".symver __getpagesize __getpagesize@GLIBC_2.2.5")
__asm__(".symver __getpgid __getpgid@GLIBC_2.2.5")
__asm__(".symver __getpid __getpid@GLIBC_2.2.5")
__asm__(".symver __gets_chk __gets_chk@GLIBC_2.3.4")
__asm__(".symver __gettimeofday __gettimeofday@GLIBC_2.2.5")
__asm__(".symver __getwd_chk __getwd_chk@GLIBC_2.4")
__asm__(".symver __gmtime_r __gmtime_r@GLIBC_2.2.5")
__asm__(".symver __h_errno_location __h_errno_location@GLIBC_2.2.5")
__asm__(".symver __isalnum_l __isalnum_l@GLIBC_2.2.5")
__asm__(".symver __isalpha_l __isalpha_l@GLIBC_2.2.5")
__asm__(".symver __isascii_l __isascii_l@GLIBC_2.2.5")
__asm__(".symver __isblank_l __isblank_l@GLIBC_2.2.5")
__asm__(".symver __iscntrl_l __iscntrl_l@GLIBC_2.2.5")
__asm__(".symver __isctype __isctype@GLIBC_2.3")
__asm__(".symver __isdigit_l __isdigit_l@GLIBC_2.2.5")
__asm__(".symver __isgraph_l __isgraph_l@GLIBC_2.2.5")
__asm__(".symver __isinf __isinf@GLIBC_2.2.5")
__asm__(".symver __isinff __isinff@GLIBC_2.2.5")
__asm__(".symver __isinfl __isinfl@GLIBC_2.2.5")
__asm__(".symver __islower_l __islower_l@GLIBC_2.2.5")
__asm__(".symver __isnan __isnan@GLIBC_2.2.5")
__asm__(".symver __isnanf __isnanf@GLIBC_2.2.5")
__asm__(".symver __isnanl __isnanl@GLIBC_2.2.5")
__asm__(".symver __isoc99_fscanf __isoc99_fscanf@GLIBC_2.7")
__asm__(".symver __isoc99_fwscanf __isoc99_fwscanf@GLIBC_2.7")
__asm__(".symver __isoc99_scanf __isoc99_scanf@GLIBC_2.7")
__asm__(".symver __isoc99_sscanf __isoc99_sscanf@GLIBC_2.7")
__asm__(".symver __isoc99_swscanf __isoc99_swscanf@GLIBC_2.7")
__asm__(".symver __isoc99_vfscanf __isoc99_vfscanf@GLIBC_2.7")
__asm__(".symver __isoc99_vfwscanf __isoc99_vfwscanf@GLIBC_2.7")
__asm__(".symver __isoc99_vscanf __isoc99_vscanf@GLIBC_2.7")
__asm__(".symver __isoc99_vsscanf __isoc99_vsscanf@GLIBC_2.7")
__asm__(".symver __isoc99_vswscanf __isoc99_vswscanf@GLIBC_2.7")
__asm__(".symver __isoc99_vwscanf __isoc99_vwscanf@GLIBC_2.7")
__asm__(".symver __isoc99_wscanf __isoc99_wscanf@GLIBC_2.7")
__asm__(".symver __isprint_l __isprint_l@GLIBC_2.2.5")
__asm__(".symver __ispunct_l __ispunct_l@GLIBC_2.2.5")
__asm__(".symver __isspace_l __isspace_l@GLIBC_2.2.5")
__asm__(".symver __isupper_l __isupper_l@GLIBC_2.2.5")
__asm__(".symver __iswalnum_l __iswalnum_l@GLIBC_2.2.5")
__asm__(".symver __iswalpha_l __iswalpha_l@GLIBC_2.2.5")
__asm__(".symver __iswblank_l __iswblank_l@GLIBC_2.2.5")
__asm__(".symver __iswcntrl_l __iswcntrl_l@GLIBC_2.2.5")
__asm__(".symver __iswctype __iswctype@GLIBC_2.2.5")
__asm__(".symver __iswctype_l __iswctype_l@GLIBC_2.2.5")
__asm__(".symver __iswdigit_l __iswdigit_l@GLIBC_2.2.5")
__asm__(".symver __iswgraph_l __iswgraph_l@GLIBC_2.2.5")
__asm__(".symver __iswlower_l __iswlower_l@GLIBC_2.2.5")
__asm__(".symver __iswprint_l __iswprint_l@GLIBC_2.2.5")
__asm__(".symver __iswpunct_l __iswpunct_l@GLIBC_2.2.5")
__asm__(".symver __iswspace_l __iswspace_l@GLIBC_2.2.5")
__asm__(".symver __iswupper_l __iswupper_l@GLIBC_2.2.5")
__asm__(".symver __iswxdigit_l __iswxdigit_l@GLIBC_2.2.5")
__asm__(".symver __isxdigit_l __isxdigit_l@GLIBC_2.2.5")
__asm__(".symver __ivaliduser __ivaliduser@GLIBC_2.2.5")
__asm__(".symver __key_decryptsession_pk_LOCAL __key_decryptsession_pk_LOCAL@GLIBC_2.2.5")
__asm__(".symver __key_encryptsession_pk_LOCAL __key_encryptsession_pk_LOCAL@GLIBC_2.2.5")
__asm__(".symver __key_gendes_LOCAL __key_gendes_LOCAL@GLIBC_2.2.5")
__asm__(".symver __libc_allocate_rtsig __libc_allocate_rtsig@GLIBC_2.2.5")
__asm__(".symver __libc_calloc __libc_calloc@GLIBC_2.2.5")
__asm__(".symver __libc_current_sigrtmax __libc_current_sigrtmax@GLIBC_2.2.5")
__asm__(".symver __libc_current_sigrtmin __libc_current_sigrtmin@GLIBC_2.2.5")
__asm__(".symver __libc_free __libc_free@GLIBC_2.2.5")
__asm__(".symver __libc_freeres __libc_freeres@GLIBC_2.2.5")
__asm__(".symver __libc_init_first __libc_init_first@GLIBC_2.2.5")
__asm__(".symver __libc_mallinfo __libc_mallinfo@GLIBC_2.2.5")
__asm__(".symver __libc_malloc __libc_malloc@GLIBC_2.2.5")
__asm__(".symver __libc_mallopt __libc_mallopt@GLIBC_2.2.5")
__asm__(".symver __libc_memalign __libc_memalign@GLIBC_2.2.5")
__asm__(".symver __libc_pvalloc __libc_pvalloc@GLIBC_2.2.5")
__asm__(".symver __libc_realloc __libc_realloc@GLIBC_2.2.5")
__asm__(".symver __libc_sa_len __libc_sa_len@GLIBC_2.2.5")
__asm__(".symver __libc_start_main __libc_start_main@GLIBC_2.2.5")
__asm__(".symver __libc_valloc __libc_valloc@GLIBC_2.2.5")
__asm__(".symver __longjmp_chk __longjmp_chk@GLIBC_2.11")
__asm__(".symver __lseek __lseek@GLIBC_2.2.5")
__asm__(".symver __lxstat __lxstat@GLIBC_2.2.5")
__asm__(".symver __lxstat64 __lxstat64@GLIBC_2.2.5")
__asm__(".symver __malloc_hook __malloc_hook@GLIBC_2.2.5")
__asm__(".symver __malloc_initialize_hook __malloc_initialize_hook@GLIBC_2.2.5")
__asm__(".symver __mbrlen __mbrlen@GLIBC_2.2.5")
__asm__(".symver __mbrtowc __mbrtowc@GLIBC_2.2.5")
__asm__(".symver __mbsnrtowcs_chk __mbsnrtowcs_chk@GLIBC_2.4")
__asm__(".symver __mbsrtowcs_chk __mbsrtowcs_chk@GLIBC_2.4")
__asm__(".symver __mbstowcs_chk __mbstowcs_chk@GLIBC_2.4")
__asm__(".symver __memalign_hook __memalign_hook@GLIBC_2.2.5")
__asm__(".symver __memcpy_chk __memcpy_chk@GLIBC_2.3.4")
__asm__(".symver __memmove_chk __memmove_chk@GLIBC_2.3.4")
__asm__(".symver __mempcpy __mempcpy@GLIBC_2.2.5")
__asm__(".symver __mempcpy_chk __mempcpy_chk@GLIBC_2.3.4")
__asm__(".symver __mempcpy_small __mempcpy_small@GLIBC_2.2.5")
__asm__(".symver __memset_chk __memset_chk@GLIBC_2.3.4")
__asm__(".symver __monstartup __monstartup@GLIBC_2.2.5")
__asm__(".symver __morecore __morecore@GLIBC_2.2.5")
__asm__(".symver __nanosleep __nanosleep@GLIBC_2.2.6")
__asm__(".symver __newlocale __newlocale@GLIBC_2.2.5")
__asm__(".symver __nl_langinfo_l __nl_langinfo_l@GLIBC_2.2.5")
__asm__(".symver __nss_configure_lookup __nss_configure_lookup@GLIBC_2.2.5")
__asm__(".symver __nss_database_lookup __nss_database_lookup@GLIBC_2.2.5")
__asm__(".symver __nss_group_lookup __nss_group_lookup@GLIBC_2.2.5")
__asm__(".symver __nss_hostname_digits_dots __nss_hostname_digits_dots@GLIBC_2.2.5")
__asm__(".symver __nss_hosts_lookup __nss_hosts_lookup@GLIBC_2.2.5")
__asm__(".symver __nss_next __nss_next@GLIBC_2.2.5")
__asm__(".symver __nss_passwd_lookup __nss_passwd_lookup@GLIBC_2.2.5")
__asm__(".symver __obstack_printf_chk __obstack_printf_chk@GLIBC_2.8")
__asm__(".symver __obstack_vprintf_chk __obstack_vprintf_chk@GLIBC_2.8")
__asm__(".symver __open __open@GLIBC_2.2.5")
__asm__(".symver __open64 __open64@GLIBC_2.2.5")
__asm__(".symver __open64_2 __open64_2@GLIBC_2.7")
__asm__(".symver __open_2 __open_2@GLIBC_2.7")
__asm__(".symver __openat64_2 __openat64_2@GLIBC_2.7")
__asm__(".symver __openat_2 __openat_2@GLIBC_2.7")
__asm__(".symver __overflow __overflow@GLIBC_2.2.5")
__asm__(".symver __pipe __pipe@GLIBC_2.2.5")
__asm__(".symver __poll __poll@GLIBC_2.2.5")
__asm__(".symver __poll_chk __poll_chk@GLIBC_2.16")
__asm__(".symver __posix_getopt __posix_getopt@GLIBC_2.10")
__asm__(".symver __ppoll_chk __ppoll_chk@GLIBC_2.16")
__asm__(".symver __pread64 __pread64@GLIBC_2.2.5")
__asm__(".symver __pread64_chk __pread64_chk@GLIBC_2.4")
__asm__(".symver __pread_chk __pread_chk@GLIBC_2.4")
__asm__(".symver __printf_chk __printf_chk@GLIBC_2.3.4")
__asm__(".symver __printf_fp __printf_fp@GLIBC_2.2.5")
__asm__(".symver __profile_frequency __profile_frequency@GLIBC_2.2.5")
__asm__(".symver __progname __progname@GLIBC_2.2.5")
__asm__(".symver __progname_full __progname_full@GLIBC_2.2.5")
__asm__(".symver __ptsname_r_chk __ptsname_r_chk@GLIBC_2.4")
__asm__(".symver __pwrite64 __pwrite64@GLIBC_2.2.5")
__asm__(".symver __rawmemchr __rawmemchr@GLIBC_2.2.5")
__asm__(".symver __rcmd_errstr __rcmd_errstr@GLIBC_2.2.5")
__asm__(".symver __read __read@GLIBC_2.2.5")
__asm__(".symver __read_chk __read_chk@GLIBC_2.4")
__asm__(".symver __readlink_chk __readlink_chk@GLIBC_2.4")
__asm__(".symver __readlinkat_chk __readlinkat_chk@GLIBC_2.5")
__asm__(".symver __realloc_hook __realloc_hook@GLIBC_2.2.5")
__asm__(".symver __realpath_chk __realpath_chk@GLIBC_2.4")
__asm__(".symver __recv_chk __recv_chk@GLIBC_2.4")
__asm__(".symver __recvfrom_chk __recvfrom_chk@GLIBC_2.4")
__asm__(".symver __register_atfork __register_atfork@GLIBC_2.3.2")
__asm__(".symver __res_init __res_init@GLIBC_2.2.5")
__asm__(".symver __res_nclose __res_nclose@GLIBC_2.2.5")
__asm__(".symver __res_ninit __res_ninit@GLIBC_2.2.5")
__asm__(".symver __res_randomid __res_randomid@GLIBC_2.2.5")
__asm__(".symver __res_state __res_state@GLIBC_2.2.5")
__asm__(".symver __rpc_thread_createerr __rpc_thread_createerr@GLIBC_2.2.5")
__asm__(".symver __rpc_thread_svc_fdset __rpc_thread_svc_fdset@GLIBC_2.2.5")
__asm__(".symver __rpc_thread_svc_max_pollfd __rpc_thread_svc_max_pollfd@GLIBC_2.2.5")
__asm__(".symver __rpc_thread_svc_pollfd __rpc_thread_svc_pollfd@GLIBC_2.2.5")
__asm__(".symver __sbrk __sbrk@GLIBC_2.2.5")
__asm__(".symver __sched_cpualloc __sched_cpualloc@GLIBC_2.7")
__asm__(".symver __sched_cpucount __sched_cpucount@GLIBC_2.6")
__asm__(".symver __sched_cpufree __sched_cpufree@GLIBC_2.7")
__asm__(".symver __sched_get_priority_max __sched_get_priority_max@GLIBC_2.2.5")
__asm__(".symver __sched_get_priority_min __sched_get_priority_min@GLIBC_2.2.5")
__asm__(".symver __sched_getparam __sched_getparam@GLIBC_2.2.5")
__asm__(".symver __sched_getscheduler __sched_getscheduler@GLIBC_2.2.5")
__asm__(".symver __sched_setscheduler __sched_setscheduler@GLIBC_2.2.5")
__asm__(".symver __sched_yield __sched_yield@GLIBC_2.2.5")
__asm__(".symver __secure_getenv __secure_getenv@GLIBC_2.2.5")
__asm__(".symver __select __select@GLIBC_2.2.5")
__asm__(".symver __send __send@GLIBC_2.2.5")
__asm__(".symver __setmntent __setmntent@GLIBC_2.2.5")
__asm__(".symver __setpgid __setpgid@GLIBC_2.2.5")
__asm__(".symver __sigaction __sigaction@GLIBC_2.2.5")
__asm__(".symver __sigaddset __sigaddset@GLIBC_2.2.5")
__asm__(".symver __sigdelset __sigdelset@GLIBC_2.2.5")
__asm__(".symver __sigismember __sigismember@GLIBC_2.2.5")
__asm__(".symver __signbit __signbit@GLIBC_2.2.5")
__asm__(".symver __signbitf __signbitf@GLIBC_2.2.5")
__asm__(".symver __signbitl __signbitl@GLIBC_2.2.5")
__asm__(".symver __sigpause __sigpause@GLIBC_2.2.5")
__asm__(".symver __sigsetjmp __sigsetjmp@GLIBC_2.2.5")
__asm__(".symver __sigsuspend __sigsuspend@GLIBC_2.2.5")
__asm__(".symver __snprintf_chk __snprintf_chk@GLIBC_2.3.4")
__asm__(".symver __sprintf_chk __sprintf_chk@GLIBC_2.3.4")
__asm__(".symver __stack_chk_fail __stack_chk_fail@GLIBC_2.4")
__asm__(".symver __statfs __statfs@GLIBC_2.2.5")
__asm__(".symver __stpcpy __stpcpy@GLIBC_2.2.5")
__asm__(".symver __stpcpy_chk __stpcpy_chk@GLIBC_2.3.4")
__asm__(".symver __stpcpy_small __stpcpy_small@GLIBC_2.2.5")
__asm__(".symver __stpncpy __stpncpy@GLIBC_2.2.5")
__asm__(".symver __stpncpy_chk __stpncpy_chk@GLIBC_2.4")
__asm__(".symver __strcasecmp __strcasecmp@GLIBC_2.2.5")
__asm__(".symver __strcasecmp_l __strcasecmp_l@GLIBC_2.2.5")
__asm__(".symver __strcasestr __strcasestr@GLIBC_2.2.5")
__asm__(".symver __strcat_chk __strcat_chk@GLIBC_2.3.4")
__asm__(".symver __strcoll_l __strcoll_l@GLIBC_2.2.5")
__asm__(".symver __strcpy_chk __strcpy_chk@GLIBC_2.3.4")
__asm__(".symver __strcpy_small __strcpy_small@GLIBC_2.2.5")
__asm__(".symver __strcspn_c1 __strcspn_c1@GLIBC_2.2.5")
__asm__(".symver __strcspn_c2 __strcspn_c2@GLIBC_2.2.5")
__asm__(".symver __strcspn_c3 __strcspn_c3@GLIBC_2.2.5")
__asm__(".symver __strdup __strdup@GLIBC_2.2.5")
__asm__(".symver __strerror_r __strerror_r@GLIBC_2.2.5")
__asm__(".symver __strfmon_l __strfmon_l@GLIBC_2.2.5")
__asm__(".symver __strftime_l __strftime_l@GLIBC_2.3")
__asm__(".symver __strncasecmp_l __strncasecmp_l@GLIBC_2.2.5")
__asm__(".symver __strncat_chk __strncat_chk@GLIBC_2.3.4")
__asm__(".symver __strncpy_chk __strncpy_chk@GLIBC_2.3.4")
__asm__(".symver __strndup __strndup@GLIBC_2.2.5")
__asm__(".symver __strpbrk_c2 __strpbrk_c2@GLIBC_2.2.5")
__asm__(".symver __strpbrk_c3 __strpbrk_c3@GLIBC_2.2.5")
__asm__(".symver __strsep_1c __strsep_1c@GLIBC_2.2.5")
__asm__(".symver __strsep_2c __strsep_2c@GLIBC_2.2.5")
__asm__(".symver __strsep_3c __strsep_3c@GLIBC_2.2.5")
__asm__(".symver __strsep_g __strsep_g@GLIBC_2.2.5")
__asm__(".symver __strspn_c1 __strspn_c1@GLIBC_2.2.5")
__asm__(".symver __strspn_c2 __strspn_c2@GLIBC_2.2.5")
__asm__(".symver __strspn_c3 __strspn_c3@GLIBC_2.2.5")
__asm__(".symver __strtod_internal __strtod_internal@GLIBC_2.2.5")
__asm__(".symver __strtod_l __strtod_l@GLIBC_2.2.5")
__asm__(".symver __strtof128_internal __strtof128_internal@GLIBC_2.26")
__asm__(".symver __strtof_internal __strtof_internal@GLIBC_2.2.5")
__asm__(".symver __strtof_l __strtof_l@GLIBC_2.2.5")
__asm__(".symver __strtok_r __strtok_r@GLIBC_2.2.5")
__asm__(".symver __strtok_r_1c __strtok_r_1c@GLIBC_2.2.5")
__asm__(".symver __strtol_internal __strtol_internal@GLIBC_2.2.5")
__asm__(".symver __strtol_l __strtol_l@GLIBC_2.2.5")
__asm__(".symver __strtold_internal __strtold_internal@GLIBC_2.2.5")
__asm__(".symver __strtold_l __strtold_l@GLIBC_2.2.5")
__asm__(".symver __strtoll_internal __strtoll_internal@GLIBC_2.2.5")
__asm__(".symver __strtoll_l __strtoll_l@GLIBC_2.2.5")
__asm__(".symver __strtoul_internal __strtoul_internal@GLIBC_2.2.5")
__asm__(".symver __strtoul_l __strtoul_l@GLIBC_2.2.5")
__asm__(".symver __strtoull_internal __strtoull_internal@GLIBC_2.2.5")
__asm__(".symver __strtoull_l __strtoull_l@GLIBC_2.2.5")
__asm__(".symver __strverscmp __strverscmp@GLIBC_2.2.5")
__asm__(".symver __strxfrm_l __strxfrm_l@GLIBC_2.2.5")
__asm__(".symver __swprintf_chk __swprintf_chk@GLIBC_2.4")
__asm__(".symver __sysconf __sysconf@GLIBC_2.2.5")
__asm__(".symver __sysctl __sysctl@GLIBC_2.2.5")
__asm__(".symver __syslog_chk __syslog_chk@GLIBC_2.4")
__asm__(".symver __sysv_signal __sysv_signal@GLIBC_2.2.5")
__asm__(".symver __timezone __timezone@GLIBC_2.2.5")
__asm__(".symver __tls_get_addr __tls_get_addr@GLIBC_2.3")
__asm__(".symver __toascii_l __toascii_l@GLIBC_2.2.5")
__asm__(".symver __tolower_l __tolower_l@GLIBC_2.2.5")
__asm__(".symver __toupper_l __toupper_l@GLIBC_2.2.5")
__asm__(".symver __towctrans __towctrans@GLIBC_2.2.5")
__asm__(".symver __towctrans_l __towctrans_l@GLIBC_2.2.5")
__asm__(".symver __towlower_l __towlower_l@GLIBC_2.2.5")
__asm__(".symver __towupper_l __towupper_l@GLIBC_2.2.5")
__asm__(".symver __ttyname_r_chk __ttyname_r_chk@GLIBC_2.4")
__asm__(".symver __tzname __tzname@GLIBC_2.2.5")
__asm__(".symver __uflow __uflow@GLIBC_2.2.5")
__asm__(".symver __underflow __underflow@GLIBC_2.2.5")
__asm__(".symver __uselocale __uselocale@GLIBC_2.3")
__asm__(".symver __vasprintf_chk __vasprintf_chk@GLIBC_2.8")
__asm__(".symver __vdprintf_chk __vdprintf_chk@GLIBC_2.8")
__asm__(".symver __vfork __vfork@GLIBC_2.2.5")
__asm__(".symver __vfprintf_chk __vfprintf_chk@GLIBC_2.3.4")
__asm__(".symver __vfscanf __vfscanf@GLIBC_2.2.5")
__asm__(".symver __vfwprintf_chk __vfwprintf_chk@GLIBC_2.4")
__asm__(".symver __vprintf_chk __vprintf_chk@GLIBC_2.3.4")
__asm__(".symver __vsnprintf __vsnprintf@GLIBC_2.2.5")
__asm__(".symver __vsnprintf_chk __vsnprintf_chk@GLIBC_2.3.4")
__asm__(".symver __vsprintf_chk __vsprintf_chk@GLIBC_2.3.4")
__asm__(".symver __vsscanf __vsscanf@GLIBC_2.2.5")
__asm__(".symver __vswprintf_chk __vswprintf_chk@GLIBC_2.4")
__asm__(".symver __vsyslog_chk __vsyslog_chk@GLIBC_2.4")
__asm__(".symver __vwprintf_chk __vwprintf_chk@GLIBC_2.4")
__asm__(".symver __wait __wait@GLIBC_2.2.5")
__asm__(".symver __waitpid __waitpid@GLIBC_2.2.5")
__asm__(".symver __wcpcpy_chk __wcpcpy_chk@GLIBC_2.4")
__asm__(".symver __wcpncpy_chk __wcpncpy_chk@GLIBC_2.4")
__asm__(".symver __wcrtomb_chk __wcrtomb_chk@GLIBC_2.4")
__asm__(".symver __wcscasecmp_l __wcscasecmp_l@GLIBC_2.2.5")
__asm__(".symver __wcscat_chk __wcscat_chk@GLIBC_2.4")
__asm__(".symver __wcscoll_l __wcscoll_l@GLIBC_2.2.5")
__asm__(".symver __wcscpy_chk __wcscpy_chk@GLIBC_2.4")
__asm__(".symver __wcsftime_l __wcsftime_l@GLIBC_2.3")
__asm__(".symver __wcsncasecmp_l __wcsncasecmp_l@GLIBC_2.2.5")
__asm__(".symver __wcsncat_chk __wcsncat_chk@GLIBC_2.4")
__asm__(".symver __wcsncpy_chk __wcsncpy_chk@GLIBC_2.4")
__asm__(".symver __wcsnrtombs_chk __wcsnrtombs_chk@GLIBC_2.4")
__asm__(".symver __wcsrtombs_chk __wcsrtombs_chk@GLIBC_2.4")
__asm__(".symver __wcstod_internal __wcstod_internal@GLIBC_2.2.5")
__asm__(".symver __wcstod_l __wcstod_l@GLIBC_2.2.5")
__asm__(".symver __wcstof128_internal __wcstof128_internal@GLIBC_2.26")
__asm__(".symver __wcstof_internal __wcstof_internal@GLIBC_2.2.5")
__asm__(".symver __wcstof_l __wcstof_l@GLIBC_2.2.5")
__asm__(".symver __wcstol_internal __wcstol_internal@GLIBC_2.2.5")
__asm__(".symver __wcstol_l __wcstol_l@GLIBC_2.2.5")
__asm__(".symver __wcstold_internal __wcstold_internal@GLIBC_2.2.5")
__asm__(".symver __wcstold_l __wcstold_l@GLIBC_2.2.5")
__asm__(".symver __wcstoll_internal __wcstoll_internal@GLIBC_2.2.5")
__asm__(".symver __wcstoll_l __wcstoll_l@GLIBC_2.2.5")
__asm__(".symver __wcstombs_chk __wcstombs_chk@GLIBC_2.4")
__asm__(".symver __wcstoul_internal __wcstoul_internal@GLIBC_2.2.5")
__asm__(".symver __wcstoul_l __wcstoul_l@GLIBC_2.2.5")
__asm__(".symver __wcstoull_internal __wcstoull_internal@GLIBC_2.2.5")
__asm__(".symver __wcstoull_l __wcstoull_l@GLIBC_2.2.5")
__asm__(".symver __wcsxfrm_l __wcsxfrm_l@GLIBC_2.2.5")
__asm__(".symver __wctomb_chk __wctomb_chk@GLIBC_2.4")
__asm__(".symver __wctrans_l __wctrans_l@GLIBC_2.2.5")
__asm__(".symver __wctype_l __wctype_l@GLIBC_2.2.5")
__asm__(".symver __wmemcpy_chk __wmemcpy_chk@GLIBC_2.4")
__asm__(".symver __wmemmove_chk __wmemmove_chk@GLIBC_2.4")
__asm__(".symver __wmempcpy_chk __wmempcpy_chk@GLIBC_2.4")
__asm__(".symver __wmemset_chk __wmemset_chk@GLIBC_2.4")
__asm__(".symver __woverflow __woverflow@GLIBC_2.2.5")
__asm__(".symver __wprintf_chk __wprintf_chk@GLIBC_2.4")
__asm__(".symver __write __write@GLIBC_2.2.5")
__asm__(".symver __wuflow __wuflow@GLIBC_2.2.5")
__asm__(".symver __wunderflow __wunderflow@GLIBC_2.2.5")
__asm__(".symver __xmknod __xmknod@GLIBC_2.2.5")
__asm__(".symver __xmknodat __xmknodat@GLIBC_2.4")
__asm__(".symver __xpg_basename __xpg_basename@GLIBC_2.2.5")
__asm__(".symver __xpg_sigpause __xpg_sigpause@GLIBC_2.2.5")
__asm__(".symver __xpg_strerror_r __xpg_strerror_r@GLIBC_2.3.4")
__asm__(".symver __xstat __xstat@GLIBC_2.2.5")
__asm__(".symver __xstat64 __xstat64@GLIBC_2.2.5")
__asm__(".symver _authenticate _authenticate@GLIBC_2.2.5")
__asm__(".symver _dl_mcount_wrapper _dl_mcount_wrapper@GLIBC_2.2.5")
__asm__(".symver _dl_mcount_wrapper_check _dl_mcount_wrapper_check@GLIBC_2.2.5")
__asm__(".symver _environ _environ@GLIBC_2.2.5")
__asm__(".symver _exit _exit@GLIBC_2.2.5")
__asm__(".symver _flushlbf _flushlbf@GLIBC_2.2.5")
__asm__(".symver _libc_intl_domainname _libc_intl_domainname@GLIBC_2.2.5")
__asm__(".symver _longjmp _longjmp@GLIBC_2.2.5")
__asm__(".symver _mcleanup _mcleanup@GLIBC_2.2.5")
__asm__(".symver _mcount _mcount@GLIBC_2.2.5")
__asm__(".symver _nl_default_dirname _nl_default_dirname@GLIBC_2.2.5")
__asm__(".symver _nl_domain_bindings _nl_domain_bindings@GLIBC_2.2.5")
__asm__(".symver _nl_msg_cat_cntr _nl_msg_cat_cntr@GLIBC_2.2.5")
__asm__(".symver _null_auth _null_auth@GLIBC_2.2.5")
__asm__(".symver _obstack _obstack@GLIBC_2.2.5")
__asm__(".symver _obstack_allocated_p _obstack_allocated_p@GLIBC_2.2.5")
__asm__(".symver _obstack_begin _obstack_begin@GLIBC_2.2.5")
__asm__(".symver _obstack_begin_1 _obstack_begin_1@GLIBC_2.2.5")
__asm__(".symver _obstack_free _obstack_free@GLIBC_2.2.5")
__asm__(".symver _obstack_memory_used _obstack_memory_used@GLIBC_2.2.5")
__asm__(".symver _obstack_newchunk _obstack_newchunk@GLIBC_2.2.5")
__asm__(".symver _res _res@GLIBC_2.2.5")
__asm__(".symver _res_hconf _res_hconf@GLIBC_2.2.5")
__asm__(".symver _rpc_dtablesize _rpc_dtablesize@GLIBC_2.2.5")
__asm__(".symver _seterr_reply _seterr_reply@GLIBC_2.2.5")
__asm__(".symver _setjmp _setjmp@GLIBC_2.2.5")
__asm__(".symver _sys_errlist _sys_errlist@GLIBC_2.12")
__asm__(".symver _sys_nerr _sys_nerr@GLIBC_2.12")
__asm__(".symver _sys_siglist _sys_siglist@GLIBC_2.3.3")
__asm__(".symver _tolower _tolower@GLIBC_2.2.5")
__asm__(".symver _toupper _toupper@GLIBC_2.2.5")
__asm__(".symver a64l a64l@GLIBC_2.2.5")
__asm__(".symver abort abort@GLIBC_2.2.5")
__asm__(".symver abs abs@GLIBC_2.2.5")
__asm__(".symver accept accept@GLIBC_2.2.5")
__asm__(".symver accept4 accept4@GLIBC_2.10")
__asm__(".symver access access@GLIBC_2.2.5")
__asm__(".symver acct acct@GLIBC_2.2.5")
__asm__(".symver addmntent addmntent@GLIBC_2.2.5")
__asm__(".symver addseverity addseverity@GLIBC_2.2.5")
__asm__(".symver adjtime adjtime@GLIBC_2.2.5")
__asm__(".symver adjtimex adjtimex@GLIBC_2.2.5")
__asm__(".symver advance advance@GLIBC_2.2.5")
__asm__(".symver alarm alarm@GLIBC_2.2.5")
__asm__(".symver aligned_alloc aligned_alloc@GLIBC_2.16")
__asm__(".symver alphasort alphasort@GLIBC_2.2.5")
__asm__(".symver alphasort64 alphasort64@GLIBC_2.2.5")
__asm__(".symver arch_prctl arch_prctl@GLIBC_2.2.5")
__asm__(".symver argp_err_exit_status argp_err_exit_status@GLIBC_2.2.5")
__asm__(".symver argp_error argp_error@GLIBC_2.2.5")
__asm__(".symver argp_failure argp_failure@GLIBC_2.2.5")
__asm__(".symver argp_help argp_help@GLIBC_2.2.5")
__asm__(".symver argp_parse argp_parse@GLIBC_2.2.5")
__asm__(".symver argp_program_bug_address argp_program_bug_address@GLIBC_2.2.5")
__asm__(".symver argp_program_version argp_program_version@GLIBC_2.2.5")
__asm__(".symver argp_program_version_hook argp_program_version_hook@GLIBC_2.2.5")
__asm__(".symver argp_state_help argp_state_help@GLIBC_2.2.5")
__asm__(".symver argp_usage argp_usage@GLIBC_2.2.5")
__asm__(".symver argz_add argz_add@GLIBC_2.2.5")
__asm__(".symver argz_add_sep argz_add_sep@GLIBC_2.2.5")
__asm__(".symver argz_append argz_append@GLIBC_2.2.5")
__asm__(".symver argz_count argz_count@GLIBC_2.2.5")
__asm__(".symver argz_create argz_create@GLIBC_2.2.5")
__asm__(".symver argz_create_sep argz_create_sep@GLIBC_2.2.5")
__asm__(".symver argz_delete argz_delete@GLIBC_2.2.5")
__asm__(".symver argz_extract argz_extract@GLIBC_2.2.5")
__asm__(".symver argz_insert argz_insert@GLIBC_2.2.5")
__asm__(".symver argz_next argz_next@GLIBC_2.2.5")
__asm__(".symver argz_replace argz_replace@GLIBC_2.2.5")
__asm__(".symver argz_stringify argz_stringify@GLIBC_2.2.5")
__asm__(".symver asctime asctime@GLIBC_2.2.5")
__asm__(".symver asctime_r asctime_r@GLIBC_2.2.5")
__asm__(".symver asprintf asprintf@GLIBC_2.2.5")
__asm__(".symver atof atof@GLIBC_2.2.5")
__asm__(".symver atoi atoi@GLIBC_2.2.5")
__asm__(".symver atol atol@GLIBC_2.2.5")
__asm__(".symver atoll atoll@GLIBC_2.2.5")
__asm__(".symver authdes_create authdes_create@GLIBC_2.2.5")
__asm__(".symver authdes_getucred authdes_getucred@GLIBC_2.2.5")
__asm__(".symver authdes_pk_create authdes_pk_create@GLIBC_2.2.5")
__asm__(".symver authnone_create authnone_create@GLIBC_2.2.5")
__asm__(".symver authunix_create authunix_create@GLIBC_2.2.5")
__asm__(".symver authunix_create_default authunix_create_default@GLIBC_2.2.5")
__asm__(".symver backtrace backtrace@GLIBC_2.2.5")
__asm__(".symver backtrace_symbols backtrace_symbols@GLIBC_2.2.5")
__asm__(".symver backtrace_symbols_fd backtrace_symbols_fd@GLIBC_2.2.5")
__asm__(".symver basename basename@GLIBC_2.2.5")
__asm__(".symver bcmp bcmp@GLIBC_2.2.5")
__asm__(".symver bcopy bcopy@GLIBC_2.2.5")
__asm__(".symver bdflush bdflush@GLIBC_2.2.5")
__asm__(".symver bind bind@GLIBC_2.2.5")
__asm__(".symver bind_textdomain_codeset bind_textdomain_codeset@GLIBC_2.2.5")
__asm__(".symver bindresvport bindresvport@GLIBC_2.2.5")
__asm__(".symver bindtextdomain bindtextdomain@GLIBC_2.2.5")
__asm__(".symver brk brk@GLIBC_2.2.5")
__asm__(".symver bsd_signal bsd_signal@GLIBC_2.2.5")
__asm__(".symver bsearch bsearch@GLIBC_2.2.5")
__asm__(".symver btowc btowc@GLIBC_2.2.5")
__asm__(".symver bzero bzero@GLIBC_2.2.5")
__asm__(".symver c16rtomb c16rtomb@GLIBC_2.16")
__asm__(".symver c32rtomb c32rtomb@GLIBC_2.16")
__asm__(".symver calloc calloc@GLIBC_2.2.5")
__asm__(".symver callrpc callrpc@GLIBC_2.2.5")
__asm__(".symver canonicalize_file_name canonicalize_file_name@GLIBC_2.2.5")
__asm__(".symver capget capget@GLIBC_2.2.5")
__asm__(".symver capset capset@GLIBC_2.2.5")
__asm__(".symver catclose catclose@GLIBC_2.2.5")
__asm__(".symver catgets catgets@GLIBC_2.2.5")
__asm__(".symver catopen catopen@GLIBC_2.2.5")
__asm__(".symver cbc_crypt cbc_crypt@GLIBC_2.2.5")
__asm__(".symver cfgetispeed cfgetispeed@GLIBC_2.2.5")
__asm__(".symver cfgetospeed cfgetospeed@GLIBC_2.2.5")
__asm__(".symver cfmakeraw cfmakeraw@GLIBC_2.2.5")
__asm__(".symver cfree cfree@GLIBC_2.2.5")
__asm__(".symver cfsetispeed cfsetispeed@GLIBC_2.2.5")
__asm__(".symver cfsetospeed cfsetospeed@GLIBC_2.2.5")
__asm__(".symver cfsetspeed cfsetspeed@GLIBC_2.2.5")
__asm__(".symver chdir chdir@GLIBC_2.2.5")
__asm__(".symver chflags chflags@GLIBC_2.2.5")
__asm__(".symver chmod chmod@GLIBC_2.2.5")
__asm__(".symver chown chown@GLIBC_2.2.5")
__asm__(".symver chroot chroot@GLIBC_2.2.5")
__asm__(".symver clearenv clearenv@GLIBC_2.2.5")
__asm__(".symver clearerr clearerr@GLIBC_2.2.5")
__asm__(".symver clearerr_unlocked clearerr_unlocked@GLIBC_2.2.5")
__asm__(".symver clnt_broadcast clnt_broadcast@GLIBC_2.2.5")
__asm__(".symver clnt_create clnt_create@GLIBC_2.2.5")
__asm__(".symver clnt_pcreateerror clnt_pcreateerror@GLIBC_2.2.5")
__asm__(".symver clnt_perrno clnt_perrno@GLIBC_2.2.5")
__asm__(".symver clnt_perror clnt_perror@GLIBC_2.2.5")
__asm__(".symver clnt_spcreateerror clnt_spcreateerror@GLIBC_2.2.5")
__asm__(".symver clnt_sperrno clnt_sperrno@GLIBC_2.2.5")
__asm__(".symver clnt_sperror clnt_sperror@GLIBC_2.2.5")
__asm__(".symver clntraw_create clntraw_create@GLIBC_2.2.5")
__asm__(".symver clnttcp_create clnttcp_create@GLIBC_2.2.5")
__asm__(".symver clntudp_bufcreate clntudp_bufcreate@GLIBC_2.2.5")
__asm__(".symver clntudp_create clntudp_create@GLIBC_2.2.5")
__asm__(".symver clntunix_create clntunix_create@GLIBC_2.2.5")
__asm__(".symver clock clock@GLIBC_2.2.5")
__asm__(".symver clock_adjtime clock_adjtime@GLIBC_2.14")
__asm__(".symver clock_getcpuclockid clock_getcpuclockid@GLIBC_2.17")
__asm__(".symver clock_getres clock_getres@GLIBC_2.17")
__asm__(".symver clock_gettime clock_gettime@GLIBC_2.17")
__asm__(".symver clock_nanosleep clock_nanosleep@GLIBC_2.17")
__asm__(".symver clock_settime clock_settime@GLIBC_2.17")
__asm__(".symver clone clone@GLIBC_2.2.5")
__asm__(".symver close close@GLIBC_2.2.5")
__asm__(".symver closedir closedir@GLIBC_2.2.5")
__asm__(".symver closelog closelog@GLIBC_2.2.5")
__asm__(".symver confstr confstr@GLIBC_2.2.5")
__asm__(".symver connect connect@GLIBC_2.2.5")
__asm__(".symver copy_file_range copy_file_range@GLIBC_2.27")
__asm__(".symver copysign copysign@GLIBC_2.2.5")
__asm__(".symver copysignf copysignf@GLIBC_2.2.5")
__asm__(".symver copysignl copysignl@GLIBC_2.2.5")
__asm__(".symver creat creat@GLIBC_2.2.5")
__asm__(".symver creat64 creat64@GLIBC_2.2.5")
__asm__(".symver create_module create_module@GLIBC_2.2.5")
__asm__(".symver ctermid ctermid@GLIBC_2.2.5")
__asm__(".symver ctime ctime@GLIBC_2.2.5")
__asm__(".symver ctime_r ctime_r@GLIBC_2.2.5")
__asm__(".symver cuserid cuserid@GLIBC_2.2.5")
__asm__(".symver daemon daemon@GLIBC_2.2.5")
__asm__(".symver daylight daylight@GLIBC_2.2.5")
__asm__(".symver dcgettext dcgettext@GLIBC_2.2.5")
__asm__(".symver dcngettext dcngettext@GLIBC_2.2.5")
__asm__(".symver delete_module delete_module@GLIBC_2.2.5")
__asm__(".symver des_setparity des_setparity@GLIBC_2.2.5")
__asm__(".symver dgettext dgettext@GLIBC_2.2.5")
__asm__(".symver difftime difftime@GLIBC_2.2.5")
__asm__(".symver dirfd dirfd@GLIBC_2.2.5")
__asm__(".symver dirname dirname@GLIBC_2.2.5")
__asm__(".symver div div@GLIBC_2.2.5")
__asm__(".symver dl_iterate_phdr dl_iterate_phdr@GLIBC_2.2.5")
__asm__(".symver dngettext dngettext@GLIBC_2.2.5")
__asm__(".symver dprintf dprintf@GLIBC_2.2.5")
__asm__(".symver drand48 drand48@GLIBC_2.2.5")
__asm__(".symver drand48_r drand48_r@GLIBC_2.2.5")
__asm__(".symver dup dup@GLIBC_2.2.5")
__asm__(".symver dup2 dup2@GLIBC_2.2.5")
__asm__(".symver dup3 dup3@GLIBC_2.9")
__asm__(".symver duplocale duplocale@GLIBC_2.3")
__asm__(".symver dysize dysize@GLIBC_2.2.5")
__asm__(".symver eaccess eaccess@GLIBC_2.4")
__asm__(".symver ecb_crypt ecb_crypt@GLIBC_2.2.5")
__asm__(".symver ecvt ecvt@GLIBC_2.2.5")
__asm__(".symver ecvt_r ecvt_r@GLIBC_2.2.5")
__asm__(".symver endaliasent endaliasent@GLIBC_2.2.5")
__asm__(".symver endfsent endfsent@GLIBC_2.2.5")
__asm__(".symver endgrent endgrent@GLIBC_2.2.5")
__asm__(".symver endhostent endhostent@GLIBC_2.2.5")
__asm__(".symver endmntent endmntent@GLIBC_2.2.5")
__asm__(".symver endnetent endnetent@GLIBC_2.2.5")
__asm__(".symver endnetgrent endnetgrent@GLIBC_2.2.5")
__asm__(".symver endprotoent endprotoent@GLIBC_2.2.5")
__asm__(".symver endpwent endpwent@GLIBC_2.2.5")
__asm__(".symver endrpcent endrpcent@GLIBC_2.2.5")
__asm__(".symver endservent endservent@GLIBC_2.2.5")
__asm__(".symver endsgent endsgent@GLIBC_2.10")
__asm__(".symver endspent endspent@GLIBC_2.2.5")
__asm__(".symver endttyent endttyent@GLIBC_2.2.5")
__asm__(".symver endusershell endusershell@GLIBC_2.2.5")
__asm__(".symver endutent endutent@GLIBC_2.2.5")
__asm__(".symver endutxent endutxent@GLIBC_2.2.5")
__asm__(".symver environ environ@GLIBC_2.2.5")
__asm__(".symver envz_add envz_add@GLIBC_2.2.5")
__asm__(".symver envz_entry envz_entry@GLIBC_2.2.5")
__asm__(".symver envz_get envz_get@GLIBC_2.2.5")
__asm__(".symver envz_merge envz_merge@GLIBC_2.2.5")
__asm__(".symver envz_remove envz_remove@GLIBC_2.2.5")
__asm__(".symver envz_strip envz_strip@GLIBC_2.2.5")
__asm__(".symver epoll_create epoll_create@GLIBC_2.3.2")
__asm__(".symver epoll_create1 epoll_create1@GLIBC_2.9")
__asm__(".symver epoll_ctl epoll_ctl@GLIBC_2.3.2")
__asm__(".symver epoll_pwait epoll_pwait@GLIBC_2.6")
__asm__(".symver epoll_wait epoll_wait@GLIBC_2.3.2")
__asm__(".symver erand48 erand48@GLIBC_2.2.5")
__asm__(".symver erand48_r erand48_r@GLIBC_2.2.5")
__asm__(".symver err err@GLIBC_2.2.5")
__asm__(".symver error error@GLIBC_2.2.5")
__asm__(".symver error_at_line error_at_line@GLIBC_2.2.5")
__asm__(".symver error_message_count error_message_count@GLIBC_2.2.5")
__asm__(".symver error_one_per_line error_one_per_line@GLIBC_2.2.5")
__asm__(".symver error_print_progname error_print_progname@GLIBC_2.2.5")
__asm__(".symver errx errx@GLIBC_2.2.5")
__asm__(".symver ether_aton ether_aton@GLIBC_2.2.5")
__asm__(".symver ether_aton_r ether_aton_r@GLIBC_2.2.5")
__asm__(".symver ether_hostton ether_hostton@GLIBC_2.2.5")
__asm__(".symver ether_line ether_line@GLIBC_2.2.5")
__asm__(".symver ether_ntoa ether_ntoa@GLIBC_2.2.5")
__asm__(".symver ether_ntoa_r ether_ntoa_r@GLIBC_2.2.5")
__asm__(".symver ether_ntohost ether_ntohost@GLIBC_2.2.5")
__asm__(".symver euidaccess euidaccess@GLIBC_2.2.5")
__asm__(".symver eventfd eventfd@GLIBC_2.7")
__asm__(".symver eventfd_read eventfd_read@GLIBC_2.7")
__asm__(".symver eventfd_write eventfd_write@GLIBC_2.7")
__asm__(".symver execl execl@GLIBC_2.2.5")
__asm__(".symver execle execle@GLIBC_2.2.5")
__asm__(".symver execlp execlp@GLIBC_2.2.5")
__asm__(".symver execv execv@GLIBC_2.2.5")
__asm__(".symver execve execve@GLIBC_2.2.5")
__asm__(".symver execvp execvp@GLIBC_2.2.5")
__asm__(".symver execvpe execvpe@GLIBC_2.11")
__asm__(".symver exit exit@GLIBC_2.2.5")
__asm__(".symver explicit_bzero explicit_bzero@GLIBC_2.25")
__asm__(".symver faccessat faccessat@GLIBC_2.4")
__asm__(".symver fallocate fallocate@GLIBC_2.10")
__asm__(".symver fallocate64 fallocate64@GLIBC_2.10")
__asm__(".symver fanotify_init fanotify_init@GLIBC_2.13")
__asm__(".symver fanotify_mark fanotify_mark@GLIBC_2.13")
__asm__(".symver fattach fattach@GLIBC_2.2.5")
__asm__(".symver fchdir fchdir@GLIBC_2.2.5")
__asm__(".symver fchflags fchflags@GLIBC_2.2.5")
__asm__(".symver fchmod fchmod@GLIBC_2.2.5")
__asm__(".symver fchmodat fchmodat@GLIBC_2.4")
__asm__(".symver fchown fchown@GLIBC_2.2.5")
__asm__(".symver fchownat fchownat@GLIBC_2.4")
__asm__(".symver fclose fclose@GLIBC_2.2.5")
__asm__(".symver fcloseall fcloseall@GLIBC_2.2.5")
__asm__(".symver fcntl fcntl@GLIBC_2.2.5")
__asm__(".symver fcntl64 fcntl64@GLIBC_2.28")
__asm__(".symver fcvt fcvt@GLIBC_2.2.5")
__asm__(".symver fcvt_r fcvt_r@GLIBC_2.2.5")
__asm__(".symver fdatasync fdatasync@GLIBC_2.2.5")
__asm__(".symver fdetach fdetach@GLIBC_2.2.5")
__asm__(".symver fdopen fdopen@GLIBC_2.2.5")
__asm__(".symver fdopendir fdopendir@GLIBC_2.4")
__asm__(".symver feof feof@GLIBC_2.2.5")
__asm__(".symver feof_unlocked feof_unlocked@GLIBC_2.2.5")
__asm__(".symver ferror ferror@GLIBC_2.2.5")
__asm__(".symver ferror_unlocked ferror_unlocked@GLIBC_2.2.5")
__asm__(".symver fexecve fexecve@GLIBC_2.2.5")
__asm__(".symver fflush fflush@GLIBC_2.2.5")
__asm__(".symver fflush_unlocked fflush_unlocked@GLIBC_2.2.5")
__asm__(".symver ffs ffs@GLIBC_2.2.5")
__asm__(".symver ffsl ffsl@GLIBC_2.2.5")
__asm__(".symver ffsll ffsll@GLIBC_2.2.5")
__asm__(".symver fgetc fgetc@GLIBC_2.2.5")
__asm__(".symver fgetc_unlocked fgetc_unlocked@GLIBC_2.2.5")
__asm__(".symver fgetgrent fgetgrent@GLIBC_2.2.5")
__asm__(".symver fgetgrent_r fgetgrent_r@GLIBC_2.2.5")
__asm__(".symver fgetpos fgetpos@GLIBC_2.2.5")
__asm__(".symver fgetpos64 fgetpos64@GLIBC_2.2.5")
__asm__(".symver fgetpwent fgetpwent@GLIBC_2.2.5")
__asm__(".symver fgetpwent_r fgetpwent_r@GLIBC_2.2.5")
__asm__(".symver fgets fgets@GLIBC_2.2.5")
__asm__(".symver fgets_unlocked fgets_unlocked@GLIBC_2.2.5")
__asm__(".symver fgetsgent fgetsgent@GLIBC_2.10")
__asm__(".symver fgetsgent_r fgetsgent_r@GLIBC_2.10")
__asm__(".symver fgetspent fgetspent@GLIBC_2.2.5")
__asm__(".symver fgetspent_r fgetspent_r@GLIBC_2.2.5")
__asm__(".symver fgetwc fgetwc@GLIBC_2.2.5")
__asm__(".symver fgetwc_unlocked fgetwc_unlocked@GLIBC_2.2.5")
__asm__(".symver fgetws fgetws@GLIBC_2.2.5")
__asm__(".symver fgetws_unlocked fgetws_unlocked@GLIBC_2.2.5")
__asm__(".symver fgetxattr fgetxattr@GLIBC_2.3")
__asm__(".symver fileno fileno@GLIBC_2.2.5")
__asm__(".symver fileno_unlocked fileno_unlocked@GLIBC_2.2.5")
__asm__(".symver finite finite@GLIBC_2.2.5")
__asm__(".symver finitef finitef@GLIBC_2.2.5")
__asm__(".symver finitel finitel@GLIBC_2.2.5")
__asm__(".symver flistxattr flistxattr@GLIBC_2.3")
__asm__(".symver flock flock@GLIBC_2.2.5")
__asm__(".symver flockfile flockfile@GLIBC_2.2.5")
__asm__(".symver fmemopen fmemopen@GLIBC_2.22")
__asm__(".symver fmtmsg fmtmsg@GLIBC_2.2.5")
__asm__(".symver fnmatch fnmatch@GLIBC_2.2.5")
__asm__(".symver fopen fopen@GLIBC_2.2.5")
__asm__(".symver fopen64 fopen64@GLIBC_2.2.5")
__asm__(".symver fopencookie fopencookie@GLIBC_2.2.5")
__asm__(".symver fork fork@GLIBC_2.2.5")
__asm__(".symver fpathconf fpathconf@GLIBC_2.2.5")
__asm__(".symver fprintf fprintf@GLIBC_2.2.5")
__asm__(".symver fputc fputc@GLIBC_2.2.5")
__asm__(".symver fputc_unlocked fputc_unlocked@GLIBC_2.2.5")
__asm__(".symver fputs fputs@GLIBC_2.2.5")
__asm__(".symver fputs_unlocked fputs_unlocked@GLIBC_2.2.5")
__asm__(".symver fputwc fputwc@GLIBC_2.2.5")
__asm__(".symver fputwc_unlocked fputwc_unlocked@GLIBC_2.2.5")
__asm__(".symver fputws fputws@GLIBC_2.2.5")
__asm__(".symver fputws_unlocked fputws_unlocked@GLIBC_2.2.5")
__asm__(".symver fread fread@GLIBC_2.2.5")
__asm__(".symver fread_unlocked fread_unlocked@GLIBC_2.2.5")
__asm__(".symver free free@GLIBC_2.2.5")
__asm__(".symver freeaddrinfo freeaddrinfo@GLIBC_2.2.5")
__asm__(".symver freeifaddrs freeifaddrs@GLIBC_2.3")
__asm__(".symver freelocale freelocale@GLIBC_2.3")
__asm__(".symver fremovexattr fremovexattr@GLIBC_2.3")
__asm__(".symver freopen freopen@GLIBC_2.2.5")
__asm__(".symver freopen64 freopen64@GLIBC_2.2.5")
__asm__(".symver frexp frexp@GLIBC_2.2.5")
__asm__(".symver frexpf frexpf@GLIBC_2.2.5")
__asm__(".symver frexpl frexpl@GLIBC_2.2.5")
__asm__(".symver fscanf fscanf@GLIBC_2.2.5")
__asm__(".symver fseek fseek@GLIBC_2.2.5")
__asm__(".symver fseeko fseeko@GLIBC_2.2.5")
__asm__(".symver fseeko64 fseeko64@GLIBC_2.2.5")
__asm__(".symver fsetpos fsetpos@GLIBC_2.2.5")
__asm__(".symver fsetpos64 fsetpos64@GLIBC_2.2.5")
__asm__(".symver fsetxattr fsetxattr@GLIBC_2.3")
__asm__(".symver fstatfs fstatfs@GLIBC_2.2.5")
__asm__(".symver fstatfs64 fstatfs64@GLIBC_2.2.5")
__asm__(".symver fstatvfs fstatvfs@GLIBC_2.2.5")
__asm__(".symver fstatvfs64 fstatvfs64@GLIBC_2.2.5")
__asm__(".symver fsync fsync@GLIBC_2.2.5")
__asm__(".symver ftell ftell@GLIBC_2.2.5")
__asm__(".symver ftello ftello@GLIBC_2.2.5")
__asm__(".symver ftello64 ftello64@GLIBC_2.2.5")
__asm__(".symver ftime ftime@GLIBC_2.2.5")
__asm__(".symver ftok ftok@GLIBC_2.2.5")
__asm__(".symver ftruncate ftruncate@GLIBC_2.2.5")
__asm__(".symver ftruncate64 ftruncate64@GLIBC_2.2.5")
__asm__(".symver ftrylockfile ftrylockfile@GLIBC_2.2.5")
__asm__(".symver fts64_children fts64_children@GLIBC_2.23")
__asm__(".symver fts64_close fts64_close@GLIBC_2.23")
__asm__(".symver fts64_open fts64_open@GLIBC_2.23")
__asm__(".symver fts64_read fts64_read@GLIBC_2.23")
__asm__(".symver fts64_set fts64_set@GLIBC_2.23")
__asm__(".symver fts_children fts_children@GLIBC_2.2.5")
__asm__(".symver fts_close fts_close@GLIBC_2.2.5")
__asm__(".symver fts_open fts_open@GLIBC_2.2.5")
__asm__(".symver fts_read fts_read@GLIBC_2.2.5")
__asm__(".symver fts_set fts_set@GLIBC_2.2.5")
__asm__(".symver ftw ftw@GLIBC_2.2.5")
__asm__(".symver ftw64 ftw64@GLIBC_2.2.5")
__asm__(".symver funlockfile funlockfile@GLIBC_2.2.5")
__asm__(".symver futimens futimens@GLIBC_2.6")
__asm__(".symver futimes futimes@GLIBC_2.3")
__asm__(".symver futimesat futimesat@GLIBC_2.4")
__asm__(".symver fwide fwide@GLIBC_2.2.5")
__asm__(".symver fwprintf fwprintf@GLIBC_2.2.5")
__asm__(".symver fwrite fwrite@GLIBC_2.2.5")
__asm__(".symver fwrite_unlocked fwrite_unlocked@GLIBC_2.2.5")
__asm__(".symver fwscanf fwscanf@GLIBC_2.2.5")
__asm__(".symver gai_strerror gai_strerror@GLIBC_2.2.5")
__asm__(".symver gcvt gcvt@GLIBC_2.2.5")
__asm__(".symver get_avphys_pages get_avphys_pages@GLIBC_2.2.5")
__asm__(".symver get_current_dir_name get_current_dir_name@GLIBC_2.2.5")
__asm__(".symver get_kernel_syms get_kernel_syms@GLIBC_2.2.5")
__asm__(".symver get_myaddress get_myaddress@GLIBC_2.2.5")
__asm__(".symver get_nprocs get_nprocs@GLIBC_2.2.5")
__asm__(".symver get_nprocs_conf get_nprocs_conf@GLIBC_2.2.5")
__asm__(".symver get_phys_pages get_phys_pages@GLIBC_2.2.5")
__asm__(".symver getaddrinfo getaddrinfo@GLIBC_2.2.5")
__asm__(".symver getaliasbyname getaliasbyname@GLIBC_2.2.5")
__asm__(".symver getaliasbyname_r getaliasbyname_r@GLIBC_2.2.5")
__asm__(".symver getaliasent getaliasent@GLIBC_2.2.5")
__asm__(".symver getaliasent_r getaliasent_r@GLIBC_2.2.5")
__asm__(".symver getauxval getauxval@GLIBC_2.16")
__asm__(".symver getc getc@GLIBC_2.2.5")
__asm__(".symver getc_unlocked getc_unlocked@GLIBC_2.2.5")
__asm__(".symver getchar getchar@GLIBC_2.2.5")
__asm__(".symver getchar_unlocked getchar_unlocked@GLIBC_2.2.5")
__asm__(".symver getcontext getcontext@GLIBC_2.2.5")
__asm__(".symver getcpu getcpu@GLIBC_2.29")
__asm__(".symver getcwd getcwd@GLIBC_2.2.5")
__asm__(".symver getdate getdate@GLIBC_2.2.5")
__asm__(".symver getdate_err getdate_err@GLIBC_2.2.5")
__asm__(".symver getdate_r getdate_r@GLIBC_2.2.5")
__asm__(".symver getdelim getdelim@GLIBC_2.2.5")
__asm__(".symver getdents64 getdents64@GLIBC_2.30")
__asm__(".symver getdirentries getdirentries@GLIBC_2.2.5")
__asm__(".symver getdirentries64 getdirentries64@GLIBC_2.2.5")
__asm__(".symver getdomainname getdomainname@GLIBC_2.2.5")
__asm__(".symver getdtablesize getdtablesize@GLIBC_2.2.5")
__asm__(".symver getegid getegid@GLIBC_2.2.5")
__asm__(".symver getentropy getentropy@GLIBC_2.25")
__asm__(".symver getenv getenv@GLIBC_2.2.5")
__asm__(".symver geteuid geteuid@GLIBC_2.2.5")
__asm__(".symver getfsent getfsent@GLIBC_2.2.5")
__asm__(".symver getfsfile getfsfile@GLIBC_2.2.5")
__asm__(".symver getfsspec getfsspec@GLIBC_2.2.5")
__asm__(".symver getgid getgid@GLIBC_2.2.5")
__asm__(".symver getgrent getgrent@GLIBC_2.2.5")
__asm__(".symver getgrent_r getgrent_r@GLIBC_2.2.5")
__asm__(".symver getgrgid getgrgid@GLIBC_2.2.5")
__asm__(".symver getgrgid_r getgrgid_r@GLIBC_2.2.5")
__asm__(".symver getgrnam getgrnam@GLIBC_2.2.5")
__asm__(".symver getgrnam_r getgrnam_r@GLIBC_2.2.5")
__asm__(".symver getgrouplist getgrouplist@GLIBC_2.2.5")
__asm__(".symver getgroups getgroups@GLIBC_2.2.5")
__asm__(".symver gethostbyaddr gethostbyaddr@GLIBC_2.2.5")
__asm__(".symver gethostbyaddr_r gethostbyaddr_r@GLIBC_2.2.5")
__asm__(".symver gethostbyname gethostbyname@GLIBC_2.2.5")
__asm__(".symver gethostbyname2 gethostbyname2@GLIBC_2.2.5")
__asm__(".symver gethostbyname2_r gethostbyname2_r@GLIBC_2.2.5")
__asm__(".symver gethostbyname_r gethostbyname_r@GLIBC_2.2.5")
__asm__(".symver gethostent gethostent@GLIBC_2.2.5")
__asm__(".symver gethostent_r gethostent_r@GLIBC_2.2.5")
__asm__(".symver gethostid gethostid@GLIBC_2.2.5")
__asm__(".symver gethostname gethostname@GLIBC_2.2.5")
__asm__(".symver getifaddrs getifaddrs@GLIBC_2.3")
__asm__(".symver getipv4sourcefilter getipv4sourcefilter@GLIBC_2.3.4")
__asm__(".symver getitimer getitimer@GLIBC_2.2.5")
__asm__(".symver getline getline@GLIBC_2.2.5")
__asm__(".symver getloadavg getloadavg@GLIBC_2.2.5")
__asm__(".symver getlogin getlogin@GLIBC_2.2.5")
__asm__(".symver getlogin_r getlogin_r@GLIBC_2.2.5")
__asm__(".symver getmntent getmntent@GLIBC_2.2.5")
__asm__(".symver getmntent_r getmntent_r@GLIBC_2.2.5")
__asm__(".symver getmsg getmsg@GLIBC_2.2.5")
__asm__(".symver getnameinfo getnameinfo@GLIBC_2.2.5")
__asm__(".symver getnetbyaddr getnetbyaddr@GLIBC_2.2.5")
__asm__(".symver getnetbyaddr_r getnetbyaddr_r@GLIBC_2.2.5")
__asm__(".symver getnetbyname getnetbyname@GLIBC_2.2.5")
__asm__(".symver getnetbyname_r getnetbyname_r@GLIBC_2.2.5")
__asm__(".symver getnetent getnetent@GLIBC_2.2.5")
__asm__(".symver getnetent_r getnetent_r@GLIBC_2.2.5")
__asm__(".symver getnetgrent getnetgrent@GLIBC_2.2.5")
__asm__(".symver getnetgrent_r getnetgrent_r@GLIBC_2.2.5")
__asm__(".symver getnetname getnetname@GLIBC_2.2.5")
__asm__(".symver getopt getopt@GLIBC_2.2.5")
__asm__(".symver getopt_long getopt_long@GLIBC_2.2.5")
__asm__(".symver getopt_long_only getopt_long_only@GLIBC_2.2.5")
__asm__(".symver getpagesize getpagesize@GLIBC_2.2.5")
__asm__(".symver getpass getpass@GLIBC_2.2.5")
__asm__(".symver getpeername getpeername@GLIBC_2.2.5")
__asm__(".symver getpgid getpgid@GLIBC_2.2.5")
__asm__(".symver getpgrp getpgrp@GLIBC_2.2.5")
__asm__(".symver getpid getpid@GLIBC_2.2.5")
__asm__(".symver getpmsg getpmsg@GLIBC_2.2.5")
__asm__(".symver getppid getppid@GLIBC_2.2.5")
__asm__(".symver getpriority getpriority@GLIBC_2.2.5")