-
Notifications
You must be signed in to change notification settings - Fork 3
/
blacklist
1655 lines (1655 loc) · 14.6 KB
/
blacklist
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
_exit
_Exit
_flushlbf
_tolower
_toupper
__fbufsize
__flbf
__fpending
__fpurge
__freadable
__freading
__fsetlocking
__fwritable
__fwriting
__ppc_get_timebase
__ppc_get_timebase_freq
__ppc_mdoio
__ppc_mdoom
__ppc_set_ppr_low
__ppc_set_ppr_med
__ppc_set_ppr_med_high
__ppc_set_ppr_med_low
__ppc_set_ppr_very_low
__ppc_yield
__riscv_flush_icache(void
__va_copy
a64l
abort
abs
accept
access
acos
acosf
acosfN
acosfNx
acosh
acoshf
acoshfN
acoshfNx
acoshl
acosl
addmntent
addseverity
adjtime
adjtimex
aio_cancel
aio_cancel64
aio_error
aio_error64
aio_fsync
aio_fsync64
aio_init
aio_read
aio_read64
aio_return
aio_return64
aio_suspend
aio_suspend64
aio_write
aio_write64
alarm
aligned_alloc
alloca
alphasort
alphasort64
argp_error
argp_failure
argp_help
argp_parse
argp_state_help
argp_usage
argz_add
argz_add_sep
argz_append
argz_count
argz_create
argz_create_sep
argz_delete
argz_extract
argz_insert
argz_next
argz_replace
argz_stringify
asctime
asctime_r
asin
asinf
asinfN
asinfNx
asinh
asinhf
asinhfN
asinhfNx
asinhl
asinl
asprintf
assert
assert_perror
atan
atan2
atan2f
atan2fN
atan2fNx
atan2l
atanf
atanfN
atanfNx
atanh
atanhf
atanhfN
atanhfNx
atanhl
atanl
atexit
atof
atoi
atol
atoll
backtrace
backtrace_symbols
backtrace_symbols_fd
basename
basename
bcmp
bcopy
bind
bindtextdomain
bind_textdomain_codeset
brk
bsearch
btowc
bzero
cabs
cabsf
cabsfN
cabsfNx
cabsl
cacos
cacosf
cacosfN
cacosfNx
cacosh
cacoshf
cacoshfN
cacoshfNx
cacoshl
cacosl
calloc
canonicalize
canonicalizef
canonicalizefN
canonicalizefNx
canonicalizel
canonicalize_file_name
carg
cargf
cargfN
cargfNx
cargl
casin
casinf
casinfN
casinfNx
casinh
casinhf
casinhfN
casinhfNx
casinhl
casinl
catan
catanf
catanfN
catanfNx
catanh
catanhf
catanhfN
catanhfNx
catanhl
catanl
catclose
catgets
catopen
cbc_crypt
cbrt
cbrtf
cbrtfN
cbrtfNx
cbrtl
ccos
ccosf
ccosfN
ccosfNx
ccosh
ccoshf
ccoshfN
ccoshfNx
ccoshl
ccosl
ceil
ceilf
ceilfN
ceilfNx
ceill
cexp
cexpf
cexpfN
cexpfNx
cexpl
cfgetispeed
cfgetospeed
cfmakeraw
cfsetispeed
cfsetospeed
cfsetspeed
chdir
chmod
chmod
chown
cimag
cimagf
cimagfN
cimagfNx
cimagl
clearenv
clearerr
clearerr_unlocked
clock
clog
clog10
clog10f
clog10fN
clog10fNx
clog10l
clogf
clogfN
clogfNx
clogl
close
closedir
closelog
confstr
conj
conjf
conjfN
conjfNx
conjl
connect
continue
copysign
copysignf
copysignfN
copysignfNx
copysignl
copy_file_range
cos
cosf
cosfN
cosfNx
cosh
coshf
coshfN
coshfNx
coshl
cosl
cpow
cpowf
cpowfN
cpowfNx
cpowl
cproj
cprojf
cprojfN
cprojfNx
cprojl
CPU_CLR
CPU_ISSET
CPU_SET
CPU_ZERO
creal
crealf
crealfN
crealfNx
creall
creat
creat64
crypt
crypt_r
csin
csinf
csinfN
csinfNx
csinh
csinhf
csinhfN
csinhfNx
csinhl
csinl
csqrt
csqrtf
csqrtfN
csqrtfNx
csqrtl
ctan
ctanf
ctanfN
ctanfNx
ctanh
ctanhf
ctanhfN
ctanhfNx
ctanhl
ctanl
ctermid
ctime
ctime_r
cuserid
dcgettext
dcngettext
DES_FAILED
des_setparity
dgettext
difftime
dirfd
dirname
div
dngettext
drand48
drand48_r
drem
dremf
dreml
DTTOIF
dup
dup2
ecb_crypt
ecvt
ecvt_r
encrypt
encrypt_r
endfsent
endgrent
endhostent
endmntent
endnetent
endnetgrent
endprotoent
endpwent
endservent
endutent
endutxent
envz_add
envz_entry
envz_get
envz_merge
envz_remove
envz_strip
erand48
erand48_r
erf
erfc
erfcf
erfcfN
erfcfNx
erfcl
erff
erffN
erffNx
erfl
err
error
error_at_line
errx
execl
execle
execlp
execv
execve
execvp
exit
exp
exp10
exp10f
exp10fN
exp10fNx
exp10l
exp2
exp2f
exp2fN
exp2fNx
exp2l
expf
expfN
expfNx
expl
explicit_bzero
expm1
expm1f
expm1fN
expm1fNx
expm1l
fabs
fabsf
fabsfN
fabsfNx
fabsl
fchdir
fchmod
fchown
fclose
fcloseall
fcntl
fcvt
fcvt_r
fdatasync
fdim
fdimf
fdimfN
fdimfNx
fdiml
fdopen
fdopendir
FD_CLR
FD_ISSET
FD_SET
FD_ZERO
feclearexcept
fedisableexcept
feenableexcept
fegetenv
fegetexcept
fegetexceptflag
fegetmode
fegetround
feholdexcept
feof
feof_unlocked
feraiseexcept
ferror
ferror_unlocked
fesetenv
fesetexcept
fesetexceptflag
fesetmode
fesetround
fetestexcept
fetestexceptflag
feupdateenv
fflush
fflush_unlocked
fgetc
fgetc_unlocked
fgetgrent
fgetgrent_r
fgetpos
fgetpos64
fgetpwent
fgetpwent_r
fgets
fgets_unlocked
fgetwc
fgetwc_unlocked
fgetws
fgetws_unlocked
fileno
fileno_unlocked
finite
finitef
finitel
flockfile
floor
floorf
floorfN
floorfNx
floorl
fma
fmaf
fmafN
fmafNx
fmal
fmax
fmaxf
fmaxfN
fmaxfNx
fmaxl
fmaxmag
fmaxmagf
fmaxmagfN
fmaxmagfNx
fmaxmagl
fmemopen
fmin
fminf
fminfN
fminfNx
fminl
fminmag
fminmagf
fminmagfN
fminmagfNx
fminmagl
fmod
fmodf
fmodfN
fmodfNx
fmodl
fmtmsg
fnmatch
fopen
fopen64
fopencookie
fork
forkpty
fpathconf
fpclassify
fprintf
fputc
fputc_unlocked
fputs
fputs_unlocked
fputwc
fputwc_unlocked
fputws
fputws_unlocked
fread
fread_unlocked
free
freopen
freopen64
frexp
frexpf
frexpfN
frexpfNx
frexpl
fromfp
fromfpf
fromfpfN
fromfpfNx
fromfpl
fromfpx
fromfpxf
fromfpxfN
fromfpxfNx
fromfpxl
fscanf
fseek
fseeko
fseeko64
fsetpos
fsetpos64
fstat
fstat64
fsync
ftell
ftello
ftello64
ftruncate
ftruncate64
ftrylockfile
ftw
ftw64
funlockfile
futimes
fwide
fwprintf
fwrite
fwrite_unlocked
fwscanf
gamma
gammaf
gammal
gcvt
getauxval
getc
getchar
getchar_unlocked
getcontext
getcwd
getc_unlocked
getdate
getdate_r
getdelim
getdomainnname
getegid
getentropy
getenv
geteuid
getfsent
getfsfile
getfsspec
getgid
getgrent
getgrent_r
getgrgid
getgrgid_r
getgrnam
getgrnam_r
getgrouplist
getgroups
gethostbyaddr
gethostbyaddr_r
gethostbyname
gethostbyname2
gethostbyname2_r
gethostbyname_r
gethostent
gethostid
gethostname
getitimer
getline
getloadavg
getlogin
getmntent
getmntent_r
getnetbyaddr
getnetbyname
getnetent
getnetgrent
getnetgrent_r
getopt
getopt_long
getopt_long_only
getpagesize
getpass
getpayload
getpayloadf
getpayloadfN
getpayloadfNx
getpayloadl
getpeername
getpgid
getpgrp
getpid
getppid
getpriority
getprotobyname
getprotobynumber
getprotoent
getpt
getpwent
getpwent_r
getpwnam
getpwnam_r
getpwuid
getpwuid_r
getrandom
getrlimit
getrlimit64
getrusage
gets
getservbyname
getservbyport
getservent
getsid
getsockname
getsockopt
getsubopt
gettext
gettimeofday
getuid
getumask
getutent
getutent_r
getutid
getutid_r
getutline
getutline_r
getutmp
getutmpx
getutxent
getutxid
getutxline
getw
getwc
getwchar
getwchar_unlocked
getwc_unlocked
getwd
get_avphys_pages
get_current_dir_name
get_nprocs
get_nprocs_conf
get_phys_pages
glob
glob64
globfree
globfree64
gmtime
gmtime_r
grantpt
grantpt
gsignal
gtty
hasmntopt
hcreate
hcreate_r
hdestroy
hdestroy_r
hsearch
hsearch_r
htonl
htons
hypot
hypotf
hypotfN
hypotfNx
hypotl
iconv
iconv_close
iconv_open
IFTODT
if_freenameindex
if_indextoname
if_nameindex
if_nametoindex
ilogb
ilogbf
ilogbfN
ilogbfNx
ilogbl
imaxabs
imaxdiv
index
inet_addr
inet_aton
inet_lnaof
inet_makeaddr
inet_netof
inet_network
inet_ntoa
inet_ntop
inet_pton
initgroups
initstate
initstate_r
innetgr
ioctl
isalnum
isalpha
isascii
isatty
isblank
iscanonical
iscntrl
isdigit
iseqsig
isfinite
isgraph
isgreater
isgreaterequal
isinf
isinff
isinfl
isless
islessequal
islessgreater
islower
isnan
isnan
isnanf
isnanl
isnormal
isprint
ispunct
issignaling
isspace
issubnormal
isunordered
isupper
iswalnum
iswalpha
iswblank
iswcntrl
iswctype
iswdigit
iswgraph
iswlower
iswprint
iswpunct
iswspace
iswupper
iswxdigit
isxdigit
iszero
j0
j0f
j0fN
j0fNx
j0l
j1
j1f
j1fN
j1fNx
j1l
jn
jnf
jnfN
jnfNx
jnl
jrand48
jrand48_r
kill
killpg
l64a
labs
lcong48
lcong48_r
ldexp
ldexpf
ldexpfN
ldexpfNx
ldexpl
ldiv
lfind
lgamma
lgammaf
lgammafN
lgammafNx
lgammafNx_r
lgammafN_r
lgammaf_r
lgammal
lgammal_r
lgamma_r
link
linkat
lio_listio
lio_listio64
listen
llabs
lldiv
llogb
llogbf
llogbfN
llogbfNx
llogbl
llrint
llrintf
llrintfN
llrintfNx
llrintl
llround
llroundf
llroundfN
llroundfNx
llroundl
localeconv
localtime
localtime_r
log
log10
log10f
log10fN
log10fNx
log10l
log1p
log1pf
log1pfN
log1pfNx
log1pl
log2
log2f
log2fN
log2fNx
log2l
logb
logbf
logbfN
logbfNx
logbl
logf
logfN
logfNx
login
login_tty
logl
logout
logwtmp
longjmp
lrand48
lrand48_r
lrint
lrintf
lrintfN
lrintfNx
lrintl
lround
lroundf
lroundfN
lroundfNx
lroundl
lsearch
lseek
lseek64
lstat
lstat64
lutimes
madvise
main
makecontext
mallinfo
malloc
mallopt
mblen
mbrlen
mbrtowc
mbsinit
mbsnrtowcs
mbsrtowcs
mbstowcs
mbtowc
mcheck
memalign
memccpy
memchr
memcmp
memcpy
memfd_create
memfrob
memmem
memmove
mempcpy
memrchr
memset
merge
mkdir
mkdtemp
mkfifo
mknod
mkstemp
mktemp
mktime
mlock
mlock2
mlockall
mmap
mmap64
modf
modff
modffN
modffNx
modfl
mount
mprobe
mprotect
mrand48
mrand48_r
mremap
msync
mtrace
munlock
munlockall
munmap
muntrace
nan
nanf
nanfN
nanfNx
nanl
nanosleep
nearbyint
nearbyintf
nearbyintfN
nearbyintfNx
nearbyintl
nextafter
nextafterf
nextafterfN
nextafterfNx
nextafterl
nextdown
nextdownf
nextdownfN
nextdownfNx
nextdownl
nexttoward
nexttowardf
nexttowardl
nextup
nextupf
nextupfN
nextupfNx
nextupl
nftw
nftw64
ngettext
nice
nl_langinfo
notfound
nrand48
nrand48_r
ntohl
ntohs
ntp_adjtime
ntp_gettime
obstack_1grow
obstack_1grow_fast
obstack_alignment_mask
obstack_alloc
obstack_base
obstack_blank