-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposix_functions
More file actions
2802 lines (2802 loc) · 103 KB
/
posix_functions
File metadata and controls
2802 lines (2802 loc) · 103 KB
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
ndbm.h dbm_clearerr \bdbm_clearerr\s*\(
ndbm.h dbm_close \bdbm_close\s*\(
ndbm.h dbm_delete \bdbm_delete\s*\(
ndbm.h dbm_error \bdbm_error\s*\(
ndbm.h dbm_fetch \bdbm_fetch\s*\(
ndbm.h dbm_firstkey \bdbm_firstkey\s*\(
ndbm.h dbm_nextkey \bdbm_nextkey\s*\(
ndbm.h dbm_open \bdbm_open\s*\(
ndbm.h dbm_store \bdbm_store\s*\(
math.h acos \bacos\s*\(
math.h acosf \bacosf\s*\(
math.h acosl \bacosl\s*\(
sched.h sched_rr_get_interval \bsched_rr_get_interval\s*\(
math.h nan \bnan\s*\(
math.h nanf \bnanf\s*\(
math.h nanl \bnanl\s*\(
stdio.h fileno \bfileno\s*\(
fenv.h fetestexcept \bfetestexcept\s*\(
math.h fpclassify \bfpclassify\s*\(
stdio.h fdopen \bfdopen\s*\(
math.h remquo \bremquo\s*\(
math.h remquof \bremquof\s*\(
math.h remquol \bremquol\s*\(
signal.h killpg \bkillpg\s*\(
fenv.h fegetexceptflag \bfegetexceptflag\s*\(
fenv.h fesetexceptflag \bfesetexceptflag\s*\(
trace.h posix_trace_attr_getinherited \bposix_trace_attr_getinherited\s*\(
trace.h posix_trace_attr_getlogfullpolicy \bposix_trace_attr_getlogfullpolicy\s*\(
trace.h posix_trace_attr_getstreamfullpolicy \bposix_trace_attr_getstreamfullpolicy\s*\(
trace.h posix_trace_attr_setinherited \bposix_trace_attr_setinherited\s*\(
trace.h posix_trace_attr_setlogfullpolicy \bposix_trace_attr_setlogfullpolicy\s*\(
trace.h posix_trace_attr_setstreamfullpolicy \bposix_trace_attr_setstreamfullpolicy\s*\(
termios.h cfsetospeed \bcfsetospeed\s*\(
math.h atan2 \batan2\s*\(
math.h atan2f \batan2f\s*\(
math.h atan2l \batan2l\s*\(
signal.h sigaction \bsigaction\s*\(
sched.h sched_get_priority_max \bsched_get_priority_max\s*\(
sched.h sched_get_priority_min \bsched_get_priority_min\s*\(
fenv.h fegetexceptflag \bfegetexceptflag\s*\(
fenv.h fesetexceptflag \bfesetexceptflag\s*\(
unistd.h pread \bpread\s*\(
unistd.h read \bread\s*\(
unistd.h execl \bexecl\s*\(
unistd.h execle \bexecle\s*\(
unistd.h execlp \bexeclp\s*\(
unistd.h execv \bexecv\s*\(
unistd.h execve \bexecve\s*\(
unistd.h execvp \bexecvp\s*\(
unistd.h fexecve \bfexecve\s*\(
stdio.h fmemopen \bfmemopen\s*\(
sys/stat.h mknod \bmknod\s*\(
sys/stat.h mknodat \bmknodat\s*\(
unistd.h chown \bchown\s*\(
unistd.h fchownat \bfchownat\s*\(
sys/wait.h waitid \bwaitid\s*\(
iconv.h iconv_open \biconv_open\s*\(
stdio.h getc_unlocked \bgetc_unlocked\s*\(
stdio.h getchar_unlocked \bgetchar_unlocked\s*\(
stdio.h putc_unlocked \bputc_unlocked\s*\(
stdio.h putchar_unlocked \bputchar_unlocked\s*\(
stdio.h fseek \bfseek\s*\(
stdio.h fseeko \bfseeko\s*\(
wchar.h fwprintf \bfwprintf\s*\(
wchar.h swprintf \bswprintf\s*\(
wchar.h wprintf \bwprintf\s*\(
trace.h posix_trace_eventset_add \bposix_trace_eventset_add\s*\(
trace.h posix_trace_eventset_del \bposix_trace_eventset_del\s*\(
trace.h posix_trace_eventset_empty \bposix_trace_eventset_empty\s*\(
trace.h posix_trace_eventset_fill \bposix_trace_eventset_fill\s*\(
trace.h posix_trace_eventset_ismember \bposix_trace_eventset_ismember\s*\(
locale.h uselocale \buselocale\s*\(
complex.h catan \bcatan\s*\(
complex.h catanf \bcatanf\s*\(
complex.h catanl \bcatanl\s*\(
pthread.h pthread_rwlock_destroy \bpthread_rwlock_destroy\s*\(
pthread.h pthread_rwlock_init \bpthread_rwlock_init\s*\(
ftw.h nftw \bnftw\s*\(
stdio.h vdprintf \bvdprintf\s*\(
stdio.h vfprintf \bvfprintf\s*\(
stdio.h vprintf \bvprintf\s*\(
stdio.h vsnprintf \bvsnprintf\s*\(
stdio.h vsprintf \bvsprintf\s*\(
wctype.h iswpunct \biswpunct\s*\(
wctype.h iswpunct_l \biswpunct_l\s*\(
wchar.h wcschr \bwcschr\s*\(
dirent.h dirfd \bdirfd\s*\(
sys/select.h pselect \bpselect\s*\(
sys/select.h select \bselect\s*\(
string.h strncat \bstrncat\s*\(
stdlib.h initstate \binitstate\s*\(
stdlib.h random \brandom\s*\(
stdlib.h setstate \bsetstate\s*\(
stdlib.h srandom \bsrandom\s*\(
dlfcn.h dlclose \bdlclose\s*\(
complex.h cabs \bcabs\s*\(
complex.h cabsf \bcabsf\s*\(
complex.h cabsl \bcabsl\s*\(
setjmp.h setjmp \bsetjmp\s*\(
sys/stat.h mkfifo \bmkfifo\s*\(
sys/stat.h mkfifoat \bmkfifoat\s*\(
trace.h posix_trace_attr_getclockres \bposix_trace_attr_getclockres\s*\(
trace.h posix_trace_attr_getcreatetime \bposix_trace_attr_getcreatetime\s*\(
trace.h posix_trace_attr_getgenversion \bposix_trace_attr_getgenversion\s*\(
trace.h posix_trace_attr_getname \bposix_trace_attr_getname\s*\(
trace.h posix_trace_attr_setname \bposix_trace_attr_setname\s*\(
complex.h casinh \bcasinh\s*\(
complex.h casinhf \bcasinhf\s*\(
complex.h casinhl \bcasinhl\s*\(
math.h cbrt \bcbrt\s*\(
math.h cbrtf \bcbrtf\s*\(
math.h cbrtl \bcbrtl\s*\(
trace.h posix_trace_close \bposix_trace_close\s*\(
trace.h posix_trace_open \bposix_trace_open\s*\(
trace.h posix_trace_rewind \bposix_trace_rewind\s*\(
string.h strchr \bstrchr\s*\(
math.h sin \bsin\s*\(
math.h sinf \bsinf\s*\(
math.h sinl \bsinl\s*\(
trace.h posix_trace_eventid_equal \bposix_trace_eventid_equal\s*\(
trace.h posix_trace_eventid_get_name \bposix_trace_eventid_get_name\s*\(
trace.h posix_trace_trid_eventid_open \bposix_trace_trid_eventid_open\s*\(
pthread.h pthread_mutexattr_getrobust \bpthread_mutexattr_getrobust\s*\(
pthread.h pthread_mutexattr_setrobust \bpthread_mutexattr_setrobust\s*\(
pthread.h pthread_mutex_destroy \bpthread_mutex_destroy\s*\(
pthread.h pthread_mutex_init \bpthread_mutex_init\s*\(
pthread.h pthread_rwlock_destroy \bpthread_rwlock_destroy\s*\(
pthread.h pthread_rwlock_init \bpthread_rwlock_init\s*\(
wchar.h mbsinit \bmbsinit\s*\(
unistd.h fpathconf \bfpathconf\s*\(
unistd.h pathconf \bpathconf\s*\(
trace.h posix_trace_attr_getlogsize \bposix_trace_attr_getlogsize\s*\(
trace.h posix_trace_attr_getmaxdatasize \bposix_trace_attr_getmaxdatasize\s*\(
trace.h posix_trace_attr_getmaxsystemeventsize \bposix_trace_attr_getmaxsystemeventsize\s*\(
trace.h posix_trace_attr_getmaxusereventsize \bposix_trace_attr_getmaxusereventsize\s*\(
trace.h posix_trace_attr_getstreamsize \bposix_trace_attr_getstreamsize\s*\(
trace.h posix_trace_attr_setlogsize \bposix_trace_attr_setlogsize\s*\(
trace.h posix_trace_attr_setmaxdatasize \bposix_trace_attr_setmaxdatasize\s*\(
trace.h posix_trace_attr_setstreamsize \bposix_trace_attr_setstreamsize\s*\(
unistd.h getopt \bgetopt\s*\(
sys/stat.h futimens \bfutimens\s*\(
sys/stat.h utimensat \butimensat\s*\(
sys/time.h utimes \butimes\s*\(
wchar.h wcsnrtombs \bwcsnrtombs\s*\(
wchar.h wcsrtombs \bwcsrtombs\s*\(
wchar.h btowc \bbtowc\s*\(
sys/stat.h chmod \bchmod\s*\(
sys/stat.h fchmodat \bfchmodat\s*\(
pthread.h pthread_mutexattr_getprioceiling \bpthread_mutexattr_getprioceiling\s*\(
pthread.h pthread_mutexattr_setprioceiling \bpthread_mutexattr_setprioceiling\s*\(
ndbm.h dbm_clearerr \bdbm_clearerr\s*\(
ndbm.h dbm_close \bdbm_close\s*\(
ndbm.h dbm_delete \bdbm_delete\s*\(
ndbm.h dbm_error \bdbm_error\s*\(
ndbm.h dbm_fetch \bdbm_fetch\s*\(
ndbm.h dbm_firstkey \bdbm_firstkey\s*\(
ndbm.h dbm_nextkey \bdbm_nextkey\s*\(
ndbm.h dbm_open \bdbm_open\s*\(
ndbm.h dbm_store \bdbm_store\s*\(
math.h llrint \bllrint\s*\(
math.h llrintf \bllrintf\s*\(
math.h llrintl \bllrintl\s*\(
complex.h catanh \bcatanh\s*\(
complex.h catanhf \bcatanhf\s*\(
complex.h catanhl \bcatanhl\s*\(
complex.h ccosh \bccosh\s*\(
complex.h ccoshf \bccoshf\s*\(
complex.h ccoshl \bccoshl\s*\(
stdlib.h _Exit \b_Exit\s*\(
unistd.h _exit \b_exit\s*\(
regex.h regcomp \bregcomp\s*\(
regex.h regerror \bregerror\s*\(
regex.h regexec \bregexec\s*\(
regex.h regfree \bregfree\s*\(
math.h lrint \blrint\s*\(
math.h lrintf \blrintf\s*\(
math.h lrintl \blrintl\s*\(
stdlib.h system \bsystem\s*\(
sched.h sched_getscheduler \bsched_getscheduler\s*\(
wctype.h iswctype \biswctype\s*\(
wctype.h iswctype_l \biswctype_l\s*\(
unistd.h fdatasync \bfdatasync\s*\(
pthread.h pthread_getschedparam \bpthread_getschedparam\s*\(
pthread.h pthread_setschedparam \bpthread_setschedparam\s*\(
signal.h sigpending \bsigpending\s*\(
stdio.h vdprintf \bvdprintf\s*\(
stdio.h vfprintf \bvfprintf\s*\(
stdio.h vprintf \bvprintf\s*\(
stdio.h vsnprintf \bvsnprintf\s*\(
stdio.h vsprintf \bvsprintf\s*\(
math.h tgamma \btgamma\s*\(
math.h tgammaf \btgammaf\s*\(
math.h tgammal \btgammal\s*\(
wchar.h wcsstr \bwcsstr\s*\(
unistd.h pause \bpause\s*\(
ctype.h isxdigit \bisxdigit\s*\(
ctype.h isxdigit_l \bisxdigit_l\s*\(
unistd.h lseek \blseek\s*\(
pthread.h pthread_key_create \bpthread_key_create\s*\(
pthread.h pthread_attr_getinheritsched \bpthread_attr_getinheritsched\s*\(
pthread.h pthread_attr_setinheritsched \bpthread_attr_setinheritsched\s*\(
termios.h tcgetattr \btcgetattr\s*\(
math.h atan \batan\s*\(
math.h atanf \batanf\s*\(
math.h atanl \batanl\s*\(
math.h lround \blround\s*\(
math.h lroundf \blroundf\s*\(
math.h lroundl \blroundl\s*\(
unistd.h readlink \breadlink\s*\(
unistd.h readlinkat \breadlinkat\s*\(
stdio.h dprintf \bdprintf\s*\(
stdio.h fprintf \bfprintf\s*\(
stdio.h printf \bprintf\s*\(
stdio.h snprintf \bsnprintf\s*\(
stdio.h sprintf \bsprintf\s*\(
pthread.h pthread_exit \bpthread_exit\s*\(
inttypes.h imaxdiv \bimaxdiv\s*\(
stdio.h clearerr \bclearerr\s*\(
pthread.h pthread_mutexattr_gettype \bpthread_mutexattr_gettype\s*\(
pthread.h pthread_mutexattr_settype \bpthread_mutexattr_settype\s*\(
math.h asin \basin\s*\(
math.h asinf \basinf\s*\(
math.h asinl \basinl\s*\(
wchar.h vfwprintf \bvfwprintf\s*\(
wchar.h vswprintf \bvswprintf\s*\(
wchar.h vwprintf \bvwprintf\s*\(
wchar.h wcswidth \bwcswidth\s*\(
grp.h endgrent \bendgrent\s*\(
grp.h getgrent \bgetgrent\s*\(
grp.h setgrent \bsetgrent\s*\(
math.h cosh \bcosh\s*\(
math.h coshf \bcoshf\s*\(
math.h coshl \bcoshl\s*\(
pthread.h pthread_getschedparam \bpthread_getschedparam\s*\(
pthread.h pthread_setschedparam \bpthread_setschedparam\s*\(
wchar.h wcsncat \bwcsncat\s*\(
math.h isgreater \bisgreater\s*\(
math.h fmod \bfmod\s*\(
math.h fmodf \bfmodf\s*\(
math.h fmodl \bfmodl\s*\(
trace.h posix_trace_get_attr \bposix_trace_get_attr\s*\(
trace.h posix_trace_get_status \bposix_trace_get_status\s*\(
stdlib.h unsetenv \bunsetenv\s*\(
stdlib.h drand48 \bdrand48\s*\(
stdlib.h erand48 \berand48\s*\(
stdlib.h jrand48 \bjrand48\s*\(
stdlib.h lcong48 \blcong48\s*\(
stdlib.h lrand48 \blrand48\s*\(
stdlib.h mrand48 \bmrand48\s*\(
stdlib.h nrand48 \bnrand48\s*\(
stdlib.h seed48 \bseed48\s*\(
stdlib.h srand48 \bsrand48\s*\(
unistd.h access \baccess\s*\(
unistd.h faccessat \bfaccessat\s*\(
signal.h sigfillset \bsigfillset\s*\(
wchar.h vfwscanf \bvfwscanf\s*\(
wchar.h vswscanf \bvswscanf\s*\(
wchar.h vwscanf \bvwscanf\s*\(
math.h fmax \bfmax\s*\(
math.h fmaxf \bfmaxf\s*\(
math.h fmaxl \bfmaxl\s*\(
signal.h sighold \bsighold\s*\(
signal.h sigignore \bsigignore\s*\(
signal.h sigpause \bsigpause\s*\(
signal.h sigrelse \bsigrelse\s*\(
signal.h sigset \bsigset\s*\(
stdio.h tmpnam \btmpnam\s*\(
poll.h poll \bpoll\s*\(
stdio.h fscanf \bfscanf\s*\(
stdio.h scanf \bscanf\s*\(
stdio.h sscanf \bsscanf\s*\(
pthread.h pthread_detach \bpthread_detach\s*\(
math.h rint \brint\s*\(
math.h rintf \brintf\s*\(
math.h rintl \brintl\s*\(
wctype.h iswupper \biswupper\s*\(
wctype.h iswupper_l \biswupper_l\s*\(
sys/stat.h mkfifo \bmkfifo\s*\(
sys/stat.h mkfifoat \bmkfifoat\s*\(
stdlib.h rand \brand\s*\(
stdlib.h rand_r \brand_r\s*\(
stdlib.h srand \bsrand\s*\(
wctype.h towlower \btowlower\s*\(
wctype.h towlower_l \btowlower_l\s*\(
sys/mman.h mmap \bmmap\s*\(
pthread.h pthread_getconcurrency \bpthread_getconcurrency\s*\(
pthread.h pthread_setconcurrency \bpthread_setconcurrency\s*\(
spawn.h posix_spawnattr_getsigmask \bposix_spawnattr_getsigmask\s*\(
spawn.h posix_spawnattr_setsigmask \bposix_spawnattr_setsigmask\s*\(
pthread.h pthread_mutex_lock \bpthread_mutex_lock\s*\(
pthread.h pthread_mutex_trylock \bpthread_mutex_trylock\s*\(
pthread.h pthread_mutex_unlock \bpthread_mutex_unlock\s*\(
sys/resource.h getrlimit \bgetrlimit\s*\(
sys/resource.h setrlimit \bsetrlimit\s*\(
sys/sem.h semop \bsemop\s*\(
grp.h getgrgid \bgetgrgid\s*\(
grp.h getgrgid_r \bgetgrgid_r\s*\(
ctype.h toupper \btoupper\s*\(
ctype.h toupper_l \btoupper_l\s*\(
stdlib.h initstate \binitstate\s*\(
stdlib.h random \brandom\s*\(
stdlib.h setstate \bsetstate\s*\(
stdlib.h srandom \bsrandom\s*\(
math.h floor \bfloor\s*\(
math.h floorf \bfloorf\s*\(
math.h floorl \bfloorl\s*\(
wchar.h mbrlen \bmbrlen\s*\(
unistd.h sysconf \bsysconf\s*\(
math.h pow \bpow\s*\(
math.h powf \bpowf\s*\(
math.h powl \bpowl\s*\(
string.h strstr \bstrstr\s*\(
stdio.h feof \bfeof\s*\(
time.h getdate \bgetdate\s*\(
monetary.h strfmon \bstrfmon\s*\(
monetary.h strfmon_l \bstrfmon_l\s*\(
spawn.h posix_spawnattr_destroy \bposix_spawnattr_destroy\s*\(
spawn.h posix_spawnattr_init \bposix_spawnattr_init\s*\(
pthread.h pthread_barrier_destroy \bpthread_barrier_destroy\s*\(
pthread.h pthread_barrier_init \bpthread_barrier_init\s*\(
time.h asctime \basctime\s*\(
time.h asctime_r \basctime_r\s*\(
math.h asinh \basinh\s*\(
math.h asinhf \basinhf\s*\(
math.h asinhl \basinhl\s*\(
netdb.h endhostent \bendhostent\s*\(
netdb.h gethostent \bgethostent\s*\(
netdb.h sethostent \bsethostent\s*\(
wctype.h towupper \btowupper\s*\(
wctype.h towupper_l \btowupper_l\s*\(
time.h clock_nanosleep \bclock_nanosleep\s*\(
sys/utsname.h uname \buname\s*\(
stdio.h tempnam \btempnam\s*\(
complex.h cproj \bcproj\s*\(
complex.h cprojf \bcprojf\s*\(
complex.h cprojl \bcprojl\s*\(
math.h sqrt \bsqrt\s*\(
math.h sqrtf \bsqrtf\s*\(
math.h sqrtl \bsqrtl\s*\(
wchar.h mbrtowc \bmbrtowc\s*\(
string.h strxfrm \bstrxfrm\s*\(
string.h strxfrm_l \bstrxfrm_l\s*\(
string.h memset \bmemset\s*\(
math.h trunc \btrunc\s*\(
math.h truncf \btruncf\s*\(
math.h truncl \btruncl\s*\(
ndbm.h dbm_clearerr \bdbm_clearerr\s*\(
ndbm.h dbm_close \bdbm_close\s*\(
ndbm.h dbm_delete \bdbm_delete\s*\(
ndbm.h dbm_error \bdbm_error\s*\(
ndbm.h dbm_fetch \bdbm_fetch\s*\(
ndbm.h dbm_firstkey \bdbm_firstkey\s*\(
ndbm.h dbm_nextkey \bdbm_nextkey\s*\(
ndbm.h dbm_open \bdbm_open\s*\(
ndbm.h dbm_store \bdbm_store\s*\(
stdio.h gets \bgets\s*\(
unistd.h link \blink\s*\(
unistd.h linkat \blinkat\s*\(
pthread.h pthread_getspecific \bpthread_getspecific\s*\(
pthread.h pthread_setspecific \bpthread_setspecific\s*\(
stropts.h getmsg \bgetmsg\s*\(
stropts.h getpmsg \bgetpmsg\s*\(
unistd.h chdir \bchdir\s*\(
string.h memcmp \bmemcmp\s*\(
wchar.h wcstoul \bwcstoul\s*\(
wchar.h wcstoull \bwcstoull\s*\(
complex.h cpow \bcpow\s*\(
complex.h cpowf \bcpowf\s*\(
complex.h cpowl \bcpowl\s*\(
ctype.h toupper \btoupper\s*\(
ctype.h toupper_l \btoupper_l\s*\(
wchar.h fgetwc \bfgetwc\s*\(
time.h timer_delete \btimer_delete\s*\(
trace.h posix_trace_attr_getlogsize \bposix_trace_attr_getlogsize\s*\(
trace.h posix_trace_attr_getmaxdatasize \bposix_trace_attr_getmaxdatasize\s*\(
trace.h posix_trace_attr_getmaxsystemeventsize \bposix_trace_attr_getmaxsystemeventsize\s*\(
trace.h posix_trace_attr_getmaxusereventsize \bposix_trace_attr_getmaxusereventsize\s*\(
trace.h posix_trace_attr_getstreamsize \bposix_trace_attr_getstreamsize\s*\(
trace.h posix_trace_attr_setlogsize \bposix_trace_attr_setlogsize\s*\(
trace.h posix_trace_attr_setmaxdatasize \bposix_trace_attr_setmaxdatasize\s*\(
trace.h posix_trace_attr_setstreamsize \bposix_trace_attr_setstreamsize\s*\(
string.h strdup \bstrdup\s*\(
string.h strndup \bstrndup\s*\(
unistd.h execl \bexecl\s*\(
unistd.h execle \bexecle\s*\(
unistd.h execlp \bexeclp\s*\(
unistd.h execv \bexecv\s*\(
unistd.h execve \bexecve\s*\(
unistd.h execvp \bexecvp\s*\(
unistd.h fexecve \bfexecve\s*\(
math.h erfc \berfc\s*\(
math.h erfcf \berfcf\s*\(
math.h erfcl \berfcl\s*\(
stdlib.h strtod \bstrtod\s*\(
stdlib.h strtof \bstrtof\s*\(
stdlib.h strtold \bstrtold\s*\(
pthread.h pthread_setschedprio \bpthread_setschedprio\s*\(
inttypes.h strtoimax \bstrtoimax\s*\(
inttypes.h strtoumax \bstrtoumax\s*\(
stdio.h ctermid \bctermid\s*\(
math.h j0 \bj0\s*\(
math.h j1 \bj1\s*\(
math.h jn \bjn\s*\(
time.h strftime \bstrftime\s*\(
time.h strftime_l \bstrftime_l\s*\(
stdio.h dprintf \bdprintf\s*\(
stdio.h fprintf \bfprintf\s*\(
stdio.h printf \bprintf\s*\(
stdio.h snprintf \bsnprintf\s*\(
stdio.h sprintf \bsprintf\s*\(
pthread.h pthread_once \bpthread_once\s*\(
pthread.h pthread_rwlockattr_getpshared \bpthread_rwlockattr_getpshared\s*\(
pthread.h pthread_rwlockattr_setpshared \bpthread_rwlockattr_setpshared\s*\(
math.h log2 \blog2\s*\(
math.h log2f \blog2f\s*\(
math.h log2l \blog2l\s*\(
stdio.h fopen \bfopen\s*\(
wchar.h wcstol \bwcstol\s*\(
wchar.h wcstoll \bwcstoll\s*\(
signal.h sigismember \bsigismember\s*\(
trace.h posix_trace_get_filter \bposix_trace_get_filter\s*\(
trace.h posix_trace_set_filter \bposix_trace_set_filter\s*\(
time.h clock_getcpuclockid \bclock_getcpuclockid\s*\(
wchar.h fwscanf \bfwscanf\s*\(
wchar.h swscanf \bswscanf\s*\(
wchar.h wscanf \bwscanf\s*\(
sys/sem.h semget \bsemget\s*\(
setjmp.h _longjmp \b_longjmp\s*\(
setjmp.h _setjmp \b_setjmp\s*\(
unistd.h rmdir \brmdir\s*\(
arpa/inet.h inet_addr \binet_addr\s*\(
arpa/inet.h inet_ntoa \binet_ntoa\s*\(
string.h strerror \bstrerror\s*\(
string.h strerror_l \bstrerror_l\s*\(
string.h strerror_r \bstrerror_r\s*\(
math.h copysign \bcopysign\s*\(
math.h copysignf \bcopysignf\s*\(
math.h copysignl \bcopysignl\s*\(
math.h ilogb \bilogb\s*\(
math.h ilogbf \bilogbf\s*\(
math.h ilogbl \bilogbl\s*\(
stdio.h puts \bputs\s*\(
search.h tdelete \btdelete\s*\(
search.h tfind \btfind\s*\(
search.h tsearch \btsearch\s*\(
search.h twalk \btwalk\s*\(
netdb.h endprotoent \bendprotoent\s*\(
netdb.h getprotobyname \bgetprotobyname\s*\(
netdb.h getprotobynumber \bgetprotobynumber\s*\(
netdb.h getprotoent \bgetprotoent\s*\(
netdb.h setprotoent \bsetprotoent\s*\(
unistd.h ttyname \bttyname\s*\(
unistd.h ttyname_r \bttyname_r\s*\(
termios.h cfsetispeed \bcfsetispeed\s*\(
stdarg.h va_arg \bva_arg\s*\(
stdarg.h va_copy \bva_copy\s*\(
stdarg.h va_end \bva_end\s*\(
stdarg.h va_start \bva_start\s*\(
math.h round \bround\s*\(
math.h roundf \broundf\s*\(
math.h roundl \broundl\s*\(
dirent.h fdopendir \bfdopendir\s*\(
dirent.h opendir \bopendir\s*\(
complex.h cimag \bcimag\s*\(
complex.h cimagf \bcimagf\s*\(
complex.h cimagl \bcimagl\s*\(
stdlib.h strtoul \bstrtoul\s*\(
stdlib.h strtoull \bstrtoull\s*\(
search.h hcreate \bhcreate\s*\(
search.h hdestroy \bhdestroy\s*\(
search.h hsearch \bhsearch\s*\(
libgen.h dirname \bdirname\s*\(
pthread.h pthread_attr_getschedparam \bpthread_attr_getschedparam\s*\(
pthread.h pthread_attr_setschedparam \bpthread_attr_setschedparam\s*\(
arpa/inet.h inet_addr \binet_addr\s*\(
arpa/inet.h inet_ntoa \binet_ntoa\s*\(
complex.h catan \bcatan\s*\(
complex.h catanf \bcatanf\s*\(
complex.h catanl \bcatanl\s*\(
math.h atanh \batanh\s*\(
math.h atanhf \batanhf\s*\(
math.h atanhl \batanhl\s*\(
signal.h pthread_kill \bpthread_kill\s*\(
semaphore.h sem_close \bsem_close\s*\(
stdlib.h malloc \bmalloc\s*\(
math.h logb \blogb\s*\(
math.h logbf \blogbf\s*\(
math.h logbl \blogbl\s*\(
time.h tzset \btzset\s*\(
stdio.h getc_unlocked \bgetc_unlocked\s*\(
stdio.h getchar_unlocked \bgetchar_unlocked\s*\(
stdio.h putc_unlocked \bputc_unlocked\s*\(
stdio.h putchar_unlocked \bputchar_unlocked\s*\(
stropts.h getmsg \bgetmsg\s*\(
stropts.h getpmsg \bgetpmsg\s*\(
time.h difftime \bdifftime\s*\(
unistd.h crypt \bcrypt\s*\(
complex.h clog \bclog\s*\(
complex.h clogf \bclogf\s*\(
complex.h clogl \bclogl\s*\(
wctype.h wctype \bwctype\s*\(
wctype.h wctype_l \bwctype_l\s*\(
grp.h endgrent \bendgrent\s*\(
grp.h getgrent \bgetgrent\s*\(
grp.h setgrent \bsetgrent\s*\(
pwd.h getpwuid \bgetpwuid\s*\(
pwd.h getpwuid_r \bgetpwuid_r\s*\(
locale.h duplocale \bduplocale\s*\(
math.h asinh \basinh\s*\(
math.h asinhf \basinhf\s*\(
math.h asinhl \basinhl\s*\(
pthread.h pthread_attr_getschedparam \bpthread_attr_getschedparam\s*\(
pthread.h pthread_attr_setschedparam \bpthread_attr_setschedparam\s*\(
wchar.h wcsdup \bwcsdup\s*\(
complex.h csqrt \bcsqrt\s*\(
complex.h csqrtf \bcsqrtf\s*\(
complex.h csqrtl \bcsqrtl\s*\(
wchar.h wcstod \bwcstod\s*\(
wchar.h wcstof \bwcstof\s*\(
wchar.h wcstold \bwcstold\s*\(
signal.h sigqueue \bsigqueue\s*\(
libgen.h basename \bbasename\s*\(
time.h tzset \btzset\s*\(
complex.h casin \bcasin\s*\(
complex.h casinf \bcasinf\s*\(
complex.h casinl \bcasinl\s*\(
time.h localtime \blocaltime\s*\(
time.h localtime_r \blocaltime_r\s*\(
spawn.h posix_spawnattr_getpgroup \bposix_spawnattr_getpgroup\s*\(
spawn.h posix_spawnattr_setpgroup \bposix_spawnattr_setpgroup\s*\(
complex.h ccosh \bccosh\s*\(
complex.h ccoshf \bccoshf\s*\(
complex.h ccoshl \bccoshl\s*\(
dlfcn.h dlopen \bdlopen\s*\(
stdio.h fclose \bfclose\s*\(
unistd.h ftruncate \bftruncate\s*\(
complex.h cabs \bcabs\s*\(
complex.h cabsf \bcabsf\s*\(
complex.h cabsl \bcabsl\s*\(
sys/mman.h mlock \bmlock\s*\(
sys/mman.h munlock \bmunlock\s*\(
pthread.h pthread_attr_getinheritsched \bpthread_attr_getinheritsched\s*\(
pthread.h pthread_attr_setinheritsched \bpthread_attr_setinheritsched\s*\(
unistd.h execl \bexecl\s*\(
unistd.h execle \bexecle\s*\(
unistd.h execlp \bexeclp\s*\(
unistd.h execv \bexecv\s*\(
unistd.h execve \bexecve\s*\(
unistd.h execvp \bexecvp\s*\(
unistd.h fexecve \bfexecve\s*\(
wctype.h iswblank \biswblank\s*\(
wctype.h iswblank_l \biswblank_l\s*\(
trace.h posix_trace_getnext_event \bposix_trace_getnext_event\s*\(
trace.h posix_trace_timedgetnext_event \bposix_trace_timedgetnext_event\s*\(
trace.h posix_trace_trygetnext_event \bposix_trace_trygetnext_event\s*\(
wchar.h wcpcpy \bwcpcpy\s*\(
wchar.h wcscpy \bwcscpy\s*\(
signal.h pthread_sigmask \bpthread_sigmask\s*\(
signal.h sigprocmask \bsigprocmask\s*\(
pthread.h pthread_spin_unlock \bpthread_spin_unlock\s*\(
pthread.h pthread_barrierattr_destroy \bpthread_barrierattr_destroy\s*\(
pthread.h pthread_barrierattr_init \bpthread_barrierattr_init\s*\(
unistd.h nice \bnice\s*\(
math.h round \bround\s*\(
math.h roundf \broundf\s*\(
math.h roundl \broundl\s*\(
sys/mman.h posix_mem_offset \bposix_mem_offset\s*\(
complex.h cacos \bcacos\s*\(
complex.h cacosf \bcacosf\s*\(
complex.h cacosl \bcacosl\s*\(
inttypes.h strtoimax \bstrtoimax\s*\(
inttypes.h strtoumax \bstrtoumax\s*\(
sys/stat.h chmod \bchmod\s*\(
sys/stat.h fchmodat \bfchmodat\s*\(
complex.h csin \bcsin\s*\(
complex.h csinf \bcsinf\s*\(
complex.h csinl \bcsinl\s*\(
math.h cos \bcos\s*\(
math.h cosf \bcosf\s*\(
math.h cosl \bcosl\s*\(
trace.h posix_trace_eventid_equal \bposix_trace_eventid_equal\s*\(
trace.h posix_trace_eventid_get_name \bposix_trace_eventid_get_name\s*\(
trace.h posix_trace_trid_eventid_open \bposix_trace_trid_eventid_open\s*\(
sys/socket.h recvfrom \brecvfrom\s*\(
unistd.h chown \bchown\s*\(
unistd.h fchownat \bfchownat\s*\(
math.h atan \batan\s*\(
math.h atanf \batanf\s*\(
math.h atanl \batanl\s*\(
setjmp.h _longjmp \b_longjmp\s*\(
setjmp.h _setjmp \b_setjmp\s*\(
pthread.h pthread_cond_timedwait \bpthread_cond_timedwait\s*\(
pthread.h pthread_cond_wait \bpthread_cond_wait\s*\(
stdlib.h drand48 \bdrand48\s*\(
stdlib.h erand48 \berand48\s*\(
stdlib.h jrand48 \bjrand48\s*\(
stdlib.h lcong48 \blcong48\s*\(
stdlib.h lrand48 \blrand48\s*\(
stdlib.h mrand48 \bmrand48\s*\(
stdlib.h nrand48 \bnrand48\s*\(
stdlib.h seed48 \bseed48\s*\(
stdlib.h srand48 \bsrand48\s*\(
wchar.h fwscanf \bfwscanf\s*\(
wchar.h swscanf \bswscanf\s*\(
wchar.h wscanf \bwscanf\s*\(
math.h llrint \bllrint\s*\(
math.h llrintf \bllrintf\s*\(
math.h llrintl \bllrintl\s*\(
unistd.h ttyname \bttyname\s*\(
unistd.h ttyname_r \bttyname_r\s*\(
ndbm.h dbm_clearerr \bdbm_clearerr\s*\(
ndbm.h dbm_close \bdbm_close\s*\(
ndbm.h dbm_delete \bdbm_delete\s*\(
ndbm.h dbm_error \bdbm_error\s*\(
ndbm.h dbm_fetch \bdbm_fetch\s*\(
ndbm.h dbm_firstkey \bdbm_firstkey\s*\(
ndbm.h dbm_nextkey \bdbm_nextkey\s*\(
ndbm.h dbm_open \bdbm_open\s*\(
ndbm.h dbm_store \bdbm_store\s*\(
sys/stat.h mknod \bmknod\s*\(
sys/stat.h mknodat \bmknodat\s*\(
trace.h posix_trace_close \bposix_trace_close\s*\(
trace.h posix_trace_open \bposix_trace_open\s*\(
trace.h posix_trace_rewind \bposix_trace_rewind\s*\(
utmpx.h endutxent \bendutxent\s*\(
utmpx.h getutxent \bgetutxent\s*\(
utmpx.h getutxid \bgetutxid\s*\(
utmpx.h getutxline \bgetutxline\s*\(
utmpx.h pututxline \bpututxline\s*\(
utmpx.h setutxent \bsetutxent\s*\(
math.h remainder \bremainder\s*\(
math.h remainderf \bremainderf\s*\(
math.h remainderl \bremainderl\s*\(
wctype.h iswspace \biswspace\s*\(
wctype.h iswspace_l \biswspace_l\s*\(
time.h ctime \bctime\s*\(
time.h ctime_r \bctime_r\s*\(
netdb.h freeaddrinfo \bfreeaddrinfo\s*\(
netdb.h getaddrinfo \bgetaddrinfo\s*\(
stdlib.h strtol \bstrtol\s*\(
stdlib.h strtoll \bstrtoll\s*\(
unistd.h swab \bswab\s*\(
wchar.h wcscasecmp \bwcscasecmp\s*\(
wchar.h wcscasecmp_l \bwcscasecmp_l\s*\(
wchar.h wcsncasecmp \bwcsncasecmp\s*\(
wchar.h wcsncasecmp_l \bwcsncasecmp_l\s*\(
ctype.h isspace \bisspace\s*\(
ctype.h isspace_l \bisspace_l\s*\(
sched.h sched_get_priority_max \bsched_get_priority_max\s*\(
sched.h sched_get_priority_min \bsched_get_priority_min\s*\(
pthread.h pthread_attr_getstack \bpthread_attr_getstack\s*\(
pthread.h pthread_attr_setstack \bpthread_attr_setstack\s*\(
spawn.h posix_spawnattr_getflags \bposix_spawnattr_getflags\s*\(
spawn.h posix_spawnattr_setflags \bposix_spawnattr_setflags\s*\(
string.h strsignal \bstrsignal\s*\(
stdio.h rename \brename\s*\(
stdio.h renameat \brenameat\s*\(
sys/select.h pselect \bpselect\s*\(
sys/select.h select \bselect\s*\(
math.h ldexp \bldexp\s*\(
math.h ldexpf \bldexpf\s*\(
math.h ldexpl \bldexpl\s*\(
wchar.h wcstoul \bwcstoul\s*\(
wchar.h wcstoull \bwcstoull\s*\(
sys/time.h getitimer \bgetitimer\s*\(
sys/time.h setitimer \bsetitimer\s*\(
math.h nearbyint \bnearbyint\s*\(
math.h nearbyintf \bnearbyintf\s*\(
math.h nearbyintl \bnearbyintl\s*\(
pthread.h pthread_condattr_getclock \bpthread_condattr_getclock\s*\(
pthread.h pthread_condattr_setclock \bpthread_condattr_setclock\s*\(
math.h erf \berf\s*\(
math.h erff \berff\s*\(
math.h erfl \berfl\s*\(
pthread.h pthread_attr_getstacksize \bpthread_attr_getstacksize\s*\(
pthread.h pthread_attr_setstacksize \bpthread_attr_setstacksize\s*\(
time.h timer_getoverrun \btimer_getoverrun\s*\(
time.h timer_gettime \btimer_gettime\s*\(
time.h timer_settime \btimer_settime\s*\(
netdb.h endnetent \bendnetent\s*\(
netdb.h getnetbyaddr \bgetnetbyaddr\s*\(
netdb.h getnetbyname \bgetnetbyname\s*\(
netdb.h getnetent \bgetnetent\s*\(
netdb.h setnetent \bsetnetent\s*\(
stropts.h ioctl \bioctl\s*\(
math.h ceil \bceil\s*\(
math.h ceilf \bceilf\s*\(
math.h ceill \bceill\s*\(
wctype.h iswdigit \biswdigit\s*\(
wctype.h iswdigit_l \biswdigit_l\s*\(
stdlib.h atol \batol\s*\(
stdlib.h atoll \batoll\s*\(
netdb.h endservent \bendservent\s*\(
netdb.h getservbyname \bgetservbyname\s*\(
netdb.h getservbyport \bgetservbyport\s*\(
netdb.h getservent \bgetservent\s*\(
netdb.h setservent \bsetservent\s*\(
wchar.h wcscasecmp \bwcscasecmp\s*\(
wchar.h wcscasecmp_l \bwcscasecmp_l\s*\(
wchar.h wcsncasecmp \bwcsncasecmp\s*\(
wchar.h wcsncasecmp_l \bwcsncasecmp_l\s*\(
utmpx.h endutxent \bendutxent\s*\(
utmpx.h getutxent \bgetutxent\s*\(
utmpx.h getutxid \bgetutxid\s*\(
utmpx.h getutxline \bgetutxline\s*\(
utmpx.h pututxline \bpututxline\s*\(
utmpx.h setutxent \bsetutxent\s*\(
wctype.h iswalnum \biswalnum\s*\(
wctype.h iswalnum_l \biswalnum_l\s*\(
math.h cosh \bcosh\s*\(
math.h coshf \bcoshf\s*\(
math.h coshl \bcoshl\s*\(
utmpx.h endutxent \bendutxent\s*\(
utmpx.h getutxent \bgetutxent\s*\(
utmpx.h getutxid \bgetutxid\s*\(
utmpx.h getutxline \bgetutxline\s*\(
utmpx.h pututxline \bpututxline\s*\(
utmpx.h setutxent \bsetutxent\s*\(
sched.h sched_yield \bsched_yield\s*\(
string.h stpcpy \bstpcpy\s*\(
string.h strcpy \bstrcpy\s*\(
pthread.h pthread_mutexattr_getprotocol \bpthread_mutexattr_getprotocol\s*\(
pthread.h pthread_mutexattr_setprotocol \bpthread_mutexattr_setprotocol\s*\(
wchar.h fwide \bfwide\s*\(
langinfo.h nl_langinfo \bnl_langinfo\s*\(
langinfo.h nl_langinfo_l \bnl_langinfo_l\s*\(
search.h insque \binsque\s*\(
search.h remque \bremque\s*\(
trace.h posix_trace_attr_getinherited \bposix_trace_attr_getinherited\s*\(
trace.h posix_trace_attr_getlogfullpolicy \bposix_trace_attr_getlogfullpolicy\s*\(
trace.h posix_trace_attr_getstreamfullpolicy \bposix_trace_attr_getstreamfullpolicy\s*\(
trace.h posix_trace_attr_setinherited \bposix_trace_attr_setinherited\s*\(
trace.h posix_trace_attr_setlogfullpolicy \bposix_trace_attr_setlogfullpolicy\s*\(
trace.h posix_trace_attr_setstreamfullpolicy \bposix_trace_attr_setstreamfullpolicy\s*\(
glob.h glob \bglob\s*\(
glob.h globfree \bglobfree\s*\(
time.h gmtime \bgmtime\s*\(
time.h gmtime_r \bgmtime_r\s*\(
math.h acos \bacos\s*\(
math.h acosf \bacosf\s*\(
math.h acosl \bacosl\s*\(
string.h stpncpy \bstpncpy\s*\(
string.h strncpy \bstrncpy\s*\(
sys/mman.h posix_typed_mem_get_info \bposix_typed_mem_get_info\s*\(
wchar.h fputwc \bfputwc\s*\(
math.h y0 \by0\s*\(
math.h y1 \by1\s*\(
math.h yn \byn\s*\(
math.h erf \berf\s*\(
math.h erff \berff\s*\(
math.h erfl \berfl\s*\(
pthread.h pthread_cond_broadcast \bpthread_cond_broadcast\s*\(
pthread.h pthread_cond_signal \bpthread_cond_signal\s*\(
math.h nan \bnan\s*\(
math.h nanf \bnanf\s*\(
math.h nanl \bnanl\s*\(
wctype.h iswxdigit \biswxdigit\s*\(
wctype.h iswxdigit_l \biswxdigit_l\s*\(
math.h atan2 \batan2\s*\(
math.h atan2f \batan2f\s*\(
math.h atan2l \batan2l\s*\(
ctype.h isupper \bisupper\s*\(
ctype.h isupper_l \bisupper_l\s*\(
locale.h freelocale \bfreelocale\s*\(
pthread.h pthread_cleanup_pop \bpthread_cleanup_pop\s*\(
pthread.h pthread_cleanup_push \bpthread_cleanup_push\s*\(
stdlib.h bsearch \bbsearch\s*\(
pthread.h pthread_mutex_getprioceiling \bpthread_mutex_getprioceiling\s*\(
pthread.h pthread_mutex_setprioceiling \bpthread_mutex_setprioceiling\s*\(
pthread.h pthread_attr_destroy \bpthread_attr_destroy\s*\(
pthread.h pthread_attr_init \bpthread_attr_init\s*\(
termios.h cfgetospeed \bcfgetospeed\s*\(
wchar.h wcscoll \bwcscoll\s*\(
wchar.h wcscoll_l \bwcscoll_l\s*\(
sys/select.h pselect \bpselect\s*\(
sys/select.h select \bselect\s*\(
netdb.h endnetent \bendnetent\s*\(
netdb.h getnetbyaddr \bgetnetbyaddr\s*\(
netdb.h getnetbyname \bgetnetbyname\s*\(
netdb.h getnetent \bgetnetent\s*\(
netdb.h setnetent \bsetnetent\s*\(
string.h strerror \bstrerror\s*\(
string.h strerror_l \bstrerror_l\s*\(
string.h strerror_r \bstrerror_r\s*\(
stdlib.h abort \babort\s*\(
pthread.h pthread_cond_destroy \bpthread_cond_destroy\s*\(
pthread.h pthread_cond_init \bpthread_cond_init\s*\(
fenv.h feraiseexcept \bferaiseexcept\s*\(
stropts.h putmsg \bputmsg\s*\(
stropts.h putpmsg \bputpmsg\s*\(
stdlib.h posix_openpt \bposix_openpt\s*\(
sys/mman.h munmap \bmunmap\s*\(
complex.h catan \bcatan\s*\(
complex.h catanf \bcatanf\s*\(
complex.h catanl \bcatanl\s*\(
sys/socket.h socketpair \bsocketpair\s*\(
ctype.h tolower \btolower\s*\(
ctype.h tolower_l \btolower_l\s*\(
search.h tdelete \btdelete\s*\(
search.h tfind \btfind\s*\(
search.h tsearch \btsearch\s*\(
search.h twalk \btwalk\s*\(
sys/resource.h getpriority \bgetpriority\s*\(
sys/resource.h setpriority \bsetpriority\s*\(
stdio.h getc_unlocked \bgetc_unlocked\s*\(
stdio.h getchar_unlocked \bgetchar_unlocked\s*\(
stdio.h putc_unlocked \bputc_unlocked\s*\(
stdio.h putchar_unlocked \bputchar_unlocked\s*\(
ctype.h ispunct \bispunct\s*\(
ctype.h ispunct_l \bispunct_l\s*\(
math.h sin \bsin\s*\(
math.h sinf \bsinf\s*\(
math.h sinl \bsinl\s*\(
wctype.h iswlower \biswlower\s*\(
wctype.h iswlower_l \biswlower_l\s*\(
sys/select.h pselect \bpselect\s*\(
sys/select.h select \bselect\s*\(
complex.h cabs \bcabs\s*\(
complex.h cabsf \bcabsf\s*\(
complex.h cabsl \bcabsl\s*\(
ctype.h iscntrl \biscntrl\s*\(
ctype.h iscntrl_l \biscntrl_l\s*\(
sys/socket.h bind \bbind\s*\(
complex.h casinh \bcasinh\s*\(
complex.h casinhf \bcasinhf\s*\(
complex.h casinhl \bcasinhl\s*\(
ctype.h _toupper \b_toupper\s*\(
math.h cbrt \bcbrt\s*\(
math.h cbrtf \bcbrtf\s*\(
math.h cbrtl \bcbrtl\s*\(
pwd.h endpwent \bendpwent\s*\(
pwd.h getpwent \bgetpwent\s*\(
pwd.h setpwent \bsetpwent\s*\(
wchar.h wcscoll \bwcscoll\s*\(
wchar.h wcscoll_l \bwcscoll_l\s*\(
unistd.h fork \bfork\s*\(
unistd.h getopt \bgetopt\s*\(
math.h nearbyint \bnearbyint\s*\(
math.h nearbyintf \bnearbyintf\s*\(
math.h nearbyintl \bnearbyintl\s*\(
langinfo.h nl_langinfo \bnl_langinfo\s*\(
langinfo.h nl_langinfo_l \bnl_langinfo_l\s*\(
complex.h catanh \bcatanh\s*\(
complex.h catanhf \bcatanhf\s*\(
complex.h catanhl \bcatanhl\s*\(
complex.h ccosh \bccosh\s*\(
complex.h ccoshf \bccoshf\s*\(
complex.h ccoshl \bccoshl\s*\(
math.h isfinite \bisfinite\s*\(
math.h lrint \blrint\s*\(
math.h lrintf \blrintf\s*\(
math.h lrintl \blrintl\s*\(
mqueue.h mq_send \bmq_send\s*\(
mqueue.h mq_timedsend \bmq_timedsend\s*\(
wctype.h iswgraph \biswgraph\s*\(
wctype.h iswgraph_l \biswgraph_l\s*\(
wctype.h towctrans \btowctrans\s*\(
wctype.h towctrans_l \btowctrans_l\s*\(
pthread.h pthread_mutexattr_getpshared \bpthread_mutexattr_getpshared\s*\(
pthread.h pthread_mutexattr_setpshared \bpthread_mutexattr_setpshared\s*\(
stdlib.h ldiv \bldiv\s*\(
stdlib.h lldiv \blldiv\s*\(
pthread.h pthread_mutexattr_getrobust \bpthread_mutexattr_getrobust\s*\(
pthread.h pthread_mutexattr_setrobust \bpthread_mutexattr_setrobust\s*\(
signal.h pthread_sigmask \bpthread_sigmask\s*\(
signal.h sigprocmask \bsigprocmask\s*\(
unistd.h link \blink\s*\(
unistd.h linkat \blinkat\s*\(
stdio.h vdprintf \bvdprintf\s*\(
stdio.h vfprintf \bvfprintf\s*\(
stdio.h vprintf \bvprintf\s*\(
stdio.h vsnprintf \bvsnprintf\s*\(
stdio.h vsprintf \bvsprintf\s*\(
pthread.h pthread_spin_destroy \bpthread_spin_destroy\s*\(
pthread.h pthread_spin_init \bpthread_spin_init\s*\(
ctype.h isgraph \bisgraph\s*\(
ctype.h isgraph_l \bisgraph_l\s*\(
aio.h aio_return \baio_return\s*\(
sys/stat.h futimens \bfutimens\s*\(
sys/stat.h utimensat \butimensat\s*\(
sys/time.h utimes \butimes\s*\(
sys/shm.h shmget \bshmget\s*\(
signal.h sigdelset \bsigdelset\s*\(
trace.h posix_trace_attr_getlogsize \bposix_trace_attr_getlogsize\s*\(
trace.h posix_trace_attr_getmaxdatasize \bposix_trace_attr_getmaxdatasize\s*\(
trace.h posix_trace_attr_getmaxsystemeventsize \bposix_trace_attr_getmaxsystemeventsize\s*\(
trace.h posix_trace_attr_getmaxusereventsize \bposix_trace_attr_getmaxusereventsize\s*\(
trace.h posix_trace_attr_getstreamsize \bposix_trace_attr_getstreamsize\s*\(
trace.h posix_trace_attr_setlogsize \bposix_trace_attr_setlogsize\s*\(
trace.h posix_trace_attr_setmaxdatasize \bposix_trace_attr_setmaxdatasize\s*\(
trace.h posix_trace_attr_setstreamsize \bposix_trace_attr_setstreamsize\s*\(
ndbm.h dbm_clearerr \bdbm_clearerr\s*\(
ndbm.h dbm_close \bdbm_close\s*\(
ndbm.h dbm_delete \bdbm_delete\s*\(
ndbm.h dbm_error \bdbm_error\s*\(
ndbm.h dbm_fetch \bdbm_fetch\s*\(
ndbm.h dbm_firstkey \bdbm_firstkey\s*\(
ndbm.h dbm_nextkey \bdbm_nextkey\s*\(
ndbm.h dbm_open \bdbm_open\s*\(
ndbm.h dbm_store \bdbm_store\s*\(
strings.h strcasecmp \bstrcasecmp\s*\(
strings.h strcasecmp_l \bstrcasecmp_l\s*\(
strings.h strncasecmp \bstrncasecmp\s*\(
strings.h strncasecmp_l \bstrncasecmp_l\s*\(
math.h lround \blround\s*\(
math.h lroundf \blroundf\s*\(
math.h lroundl \blroundl\s*\(
trace.h posix_trace_attr_destroy \bposix_trace_attr_destroy\s*\(
trace.h posix_trace_attr_init \bposix_trace_attr_init\s*\(
dirent.h readdir \breaddir\s*\(
dirent.h readdir_r \breaddir_r\s*\(
stdlib.h rand \brand\s*\(
stdlib.h rand_r \brand_r\s*\(
stdlib.h srand \bsrand\s*\(
spawn.h posix_spawnattr_getsigdefault \bposix_spawnattr_getsigdefault\s*\(
spawn.h posix_spawnattr_setsigdefault \bposix_spawnattr_setsigdefault\s*\(
math.h tgamma \btgamma\s*\(
math.h tgammaf \btgammaf\s*\(
math.h tgammal \btgammal\s*\(
wchar.h wcpncpy \bwcpncpy\s*\(
wchar.h wcsncpy \bwcsncpy\s*\(
spawn.h posix_spawn \bposix_spawn\s*\(
spawn.h posix_spawnp \bposix_spawnp\s*\(
string.h strerror \bstrerror\s*\(
string.h strerror_l \bstrerror_l\s*\(
string.h strerror_r \bstrerror_r\s*\(
strings.h ffs \bffs\s*\(
math.h fmod \bfmod\s*\(
math.h fmodf \bfmodf\s*\(
math.h fmodl \bfmodl\s*\(
math.h sqrt \bsqrt\s*\(
math.h sqrtf \bsqrtf\s*\(
math.h sqrtl \bsqrtl\s*\(
stropts.h isastream \bisastream\s*\(
mqueue.h mq_close \bmq_close\s*\(
stropts.h putmsg \bputmsg\s*\(
stropts.h putpmsg \bputpmsg\s*\(
time.h ctime \bctime\s*\(
time.h ctime_r \bctime_r\s*\(
wchar.h vfwprintf \bvfwprintf\s*\(
wchar.h vswprintf \bvswprintf\s*\(
wchar.h vwprintf \bvwprintf\s*\(
dlfcn.h dlerror \bdlerror\s*\(
pthread.h pthread_attr_getstacksize \bpthread_attr_getstacksize\s*\(
pthread.h pthread_attr_setstacksize \bpthread_attr_setstacksize\s*\(
stdio.h open_memstream \bopen_memstream\s*\(
wchar.h open_wmemstream \bopen_wmemstream\s*\(
string.h strcoll \bstrcoll\s*\(
string.h strcoll_l \bstrcoll_l\s*\(
math.h fmax \bfmax\s*\(
math.h fmaxf \bfmaxf\s*\(
math.h fmaxl \bfmaxl\s*\(
unistd.h dup \bdup\s*\(
unistd.h dup2 \bdup2\s*\(
spawn.h posix_spawnattr_getsigdefault \bposix_spawnattr_getsigdefault\s*\(
spawn.h posix_spawnattr_setsigdefault \bposix_spawnattr_setsigdefault\s*\(
regex.h regcomp \bregcomp\s*\(
regex.h regerror \bregerror\s*\(
regex.h regexec \bregexec\s*\(
regex.h regfree \bregfree\s*\(
trace.h posix_trace_event \bposix_trace_event\s*\(
trace.h posix_trace_eventid_open \bposix_trace_eventid_open\s*\(
aio.h aio_write \baio_write\s*\(
setjmp.h siglongjmp \bsiglongjmp\s*\(
semaphore.h sem_init \bsem_init\s*\(
mqueue.h mq_unlink \bmq_unlink\s*\(
stdlib.h atol \batol\s*\(
stdlib.h atoll \batoll\s*\(
fenv.h fegetround \bfegetround\s*\(
fenv.h fesetround \bfesetround\s*\(
ftw.h ftw \bftw\s*\(
signal.h sigsuspend \bsigsuspend\s*\(
mqueue.h mq_receive \bmq_receive\s*\(
mqueue.h mq_timedreceive \bmq_timedreceive\s*\(
math.h floor \bfloor\s*\(
math.h floorf \bfloorf\s*\(
math.h floorl \bfloorl\s*\(
string.h stpcpy \bstpcpy\s*\(
string.h strcpy \bstrcpy\s*\(
sys/mman.h posix_madvise \bposix_madvise\s*\(
stdio.h setvbuf \bsetvbuf\s*\(
math.h pow \bpow\s*\(
math.h powf \bpowf\s*\(
math.h powl \bpowl\s*\(
signal.h sighold \bsighold\s*\(
signal.h sigignore \bsigignore\s*\(
signal.h sigpause \bsigpause\s*\(
signal.h sigrelse \bsigrelse\s*\(
signal.h sigset \bsigset\s*\(
math.h logb \blogb\s*\(
math.h logbf \blogbf\s*\(
math.h logbl \blogbl\s*\(
time.h timer_getoverrun \btimer_getoverrun\s*\(
time.h timer_gettime \btimer_gettime\s*\(
time.h timer_settime \btimer_settime\s*\(
netdb.h endnetent \bendnetent\s*\(
netdb.h getnetbyaddr \bgetnetbyaddr\s*\(
netdb.h getnetbyname \bgetnetbyname\s*\(
netdb.h getnetent \bgetnetent\s*\(
netdb.h setnetent \bsetnetent\s*\(