-
Notifications
You must be signed in to change notification settings - Fork 5
/
wasi-blocklist.txt
1210 lines (1208 loc) · 17 KB
/
wasi-blocklist.txt
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
fun:printf_core
fun:pop_arg
# lines below were imported (latest commit 3c4a3f9 on May 25, 2021) from
# https://github.com/WebAssembly/wasi-libc/raw/main/expected/wasm32-wasi/defined-symbols.txt
fun:_CLOCK_MONOTONIC
fun:_CLOCK_PROCESS_CPUTIME_ID
fun:_CLOCK_REALTIME
fun:_CLOCK_THREAD_CPUTIME_ID
fun:_Exit
fun:_IO_feof_unlocked
fun:_IO_ferror_unlocked
fun:_IO_getc
fun:_IO_getc_unlocked
fun:_IO_putc
fun:_IO_putc_unlocked
fun:__EINVAL
fun:__ENOMEM
fun:__SIG_ERR
fun:__SIG_IGN
fun:__asctime_r
fun:__assert_fail
fun:__c_dot_utf8
fun:__c_dot_utf8_locale
fun:__c_locale
fun:__clock
fun:__clock_gettime
fun:__cos
fun:__cosdf
fun:__cosl
fun:__crypt_blowfish
fun:__crypt_des
fun:__crypt_md5
fun:__crypt_r
fun:__crypt_sha256
fun:__crypt_sha512
fun:__ctype_b_loc
fun:__ctype_get_mb_cur_max
fun:__ctype_tolower_loc
fun:__ctype_toupper_loc
fun:__cxa_atexit
fun:__cxa_finalize
fun:__des_setkey
fun:__do_des
fun:__duplocale
fun:__env_rm_add
fun:__env_rm_add
fun:__env_rm_add
fun:__env_rm_add
fun:__exp2f_data
fun:__exp_data
fun:__expo2
fun:__expo2f
fun:__fbufsize
fun:__fclose_ca
fun:__fdopen
fun:__fesetround
fun:__fgetwc_unlocked
fun:__flbf
fun:__floatscan
fun:__fmodeflags
fun:__fopen_rb_ca
fun:__fpending
fun:__fpurge
fun:__fputwc_unlocked
fun:__freadable
fun:__freadahead
fun:__freading
fun:__freadptr
fun:__freadptrinc
fun:__freelocale
fun:__fseeko
fun:__fseeko_unlocked
fun:__fseterr
fun:__fsetlocking
fun:__fsmu8
fun:__ftello
fun:__ftello_unlocked
fun:__funcs_on_exit
fun:__funcs_on_exit
fun:__funcs_on_quick_exit
fun:__funcs_on_quick_exit
fun:__fwritable
fun:__fwritex
fun:__fwriting
fun:__get_locale
fun:__getdelim
fun:__getentropy
fun:__getopt_msg
fun:__gmtime_r
fun:__hwcap
fun:__inet_aton
fun:__intscan
fun:__invtrigl_R
fun:__isalnum_l
fun:__isalpha_l
fun:__isatty
fun:__isblank_l
fun:__iscntrl_l
fun:__isdigit_l
fun:__isgraph_l
fun:__islower_l
fun:__isoc99_fscanf
fun:__isoc99_fwscanf
fun:__isoc99_scanf
fun:__isoc99_sscanf
fun:__isoc99_swscanf
fun:__isoc99_vfscanf
fun:__isoc99_vfwscanf
fun:__isoc99_vscanf
fun:__isoc99_vsscanf
fun:__isoc99_vswscanf
fun:__isoc99_vwscanf
fun:__isoc99_wscanf
fun:__isprint_l
fun:__ispunct_l
fun:__isspace_l
fun:__isupper_l
fun:__iswalnum_l
fun:__iswalpha_l
fun:__iswblank_l
fun:__iswcntrl_l
fun:__iswctype_l
fun:__iswdigit_l
fun:__iswgraph_l
fun:__iswlower_l
fun:__iswprint_l
fun:__iswpunct_l
fun:__iswspace_l
fun:__iswupper_l
fun:__iswxdigit_l
fun:__isxdigit_l
fun:__lctrans
fun:__lctrans_cur
fun:__lctrans_impl
fun:__lctrans_impl
fun:__ldexp_cexp
fun:__ldexp_cexpf
fun:__lgamma_r
fun:__lgammaf_r
fun:__lgammal_r
fun:__libc
fun:__libc_calloc
fun:__libc_free
fun:__libc_malloc
fun:__loc_is_allocated
fun:__localtime_r
fun:__log2_data
fun:__log2f_data
fun:__log_data
fun:__logf_data
fun:__lseek
fun:__main_argc_argv
fun:__main_void
fun:__math_divzero
fun:__math_divzerof
fun:__math_invalid
fun:__math_invalidf
fun:__math_invalidl
fun:__math_oflow
fun:__math_oflowf
fun:__math_uflow
fun:__math_uflowf
fun:__math_xflow
fun:__math_xflowf
fun:__memrchr
fun:__mo_lookup
fun:__month_to_secs
fun:__newlocale
fun:__nl_langinfo
fun:__nl_langinfo_l
fun:__ofl_add
fun:__ofl_lock
fun:__ofl_unlock
fun:__optpos
fun:__optreset
fun:__original_main
fun:__overflow
fun:__p1evll
fun:__pio2_hi
fun:__pio2_lo
fun:__pleval
fun:__polevll
fun:__posix_getopt
fun:__pow_log_data
fun:__powf_log2_data
fun:__progname
fun:__progname_full
fun:__putenv
fun:__rand48_step
fun:__reallocarray
fun:__rem_pio2
fun:__rem_pio2_large
fun:__rem_pio2f
fun:__rem_pio2l
fun:__rsqrt_tab
fun:__secs_to_tm
fun:__secs_to_zone
fun:__seed48
fun:__shgetc
fun:__shlim
fun:__signgam
fun:__sin
fun:__sindf
fun:__sinl
fun:__small_printf
fun:__stderr_FILE
fun:__stderr_used
fun:__stderr_used
fun:__stderr_used
fun:__stdin_FILE
fun:__stdin_used
fun:__stdin_used
fun:__stdio_close
fun:__stdio_exit
fun:__stdio_exit
fun:__stdio_exit_needed
fun:__stdio_read
fun:__stdio_seek
fun:__stdio_write
fun:__stdout_FILE
fun:__stdout_used
fun:__stdout_used
fun:__stdout_used
fun:__stdout_write
fun:__stpcpy
fun:__stpncpy
fun:__strcasecmp_l
fun:__strchrnul
fun:__strcoll_l
fun:__strerror_l
fun:__strftime_fmt_1
fun:__strftime_l
fun:__strncasecmp_l
fun:__strtoimax_internal
fun:__strtol_internal
fun:__strtoll_internal
fun:__strtoul_internal
fun:__strtoull_internal
fun:__strtoumax_internal
fun:__strxfrm_l
fun:__sysinfo
fun:__sysv_signal
fun:__tan
fun:__tandf
fun:__tanl
fun:__tm_to_secs
fun:__tm_to_tzname
fun:__tolower_l
fun:__toread
fun:__toread_needs_stdio_exit
fun:__toupper_l
fun:__towctrans_l
fun:__towlower_l
fun:__towrite
fun:__towrite_needs_stdio_exit
fun:__towupper_l
fun:__tre_mem_alloc_impl
fun:__tre_mem_destroy
fun:__tre_mem_new_impl
fun:__tsearch_balance
fun:__uflow
fun:__unlist_locked_file
fun:__uselocale
fun:__utc
fun:__wasi_args_get
fun:__wasi_args_sizes_get
fun:__wasi_clock_res_get
fun:__wasi_clock_time_get
fun:__wasi_environ_get
fun:__wasi_environ_sizes_get
fun:__wasi_fd_advise
fun:__wasi_fd_allocate
fun:__wasi_fd_close
fun:__wasi_fd_datasync
fun:__wasi_fd_fdstat_get
fun:__wasi_fd_fdstat_set_flags
fun:__wasi_fd_fdstat_set_rights
fun:__wasi_fd_filestat_get
fun:__wasi_fd_filestat_set_size
fun:__wasi_fd_filestat_set_times
fun:__wasi_fd_pread
fun:__wasi_fd_prestat_dir_name
fun:__wasi_fd_prestat_get
fun:__wasi_fd_pwrite
fun:__wasi_fd_read
fun:__wasi_fd_readdir
fun:__wasi_fd_renumber
fun:__wasi_fd_seek
fun:__wasi_fd_sync
fun:__wasi_fd_tell
fun:__wasi_fd_write
fun:__wasi_path_create_directory
fun:__wasi_path_filestat_get
fun:__wasi_path_filestat_set_times
fun:__wasi_path_link
fun:__wasi_path_open
fun:__wasi_path_readlink
fun:__wasi_path_remove_directory
fun:__wasi_path_rename
fun:__wasi_path_symlink
fun:__wasi_path_unlink_file
fun:__wasi_poll_oneoff
fun:__wasi_proc_exit
fun:__wasi_proc_raise
fun:__wasi_random_get
fun:__wasi_sched_yield
fun:__wasi_sock_recv
fun:__wasi_sock_send
fun:__wasi_sock_shutdown
fun:__wasilibc_access
fun:__wasilibc_cwd
fun:__wasilibc_deinitialize_environ
fun:__wasilibc_ensure_environ
fun:__wasilibc_environ
fun:__wasilibc_environ
fun:__wasilibc_fd_renumber
fun:__wasilibc_find_abspath
fun:__wasilibc_find_relpath
fun:__wasilibc_find_relpath_alloc
fun:__wasilibc_get_environ
fun:__wasilibc_initialize_environ
fun:__wasilibc_link
fun:__wasilibc_link_newat
fun:__wasilibc_link_oldat
fun:__wasilibc_maybe_reinitialize_environ_eagerly
fun:__wasilibc_maybe_reinitialize_environ_eagerly
fun:__wasilibc_nocwd___wasilibc_rmdirat
fun:__wasilibc_nocwd___wasilibc_unlinkat
fun:__wasilibc_nocwd_faccessat
fun:__wasilibc_nocwd_fstatat
fun:__wasilibc_nocwd_linkat
fun:__wasilibc_nocwd_mkdirat_nomode
fun:__wasilibc_nocwd_openat_nomode
fun:__wasilibc_nocwd_opendirat
fun:__wasilibc_nocwd_readlinkat
fun:__wasilibc_nocwd_renameat
fun:__wasilibc_nocwd_scandirat
fun:__wasilibc_nocwd_symlinkat
fun:__wasilibc_nocwd_utimensat
fun:__wasilibc_open_nomode
fun:__wasilibc_register_preopened_fd
fun:__wasilibc_rename_newat
fun:__wasilibc_rename_oldat
fun:__wasilibc_rmdirat
fun:__wasilibc_stat
fun:__wasilibc_tell
fun:__wasilibc_unlinkat
fun:__wasilibc_utimens
fun:__wasm_call_dtors
fun:__wcscoll_l
fun:__wcsftime_l
fun:__wcsxfrm_l
fun:__wctrans_l
fun:__wctype_l
fun:__xpg_basename
fun:__xpg_strerror_r
fun:__year_to_secs
fun:_environ
fun:_exit
fun:_flushlbf
fun:_initialize
fun:_start
fun:_start
fun:a64l
fun:abort
fun:abs
fun:access
fun:acos
fun:acosf
fun:acosh
fun:acoshf
fun:acoshl
fun:acosl
fun:aligned_alloc
fun:alphasort
fun:alphasort64
fun:arc4random
fun:arc4random_buf
fun:arc4random_uniform
fun:asctime
fun:asctime_r
fun:asin
fun:asinf
fun:asinh
fun:asinhf
fun:asinhl
fun:asinl
fun:asprintf
fun:at_quick_exit
fun:atan
fun:atan2
fun:atan2f
fun:atan2l
fun:atanf
fun:atanh
fun:atanhf
fun:atanhl
fun:atanl
fun:atexit
fun:atof
fun:atoi
fun:atol
fun:atoll
fun:basename
fun:bcmp
fun:bcopy
fun:bsd_signal
fun:bsearch
fun:btowc
fun:bzero
fun:c16rtomb
fun:c32rtomb
fun:cabs
fun:cabsf
fun:cabsl
fun:cacos
fun:cacosf
fun:cacosh
fun:cacoshf
fun:cacoshl
fun:cacosl
fun:calloc
fun:carg
fun:cargf
fun:cargl
fun:casin
fun:casinf
fun:casinh
fun:casinhf
fun:casinhl
fun:casinl
fun:catan
fun:catanf
fun:catanh
fun:catanhf
fun:catanhl
fun:catanl
fun:catclose
fun:catgets
fun:catopen
fun:cbrt
fun:cbrtf
fun:cbrtl
fun:ccos
fun:ccosf
fun:ccosh
fun:ccoshf
fun:ccoshl
fun:ccosl
fun:ceil
fun:ceilf
fun:ceill
fun:cexp
fun:cexpf
fun:cexpl
fun:chdir
fun:cimag
fun:cimagf
fun:cimagl
fun:clearenv
fun:clearerr
fun:clearerr_unlocked
fun:clock
fun:clock_getres
fun:clock_gettime
fun:clock_nanosleep
fun:clog
fun:clogf
fun:clogl
fun:close
fun:closedir
fun:confstr
fun:conj
fun:conjf
fun:conjl
fun:copysign
fun:copysignf
fun:copysignl
fun:cos
fun:cosf
fun:cosh
fun:coshf
fun:coshl
fun:cosl
fun:cpow
fun:cpowf
fun:cpowl
fun:cproj
fun:cprojf
fun:cprojl
fun:creal
fun:crealf
fun:creall
fun:creat
fun:creat64
fun:crypt
fun:crypt_r
fun:csin
fun:csinf
fun:csinh
fun:csinhf
fun:csinhl
fun:csinl
fun:csqrt
fun:csqrtf
fun:csqrtl
fun:ctan
fun:ctanf
fun:ctanh
fun:ctanhf
fun:ctanhl
fun:ctanl
fun:ctime
fun:ctime_r
fun:difftime
fun:dirfd
fun:dirname
fun:div
fun:dprintf
fun:drand48
fun:drem
fun:dremf
fun:duplocale
fun:ecvt
fun:encrypt
fun:environ
fun:erand48
fun:erf
fun:erfc
fun:erfcf
fun:erfcl
fun:erff
fun:erfl
fun:errno
fun:exit
fun:exp
fun:exp10
fun:exp10f
fun:exp10l
fun:exp2
fun:exp2f
fun:exp2l
fun:expf
fun:expl
fun:explicit_bzero
fun:expm1
fun:expm1f
fun:expm1l
fun:fabs
fun:fabsf
fun:fabsl
fun:faccessat
fun:fclose
fun:fcntl
fun:fcvt
fun:fdatasync
fun:fdclosedir
fun:fdim
fun:fdimf
fun:fdiml
fun:fdopen
fun:fdopendir
fun:feclearexcept
fun:fegetenv
fun:fegetexceptflag
fun:fegetround
fun:feholdexcept
fun:feof
fun:feof_unlocked
fun:feraiseexcept
fun:ferror
fun:ferror_unlocked
fun:fesetenv
fun:fesetexceptflag
fun:fesetround
fun:fetestexcept
fun:feupdateenv
fun:fflush
fun:fflush_unlocked
fun:ffs
fun:ffsl
fun:ffsll
fun:fgetc
fun:fgetc_unlocked
fun:fgetln
fun:fgetpos
fun:fgetpos64
fun:fgets
fun:fgets_unlocked
fun:fgetwc
fun:fgetwc_unlocked
fun:fgetws
fun:fgetws_unlocked
fun:fileno
fun:fileno_unlocked
fun:finite
fun:finitef
fun:floor
fun:floorf
fun:floorl
fun:fma
fun:fmaf
fun:fmal
fun:fmax
fun:fmaxf
fun:fmaxl
fun:fmemopen
fun:fmin
fun:fminf
fun:fminl
fun:fmod
fun:fmodf
fun:fmodl
fun:fmtmsg
fun:fnmatch
fun:fopen
fun:fopen64
fun:fopencookie
fun:fpathconf
fun:fprintf
fun:fpurge
fun:fputc
fun:fputc_unlocked
fun:fputs
fun:fputs_unlocked
fun:fputwc
fun:fputwc_unlocked
fun:fputws
fun:fputws_unlocked
fun:fread
fun:fread_unlocked
fun:free
fun:freelocale
fun:freopen
fun:freopen64
fun:frexp
fun:frexpf
fun:frexpl
fun:fscanf
fun:fseek
fun:fseeko
fun:fseeko64
fun:fsetpos
fun:fsetpos64
fun:fstat
fun:fstatat
fun:fsync
fun:ftell
fun:ftello
fun:ftello64
fun:ftime
fun:ftruncate
fun:futimens
fun:fwide
fun:fwprintf
fun:fwrite
fun:fwrite_unlocked
fun:fwscanf
fun:gcvt
fun:get_avphys_pages
fun:get_nprocs
fun:get_nprocs_conf
fun:get_phys_pages
fun:getc
fun:getc_unlocked
fun:getchar
fun:getchar_unlocked
fun:getcwd
fun:getdate
fun:getdate_err
fun:getdelim
fun:getdomainname
fun:getentropy
fun:getenv
fun:gethostid
fun:getline
fun:getopt
fun:getopt_long
fun:getopt_long_only
fun:getpid
fun:getrusage
fun:getsockopt
fun:getsubopt
fun:gettimeofday
fun:getw
fun:getwc
fun:getwc_unlocked
fun:getwchar
fun:getwchar_unlocked
fun:glob
fun:glob64
fun:globfree
fun:globfree64
fun:gmtime
fun:gmtime_r
fun:hcreate
fun:hcreate_r
fun:hdestroy
fun:hdestroy_r
fun:hsearch
fun:hsearch_r
fun:htonl
fun:htons
fun:hypot
fun:hypotf
fun:hypotl
fun:iconv
fun:iconv_close
fun:iconv_open
fun:ilogb
fun:ilogbf
fun:ilogbl
fun:imaxabs
fun:imaxdiv
fun:in6addr_any
fun:in6addr_loopback
fun:index
fun:inet_aton
fun:inet_ntop
fun:inet_pton
fun:initstate
fun:insque
fun:ioctl
fun:iprintf
fun:isalnum
fun:isalnum_l
fun:isalpha
fun:isalpha_l
fun:isascii
fun:isatty
fun:isblank
fun:isblank_l
fun:iscntrl
fun:iscntrl_l
fun:isdigit
fun:isdigit_l
fun:isgraph
fun:isgraph_l
fun:islower
fun:islower_l
fun:isprint
fun:isprint_l
fun:ispunct
fun:ispunct_l
fun:isspace
fun:isspace_l
fun:isupper
fun:isupper_l
fun:iswalnum
fun:iswalnum_l
fun:iswalpha
fun:iswalpha_l
fun:iswblank
fun:iswblank_l
fun:iswcntrl
fun:iswcntrl_l
fun:iswctype
fun:iswctype_l
fun:iswdigit
fun:iswdigit_l
fun:iswgraph
fun:iswgraph_l
fun:iswlower
fun:iswlower_l
fun:iswprint
fun:iswprint_l
fun:iswpunct
fun:iswpunct_l
fun:iswspace
fun:iswspace_l
fun:iswupper
fun:iswupper_l
fun:iswxdigit
fun:iswxdigit_l
fun:isxdigit
fun:isxdigit_l
fun:j0
fun:j0f
fun:j1
fun:j1f
fun:jn
fun:jnf
fun:jrand48
fun:l64a
fun:labs
fun:lcong48
fun:ldexp
fun:ldexpf
fun:ldexpl
fun:ldiv
fun:lfind
fun:lgamma
fun:lgamma_r
fun:lgammaf
fun:lgammaf_r
fun:lgammal
fun:lgammal_r
fun:link
fun:linkat
fun:llabs
fun:lldiv
fun:llrint
fun:llrintf
fun:llrintl
fun:llround
fun:llroundf
fun:llroundl
fun:localeconv
fun:localtime
fun:localtime_r
fun:log
fun:log10
fun:log10f
fun:log10l
fun:log1p
fun:log1pf
fun:log1pl
fun:log2
fun:log2f
fun:log2l
fun:logb
fun:logbf
fun:logbl
fun:logf
fun:logl
fun:lrand48
fun:lrint
fun:lrintf
fun:lrintl
fun:lround
fun:lroundf
fun:lroundl
fun:lsearch
fun:lseek
fun:lstat
fun:malloc
fun:malloc_usable_size
fun:mblen
fun:mbrlen
fun:mbrtoc16
fun:mbrtoc32
fun:mbrtowc
fun:mbsinit
fun:mbsnrtowcs
fun:mbsrtowcs
fun:mbstowcs
fun:mbtowc
fun:memccpy
fun:memchr
fun:memcmp
fun:memcpy
fun:memmem
fun:memmove
fun:mempcpy
fun:memrchr
fun:memset
fun:mkdir
fun:mkdirat
fun:mktime
fun:mmap
fun:modf
fun:modff
fun:modfl
fun:mrand48
fun:munmap
fun:nan
fun:nanf
fun:nanl
fun:nanosleep
fun:nearbyint
fun:nearbyintf
fun:nearbyintl
fun:newlocale
fun:nextafter
fun:nextafterf
fun:nextafterl
fun:nexttoward
fun:nexttowardf
fun:nexttowardl
fun:nftw
fun:nftw64
fun:nl_langinfo
fun:nl_langinfo_l
fun:nrand48
fun:ntohl
fun:ntohs
fun:open
fun:open_memstream
fun:open_wmemstream
fun:openat
fun:opendir
fun:opendirat
fun:optarg
fun:opterr
fun:optind
fun:optopt
fun:optreset
fun:pathconf
fun:perror
fun:poll
fun:posix_close
fun:posix_fadvise
fun:posix_fallocate
fun:posix_memalign
fun:pow
fun:pow10
fun:pow10f
fun:pow10l
fun:powf
fun:powl
fun:pread
fun:preadv
fun:printf
fun:program_invocation_name
fun:program_invocation_short_name
fun:pselect
fun:psignal
fun:putc
fun:putc_unlocked
fun:putchar
fun:putchar_unlocked
fun:putenv
fun:puts
fun:putw
fun:putwc
fun:putwc_unlocked
fun:putwchar
fun:putwchar_unlocked
fun:pwrite
fun:pwritev
fun:qsort
fun:quick_exit
fun:raise
fun:rand
fun:rand_r
fun:random
fun:read
fun:readdir
fun:readlink
fun:readlinkat
fun:readv
fun:realloc
fun:reallocarray
fun:recv
fun:regcomp
fun:regerror
fun:regexec
fun:regfree
fun:remainder
fun:remainderf
fun:remainderl
fun:remove
fun:remque
fun:remquo
fun:remquof
fun:remquol
fun:rename
fun:renameat
fun:rewind
fun:rewinddir
fun:rindex
fun:rint
fun:rintf
fun:rintl
fun:rmdir
fun:round
fun:roundf
fun:roundl
fun:sbrk
fun:scalb
fun:scalbf
fun:scalbln
fun:scalblnf
fun:scalblnl
fun:scalbn
fun:scalbnf
fun:scalbnl
fun:scandir
fun:scandirat
fun:scanf
fun:sched_yield
fun:seed48
fun:seekdir
fun:select
fun:send
fun:setbuf
fun:setbuffer
fun:setenv
fun:setkey
fun:setlinebuf
fun:setlocale
fun:setstate
fun:setvbuf
fun:shutdown
fun:signal
fun:signgam
fun:significand
fun:significandf