forked from hjl-tools/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINTERFACE
1508 lines (1507 loc) · 36.1 KB
/
INTERFACE
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
2.0.7-19981020 2.0.98-19981020
===============================================================================
a64l a64l
abort abort
abs abs
accept accept
access access
acct acct
acos acos
acosf acosf
acosh acosh
acoshf acoshf
acoshl acoshl
acosl acosl
addmntent addmntent
> addseverity NEW: fmtmsg
adjtime adjtime
adjtimex adjtimex
advance advance
alarm alarm
alphasort alphasort
> alphasort64 NEW: LFS
> argp_err_exit_status NEW: argp
> argp_error NEW: argp
> argp_failure NEW: argp
> argp_help NEW: argp
> argp_parse NEW: argp
> argp_program_bug_address NEW: argp
> argp_program_version NEW: argp
> argp_program_version_hook NEW: argp
> argp_state_help NEW: argp
> argp_usage NEW: argp
argz_add argz_add
argz_add_sep argz_add_sep
argz_append argz_append
argz_count argz_count
argz_create argz_create
argz_create_sep argz_create_sep
argz_delete argz_delete
argz_extract argz_extract
argz_insert argz_insert
argz_next argz_next
argz_replace argz_replace
argz_stringify argz_stringify
asctime asctime
asctime_r asctime_r
asin asin
asinf asinf
asinh asinh
asinhf asinhf
asinhl asinhl
asinl asinl
asprintf asprintf
atan atan
atan2 atan2
atan2f atan2f
atan2l atan2l
atanf atanf
atanh atanh
atanhf atanhf
atanhl atanhl
atanl atanl
atexit atexit
atof atof
atoi atoi
atol atol
atoll atoll
> authdes_create NEW: SecureRPC
> authdes_getucred NEW: SecureRPC
> authdes_pk_create NEW: SecureRPC
authnone_create authnone_create
authunix_create authunix_create
authunix_create_default authunix_create_default
> backtrace NEW: GNU ext.
> backtrace_symbols NEW: GNU ext.
> backtrace_symbols_fd NEW: GNU ext.
basename basename
bcmp bcmp
bcopy bcopy
bdflush bdflush
bind bind
bindresvport bindresvport
bindtextdomain bindtextdomain
brk brk
bsd_signal bsd_signal
bsearch bsearch
btowc btowc
bzero bzero
cabs cabs
cabsf cabsf
cabsl cabsl
> cacos NEW: ISO C99
> cacosf NEW: ISO C99
> cacosh NEW: ISO C99
> cacoshf NEW: ISO C99
> cacoshl NEW: ISO C99
> cacosl NEW: ISO C99
calloc calloc
callrpc callrpc
canonicalize_file_name canonicalize_file_name
> capget NEW: kernel
> capset NEW: kernel
> carg NEW: ISO C99
> cargf NEW: ISO C99
> cargl NEW: ISO C99
> casin NEW: ISO C99
> casinf NEW: ISO C99
> casinh NEW: ISO C99
> casinhf NEW: ISO C99
> casinhl NEW: ISO C99
> casinl NEW: ISO C99
> catan NEW: ISO C99
> catanf NEW: ISO C99
> catanh NEW: ISO C99
> catanhf NEW: ISO C99
> catanhl NEW: ISO C99
> catanl NEW: ISO C99
catclose catclose
catgets catgets
catopen catopen
> cbc_crypt NEW: SecureRPC
cbrt cbrt
cbrtf cbrtf
cbrtl cbrtl
> ccos NEW: ISO C99
> ccosf NEW: ISO C99
> ccosh NEW: ISO C99
> ccoshf NEW: ISO C99
> ccoshl NEW: ISO C99
> ccosl NEW: ISO C99
ceil ceil
ceilf ceilf
ceill ceill
> cexp NEW: ISO C99
> cexpf NEW: ISO C99
> cexpl NEW: ISO C99
cfgetispeed cfgetispeed
cfgetospeed cfgetospeed
cfmakeraw cfmakeraw
cfree cfree
cfsetispeed cfsetispeed
cfsetospeed cfsetospeed
cfsetspeed cfsetspeed
chdir chdir
chflags chflags
chmod chmod
chown chown
chroot chroot
> cimag NEW: ISO C99
> cimagf NEW: ISO C99
> cimagl NEW: ISO C99
clearenv clearenv
clearerr clearerr
clearerr_locked < REMOVED
clearerr_unlocked clearerr_unlocked
clnt_broadcast clnt_broadcast
clnt_create clnt_create
clnt_pcreateerror clnt_pcreateerror
clnt_perrno clnt_perrno
clnt_perror clnt_perror
clnt_spcreateerror clnt_spcreateerror
clnt_sperrno clnt_sperrno
clnt_sperror clnt_sperror
clntraw_create clntraw_create
clnttcp_create clnttcp_create
clntudp_bufcreate clntudp_bufcreate
clntudp_create clntudp_create
> clntunix_create NEW: sunrpc ext
clock clock
> clog NEW: ISO C99
> clog10 NEW: ISO C99
> clog10f NEW: ISO C99
> clog10l NEW: ISO C99
> clogf NEW: ISO C99
> clogl NEW: ISO C99
clone clone
close close
closedir closedir
closelog closelog
confstr confstr
> conj NEW: ISO C99
> conjf NEW: ISO C99
> conjl NEW: ISO C99
connect connect
copysign copysign
copysignf copysignf
copysignl copysignl
cos cos
cosf cosf
cosh cosh
coshf coshf
coshl coshl
cosl cosl
> cpow NEW: ISO C99
> cpowf NEW: ISO C99
> cpowl NEW: ISO C99
> cproj NEW: ISO C99
> cprojf NEW: ISO C99
> cprojl NEW: ISO C99
> creal NEW: ISO C99
> crealf NEW: ISO C99
> creall NEW: ISO C99
creat creat
> creat64 NEW: LFS
create_module create_module
> csin NEW: ISO C99
> csinf NEW: ISO C99
> csinh NEW: ISO C99
> csinhf NEW: ISO C99
> csinhl NEW: ISO C99
> csinl NEW: ISO C99
> csqrt NEW: ISO C99
> csqrtf NEW: ISO C99
> csqrtl NEW: ISO C99
> ctan NEW: ISO C99
> ctanf NEW: ISO C99
> ctanh NEW: ISO C99
> ctanhf NEW: ISO C99
> ctanhl NEW: ISO C99
> ctanl NEW: ISO C99
ctermid ctermid
ctime ctime
ctime_r ctime_r
cuserid cuserid
daemon daemon
daylight daylight
dcgettext dcgettext
delete_module delete_module
> des_setparity NEW: SecureRPC
dgettext dgettext
difftime difftime
dirfd dirfd
dirname dirname
div div
dprintf dprintf
drand48 drand48
drand48_r drand48_r
drem drem
dremf dremf
dreml dreml
dup dup
dup2 dup2
dysize dysize
> ecb_crypt NEW: SecureRPC
ecvt ecvt
ecvt_r ecvt_r
endaliasent endaliasent
endfsent endfsent
endgrent endgrent
endhostent endhostent
endmntent endmntent
endnetent endnetent
endnetgrent endnetgrent
endprotoent endprotoent
endpwent endpwent
endrpcent endrpcent
endservent endservent
endspent endspent
endttyent endttyent
endusershell endusershell
endutent endutent
> endutxent NEW: utmpx
environ environ
envz_add envz_add
envz_entry envz_entry
envz_get envz_get
envz_merge envz_merge
envz_remove envz_remove
envz_strip envz_strip
erand48 erand48
erand48_r erand48_r
erf erf
erfc erfc
erfcf erfcf
erfcl erfcl
erff erff
erfl erfl
err err
errno errno
error error
error_at_line error_at_line
error_message_count error_message_count
error_one_per_line error_one_per_line
error_print_progname error_print_progname
errx errx
ether_aton ether_aton
ether_aton_r ether_aton_r
ether_hostton ether_hostton
ether_line ether_line
ether_ntoa ether_ntoa
ether_ntoa_r ether_ntoa_r
ether_ntohost ether_ntohost
euidaccess euidaccess
execl execl
execle execle
execlp execlp
execv execv
execve execve
execvp execvp
exit exit
exp exp
> exp10 NEW: ISO C99
> exp10f NEW: ISO C99
> exp10l NEW: ISO C99
> exp2 NEW: ISO C99
> exp2f NEW: ISO C99
> exp2l NEW: ISO C99
expf expf
expl expl
expm1 expm1
expm1f expm1f
expm1l expm1l
fabs fabs
fabsf fabsf
fabsl fabsl
> fattach NEW: STREAMS
fchdir fchdir
fchflags fchflags
fchmod fchmod
fchown fchown
fclose fclose
fcloseall fcloseall
fcntl fcntl
fcvt fcvt
fcvt_r fcvt_r
fdatasync fdatasync
> fdetach NEW: STREAMS
> fdim NEW: ISO C99
> fdimf NEW: ISO C99
> fdiml NEW: ISO C99
fdopen fdopen
> feclearexcept NEW: ISO C99
> fegetenv NEW: ISO C99
> fegetexceptflag NEW: ISO C99
> fegetround NEW: ISO C99
> feholdexcept NEW: ISO C99
feof feof
feof_locked < REMOVED
feof_unlocked feof_unlocked
> feraiseexcept NEW: ISO C99
ferror ferror
ferror_locked < REMOVED
ferror_unlocked ferror_unlocked
> fesetenv NEW: ISO C99
> fesetexceptflag NEW: ISO C99
> fesetround NEW: ISO C99
> fetestexcept NEW: ISO C99
> feupdateenv NEW: ISO C99
fexecve fexecve
fflush fflush
fflush_locked < REMOVED
fflush_unlocked fflush_unlocked
ffs ffs
> ffsl NEW: GNU ext.
> ffsll NEW: GNU ext.
fgetc fgetc
fgetgrent fgetgrent
fgetgrent_r fgetgrent_r
fgetpos fgetpos
> fgetpos64 NEW: LFS
fgetpwent fgetpwent
fgetpwent_r fgetpwent_r
fgets fgets
> fgets_unlocked NEW: GNU ext.
fgetspent fgetspent
fgetspent_r fgetspent_r
fileno fileno
fileno_locked < REMOVED
fileno_unlocked fileno_unlocked
finite finite
finitef finitef
finitel finitel
flock flock
flockfile flockfile
floor floor
floorf floorf
floorl floorl
> fma NEW: ISO C99
> fmaf NEW: ISO C99
> fmal NEW: ISO C99
> fmax NEW: ISO C99
> fmaxf NEW: ISO C99
> fmaxl NEW: ISO C99
> fmin NEW: ISO C99
> fminf NEW: ISO C99
> fminl NEW: ISO C99
fmod fmod
fmodf fmodf
fmodl fmodl
> fmtmsg NEW: fmtmsg
fnmatch fnmatch
fopen fopen
> fopen64 NEW: LFS
fopencookie fopencookie
fork fork
fpathconf fpathconf
fprintf fprintf
fputc fputc
fputc_locked < REMOVED
fputc_unlocked fputc_unlocked
fputs fputs
> fputs_unlocked NEW: GNU ext.
fread fread
> fread_unlocked NEW: GNU ext.
free free
freeaddrinfo freeaddrinfo
freopen freopen
> freopen64 NEW: LFS
frexp frexp
frexpf frexpf
frexpl frexpl
fscanf fscanf
fseek fseek
> fseeko NEW: Unix98
> fseeko64
fsetpos fsetpos
> fsetpos64 NEW: LFS
fstatfs fstatfs
> fstatfs64 NEW: LFS
> fstatvfs NEW: Unix98
> fstatvfs64 NEW: LFS
fsync fsync
ftell ftell
> ftello NEW: Unix98
> ftello64 NEW: LFS
ftime ftime
ftok ftok
ftruncate ftruncate
> ftruncate64 NEW: LFS
ftrylockfile ftrylockfile
fts_children fts_children
fts_close fts_close
fts_open fts_open
fts_read fts_read
fts_set fts_set
ftw ftw
> ftw64 NEW: LFS
funlockfile funlockfile
fwrite fwrite
> fwrite_unlocked NEW: GNU ext.
> gai_strerror NEW: IPv6
gamma gamma
gamma_r < REMOVED
gammaf gammaf
gammaf_r < REMOVED
gammal gammal
gammal_r < REMOVED
gcvt gcvt
get_avphys_pages get_avphys_pages
get_current_dir_name get_current_dir_name
get_kernel_syms get_kernel_syms
get_myaddress get_myaddress
get_nprocs get_nprocs
get_nprocs_conf get_nprocs_conf
get_phys_pages get_phys_pages
getaddrinfo getaddrinfo
getaliasbyname getaliasbyname
getaliasbyname_r getaliasbyname_r
getaliasent getaliasent
getaliasent_r getaliasent_r
getc getc
getc_locked < REMOVE
getc_unlocked getc_unlocked
getchar getchar
getchar_locked < REMOVED
getchar_unlocked getchar_unlocked
> getcontext
getcwd getcwd
> getdate NEW: Unix98
> getdate_err NEW: Unix98
> getdate_r NEW: GNU ext.
getdelim getdelim
getdirentries getdirentries
getdomainname getdomainname
getdtablesize getdtablesize
getegid getegid
getenv getenv
geteuid geteuid
getfsent getfsent
getfsfile getfsfile
getfsspec getfsspec
getgid getgid
getgrent getgrent
getgrent_r getgrent_r
getgrgid getgrgid
getgrgid_r getgrgid_r
getgrnam getgrnam
getgrnam_r getgrnam_r
getgroups getgroups
gethostbyaddr gethostbyaddr
gethostbyaddr_r gethostbyaddr_r
gethostbyname gethostbyname
gethostbyname2 gethostbyname2
gethostbyname2_r gethostbyname2_r
gethostbyname_r gethostbyname_r
gethostent gethostent
gethostent_r gethostent_r
gethostid gethostid
gethostname gethostname
getitimer getitimer
getline getline
getlogin getlogin
getlogin_r getlogin_r
getmntent getmntent
getmntent_r getmntent_r
> getmsg NEW: STREAMS
> getnameinfo NEW: IPv6
getnetbyaddr getnetbyaddr
getnetbyaddr_r getnetbyaddr_r
getnetbyname getnetbyname
getnetbyname_r getnetbyname_r
getnetent getnetent
getnetent_r getnetent_r
getnetgrent getnetgrent
getnetgrent_r getnetgrent_r
> getnetname NEW: SecureRPC
getopt getopt
getopt_long getopt_long
getopt_long_only getopt_long_only
getpagesize getpagesize
getpass getpass
getpeername getpeername
getpgid getpgid
getpgrp getpgrp
getpid getpid
> getpmsg NEW: STREAMS
getppid getppid
getpriority getpriority
getprotobyname getprotobyname
getprotobyname_r getprotobyname_r
getprotobynumber getprotobynumber
getprotobynumber_r getprotobynumber_r
getprotoent getprotoent
getprotoent_r getprotoent_r
> getpt NEW: Unix98 PTY
getpublickey getpublickey
getpw getpw
getpwent getpwent
getpwent_r getpwent_r
getpwnam getpwnam
getpwnam_r getpwnam_r
getpwuid getpwuid
getpwuid_r getpwuid_r
getresgid getresgid
getresuid getresuid
getrlimit getrlimit
> getrlimit64 NEW: LFS
getrpcbyname getrpcbyname
getrpcbyname_r getrpcbyname_r
getrpcbynumber getrpcbynumber
getrpcbynumber_r getrpcbynumber_r
getrpcent getrpcent
getrpcent_r getrpcent_r
getrpcport getrpcport
getrusage getrusage
gets gets
getsecretkey getsecretkey
getservbyname getservbyname
getservbyname_r getservbyname_r
getservbyport getservbyport
getservbyport_r getservbyport_r
getservent getservent
getservent_r getservent_r
getsid getsid
getsockname getsockname
getsockopt getsockopt
getspent getspent
getspent_r getspent_r
getspnam getspnam
getspnam_r getspnam_r
getsubopt getsubopt
gettext gettext
gettimeofday gettimeofday
getttyent getttyent
getttynam getttynam
getuid getuid
getusershell getusershell
getutent getutent
getutent_r getutent_r
getutid getutid
getutid_r getutid_r
getutline getutline
getutline_r getutline_r
> getutxent NEW: utmpx
> getutxid NEW: utmpx
> getutxline NEW: utmpx
getw getw
getwd getwd
glob glob
> glob64 NEW: GNU ext.
glob_pattern_p glob_pattern_p
globfree globfree
> globfree64 NEW: GNU ext.
gmtime gmtime
gmtime_r gmtime_r
> gnu_get_libc_release NEW: GNU ext.
> gnu_get_libc_version NEW: GNU ext.
> grantpt NEW: Unix98 PTY
group_member group_member
gsignal gsignal
gtty gtty
h_errlist h_errlist
h_errno h_errno
h_nerr h_nerr
hasmntopt hasmntopt
hcreate hcreate
hcreate_r hcreate_r
hdestroy hdestroy
hdestroy_r hdestroy_r
herror herror
> host2netname NEW: SecureRPC
hsearch hsearch
hsearch_r hsearch_r
hstrerror hstrerror
htonl htonl
htons htons
hypot hypot
hypotf hypotf
hypotl hypotl
> iconv NEW: iconv
> iconv_close NEW: iconv
> iconv_open NEW: iconv
> if_freenameindex NEW: IPv6
> if_indextoname NEW: IPv6
> if_nameindex NEW: IPv6
> if_nametoindex NEW: IPv6
ilogb ilogb
ilogbf ilogbf
ilogbl ilogbl
> in6addr_any NEW: IPv6
> in6addr_loopback NEW: IPv6
index index
> inet6_isipv4mapped NEW: IPv6
inet_addr inet_addr
inet_aton inet_aton
inet_lnaof inet_lnaof
inet_makeaddr inet_makeaddr
inet_netof inet_netof
inet_network inet_network
inet_nsap_addr inet_nsap_addr
inet_nsap_ntoa inet_nsap_ntoa
inet_ntoa inet_ntoa
inet_ntop inet_ntop
inet_pton inet_pton
init_module init_module
initgroups initgroups
initstate initstate
initstate_r initstate_r
innetgr innetgr
insque insque
ioctl ioctl
ioperm ioperm
iopl iopl
iruserok iruserok
isalnum isalnum
isalpha isalpha
isascii isascii
> isastream NEW: STREAMS
isatty isatty
isblank isblank
iscntrl iscntrl
isdigit isdigit
isfdtype isfdtype
isgraph isgraph
isinf isinf
isinff isinff
isinfl isinfl
islower islower
isnan isnan
isnanf isnanf
isnanl isnanl
isprint isprint
ispunct ispunct
isspace isspace
isupper isupper
iswalnum iswalnum
iswalpha iswalpha
> iswblank NEW: GNU ext.
iswcntrl iswcntrl
iswctype iswctype
iswdigit iswdigit
iswgraph iswgraph
iswlower iswlower
iswprint iswprint
iswpunct iswpunct
iswspace iswspace
iswupper iswupper
iswxdigit iswxdigit
isxdigit isxdigit
j0 j0
j0f j0f
j0l j0l
j1 j1
j1f j1f
j1l j1l
jn jn
jnf jnf
jnl jnl
jrand48 jrand48
jrand48_r jrand48_r
> key_decryptsession NEW: SecureRPC
> key_decryptsession_pk NEW: SecureRPC
> key_encryptsession NEW: SecureRPC
> key_encryptsession_pk NEW: SecureRPC
> key_gendes NEW: SecureRPC
> key_get_conv NEW: SecureRPC
> key_secretkey_is_set NEW: SecureRPC
> key_setnet NEW: SecureRPC
> key_setsecret NEW: SecureRPC
kill kill
killpg killpg
klogctl klogctl
l64a l64a
labs labs
lchown lchown
lckpwdf lckpwdf
lcong48 lcong48
lcong48_r lcong48_r
ldexp ldexp
ldexpf ldexpf
ldexpl ldexpl
ldiv ldiv
lfind lfind
lgamma lgamma
lgamma_r lgamma_r
lgammaf lgammaf
lgammaf_r lgammaf_r
lgammal lgammal
lgammal_r lgammal_r
link link
listen listen
llabs llabs
lldiv lldiv
> llrint NEW: ISO C99
> llrintf NEW: ISO C99
> llrintl NEW: ISO C99
> llround NEW: ISO C99
> llroundf NEW: ISO C99
> llroundl NEW: ISO C99
llseek llseek
loc1 loc1
loc2 loc2
localeconv localeconv
localtime localtime
localtime_r localtime_r
lockf lockf
locs locs
log log
log10 log10
log10f log10f
log10l log10l
log1p log1p
log1pf log1pf
log1pl log1pl
> log2 NEW: ISO C99
> log2f NEW: ISO C99
> log2l NEW: ISO C99
logb logb
logbf logbf
logbl logbl
logf logf
logl logl
longjmp longjmp
lrand48 lrand48
lrand48_r lrand48_r
> lrint NEW: ISO C99
> lrintf NEW: ISO C99
> lrintl NEW: ISO C99
> lround NEW: ISO C99
> lroundf NEW: ISO C99
> lroundl NEW: ISO C99
lsearch lsearch
lseek lseek
> lseek64 NEW: LFS
madvise madvise
> makecontext NEW: Unix98
mallinfo mallinfo
malloc malloc
malloc_get_state malloc_get_state
malloc_set_state malloc_set_state
malloc_stats malloc_stats
malloc_trim malloc_trim
malloc_usable_size malloc_usable_size
mallopt mallopt
mallwatch mallwatch
matherr matherr
mblen mblen
mbrlen mbrlen
mbrtowc mbrtowc
mbsinit mbsinit
mbsnrtowcs mbsnrtowcs
mbsrtowcs mbsrtowcs
mbstowcs mbstowcs
mbtowc mbtowc
mcheck mcheck
mcount mcount
memalign memalign
memccpy memccpy
memchr memchr
memcmp memcmp
memcpy memcpy
memfrob memfrob
memmem memmem
memmove memmove
> mempcpy NEW: GNU ext.
memset memset
mkdir mkdir
mkfifo mkfifo
mkstemp mkstemp
mktemp mktemp
mktime mktime
mlock mlock
mlockall mlockall
mmap mmap
> mmap64 NEW: LFS
modf modf
modff modff
modfl modfl
moncontrol < REMOVED
> modify_ldt NEW: kernel
monstartup monstartup
mount mount
mprobe mprobe
mprotect mprotect
mrand48 mrand48
mrand48_r mrand48_r
mremap mremap
msgctl msgctl
msgget msgget
msgrcv msgrcv
msgsnd msgsnd
msync msync
mtrace mtrace
munlock munlock
munlockall munlockall
munmap munmap
muntrace muntrace
> nan NEW: ISO C99
> nanf NEW: ISO C99
> nanl NEW: ISO C99
nanosleep nanosleep
> nearbyint NEW: ISO C99
> nearbyintf NEW: ISO C99
> nearbyintl NEW: ISO C99
> netname2host NEW: Secure RPC
> netname2user NEW: Secure RPC
nextafter nextafter
nextafterf nextafterf
nextafterl nextafterl
> nexttoward NEW: ISO C99
> nexttowardf NEW: ISO C99
> nexttowardl NEW: ISO C99
nfsservctl nfsservctl
> nftw NEW: Unix98
> nftw64 NEW: LFS
nice nice
nl_langinfo nl_langinfo
nrand48 nrand48
nrand48_r nrand48_r
ntohl ntohl
ntohs ntohs
obstack_alloc_failed_handler obstack_alloc_failed_handler
obstack_exit_failure obstack_exit_failure
obstack_free obstack_free
obstack_printf obstack_printf
obstack_vprintf obstack_vprintf
on_exit on_exit
open open
> open64 NEW: LFS
open_memstream open_memstream
opendir opendir
openlog openlog
optarg optarg
opterr opterr
optind optind
optopt optopt
parse_printf_format parse_printf_format
> passwd2des NEW: SecureRPC
pathconf pathconf
pause pause
pclose pclose
perror perror
personality personality
pipe pipe
pmap_getmaps pmap_getmaps
pmap_getport pmap_getport
pmap_rmtcall pmap_rmtcall
pmap_set pmap_set
pmap_unset pmap_unset
poll poll
popen popen
pow pow
> pow10 NEW: GNU ext.
> pow10f NEW: GNU ext.
> pow10l NEW: GNU ext.
powf powf
powl powl
prctl prctl
> pread NEW: Unix98
> pread64 NEW: LFS
printf printf
> printf_size NEW: GNU ext.
> printf_size_info NEW: GNU ext.
profil profil
profil_counter < REMOVED
program_invocation_name program_invocation_name
program_invocation_short_name program_invocation_short_name
pselect pselect
psignal psignal
pthread_attr_destroy pthread_attr_destroy
pthread_attr_getdetachstate pthread_attr_getdetachstate
pthread_attr_getinheritsched pthread_attr_getinheritsched
pthread_attr_getschedparam pthread_attr_getschedparam
pthread_attr_getschedpolicy pthread_attr_getschedpolicy
pthread_attr_getscope pthread_attr_getscope
pthread_attr_init pthread_attr_init
pthread_attr_setdetachstate pthread_attr_setdetachstate
pthread_attr_setinheritsched pthread_attr_setinheritsched
pthread_attr_setschedparam pthread_attr_setschedparam
pthread_attr_setschedpolicy pthread_attr_setschedpolicy
pthread_attr_setscope pthread_attr_setscope
pthread_cond_broadcast pthread_cond_broadcast
pthread_cond_destroy pthread_cond_destroy
pthread_cond_init pthread_cond_init
pthread_cond_signal pthread_cond_signal
pthread_cond_wait pthread_cond_wait
pthread_condattr_destroy pthread_condattr_destroy
pthread_condattr_init pthread_condattr_init
pthread_equal pthread_equal
pthread_exit pthread_exit
pthread_getschedparam pthread_getschedparam
pthread_mutex_destroy pthread_mutex_destroy
pthread_mutex_init pthread_mutex_init
pthread_mutex_lock pthread_mutex_lock
pthread_mutex_unlock pthread_mutex_unlock
pthread_mutexattr_getkind_np < REPLACED
pthread_mutexattr_setkind_np < REPLACED
pthread_self pthread_self
pthread_setcancelstate pthread_setcancelstate
pthread_setcanceltype pthread_setcanceltype
pthread_setschedparam pthread_setschedparam
ptrace ptrace
> ptsname NEW: Unix98 PTY
> ptsname_r NEW: Unix98 PTY
putc putc
putc_locked < REMOVED
putc_unlocked putc_unlocked
putchar putchar
putchar_locked < REMOVED
putchar_unlocked putchar_unlocked
putenv putenv
> putgrent NEW: GNU ext.
> putmsg NEW: STREAMS
> putpmsg NEW: STREAMS
putpwent putpwent
puts puts
putspent putspent
pututline pututline
> pututxline NEW: utmpx
putw putw
pvalloc pvalloc
> pwrite NEW: Unix98
> pwrite64 NEW: LFS
qecvt qecvt
qecvt_r qecvt_r
qfcvt qfcvt
qfcvt_r qfcvt_r
qgcvt qgcvt
qsort qsort
query_module query_module
quotactl quotactl
raise raise
rand rand
rand_r rand_r
random random
random_r random_r
rcmd rcmd
re_comp re_comp
re_compile_fastmap re_compile_fastmap
re_compile_pattern re_compile_pattern
re_exec re_exec
re_match re_match
re_match_2 re_match_2
re_max_failures re_max_failures
re_search re_search
re_search_2 re_search_2
re_set_registers re_set_registers
re_set_syntax re_set_syntax
re_syntax_options re_syntax_options
read read
readdir readdir
> readdir64 NEW: LFS
> readdir64_r NEW: LFS
readdir_r readdir_r
readlink readlink
readv readv
realloc realloc
realpath realpath
reboot reboot