blob: 40bbb1e76c365b3c42998d0f7d904629af2590a6 (
plain) (
blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
|
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 C 9x
> cacosf NEW: ISO C 9x
> cacosh NEW: ISO C 9x
> cacoshf NEW: ISO C 9x
> cacoshl NEW: ISO C 9x
> cacosl NEW: ISO C 9x
calloc calloc
callrpc callrpc
canonicalize_file_name canonicalize_file_name
> capget NEW: kernel
> capset NEW: kernel
> carg NEW: ISO C 9x
> cargf NEW: ISO C 9x
> cargl NEW: ISO C 9x
> casin NEW: ISO C 9x
> casinf NEW: ISO C 9x
> casinh NEW: ISO C 9x
> casinhf NEW: ISO C 9x
> casinhl NEW: ISO C 9x
> casinl NEW: ISO C 9x
> catan NEW: ISO C 9x
> catanf NEW: ISO C 9x
> catanh NEW: ISO C 9x
> catanhf NEW: ISO C 9x
> catanhl NEW: ISO C 9x
> catanl NEW: ISO C 9x
catclose catclose
catgets catgets
catopen catopen
> cbc_crypt NEW: SecureRPC
cbrt cbrt
cbrtf cbrtf
cbrtl cbrtl
> ccos NEW: ISO C 9x
> ccosf NEW: ISO C 9x
> ccosh NEW: ISO C 9x
> ccoshf NEW: ISO C 9x
> ccoshl NEW: ISO C 9x
> ccosl NEW: ISO C 9x
ceil ceil
ceilf ceilf
ceill ceill
> cexp NEW: ISO C 9x
> cexpf NEW: ISO C 9x
> cexpl NEW: ISO C 9x
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 C 9x
> cimagf NEW: ISO C 9x
> cimagl NEW: ISO C 9x
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 C 9x
> clog10 NEW: ISO C 9x
> clog10f NEW: ISO C 9x
> clog10l NEW: ISO C 9x
> clogf NEW: ISO C 9x
> clogl NEW: ISO C 9x
clone clone
close close
closedir closedir
closelog closelog
confstr confstr
> conj NEW: ISO C 9x
> conjf NEW: ISO C 9x
> conjl NEW: ISO C 9x
connect connect
copysign copysign
copysignf copysignf
copysignl copysignl
cos cos
cosf cosf
cosh cosh
coshf coshf
coshl coshl
cosl cosl
> cpow NEW: ISO C 9x
> cpowf NEW: ISO C 9x
> cpowl NEW: ISO C 9x
> cproj NEW: ISO C 9x
> cprojf NEW: ISO C 9x
> cprojl NEW: ISO C 9x
> creal NEW: ISO C 9x
> crealf NEW: ISO C 9x
> creall NEW: ISO C 9x
creat creat
> creat64 NEW: LFS
create_module create_module
> csin NEW: ISO C 9x
> csinf NEW: ISO C 9x
> csinh NEW: ISO C 9x
> csinhf NEW: ISO C 9x
> csinhl NEW: ISO C 9x
> csinl NEW: ISO C 9x
> csqrt NEW: ISO C 9x
> csqrtf NEW: ISO C 9x
> csqrtl NEW: ISO C 9x
> ctan NEW: ISO C 9x
> ctanf NEW: ISO C 9x
> ctanh NEW: ISO C 9x
> ctanhf NEW: ISO C 9x
> ctanhl NEW: ISO C 9x
> ctanl NEW: ISO C 9x
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 C 9x
> exp10f NEW: ISO C 9x
> exp10l NEW: ISO C 9x
> exp2 NEW: ISO C 9x
> exp2f NEW: ISO C 9x
> exp2l NEW: ISO C 9x
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 C 9x
> fdimf NEW: ISO C 9x
> fdiml NEW: ISO C 9x
fdopen fdopen
> feclearexcept NEW: ISO C 9x
> fegetenv NEW: ISO C 9x
> fegetexceptflag NEW: ISO C 9x
> fegetround NEW: ISO C 9x
> feholdexcept NEW: ISO C 9x
feof feof
feof_locked < REMOVED
feof_unlocked feof_unlocked
> feraiseexcept NEW: ISO C 9x
ferror ferror
ferror_locked < REMOVED
ferror_unlocked ferror_unlocked
> fesetenv NEW: ISO C 9x
> fesetexceptflag NEW: ISO C 9x
> fesetround NEW: ISO C 9x
> fetestexcept NEW: ISO C 9x
> feupdateenv NEW: ISO C 9x
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 C 9x
> fmaf NEW: ISO C 9x
> fmal NEW: ISO C 9x
> fmax NEW: ISO C 9x
> fmaxf NEW: ISO C 9x
> fmaxl NEW: ISO C 9x
> fmin NEW: ISO C 9x
> fminf NEW: ISO C 9x
> fminl NEW: ISO C 9x
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 C 9x
> llrintf NEW: ISO C 9x
> llrintl NEW: ISO C 9x
> llround NEW: ISO C 9x
> llroundf NEW: ISO C 9x
> llroundl NEW: ISO C 9x
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 C 9x
> log2f NEW: ISO C 9x
> log2l NEW: ISO C 9x
logb logb
logbf logbf
logbl logbl
logf logf
logl logl
longjmp longjmp
lrand48 lrand48
lrand48_r lrand48_r
> lrint NEW: ISO C 9x
> lrintf NEW: ISO C 9x
> lrintl NEW: ISO C 9x
> lround NEW: ISO C 9x
> lroundf NEW: ISO C 9x
> lroundl NEW: ISO C 9x
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 C 9x
> nanf NEW: ISO C 9x
> nanl NEW: ISO C 9x
nanosleep nanosleep
> nearbyint NEW: ISO C 9x
> nearbyintf NEW: ISO C 9x
> nearbyintl NEW: ISO C 9x
> netname2host NEW: Secure RPC
> netname2user NEW: Secure RPC
nextafter nextafter
nextafterf nextafterf
nextafterl nextafterl
> nextafterx NEW: ISO C 9x
> nextafterxf NEW: ISO C 9x
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
recv recv
recvfrom recvfrom
recvmsg recvmsg
regcomp regcomp
regerror regerror
regexec regexec
regfree regfree
register_printf_function register_printf_function
registerrpc registerrpc
remainder remainder
remainderf remainderf
remainderl remainderl
remove remove
remque remque
> remquo NEW: ISO C 9x
> remquof NEW: ISO C 9x
> remquol NEW: ISO C 9x
rename rename
res_init res_init
revoke revoke
rewind rewind
rewinddir rewinddir
rexec rexec
rexecoptions rexecoptions
rindex rindex
rint rint
rintf rintf
rintl rintl
rmdir rmdir
> round NEW: ISO C 9x
> roundf NEW: ISO C 9x
> roundl NEW: ISO C 9x
rpc_createerr rpc_createerr
rpmatch rpmatch
rresvport rresvport
> rtime NEW: GNU ext.
ruserok ruserok
ruserpass ruserpass
sbrk sbrk
scalb scalb
scalbf scalbf
scalbl scalbl
> scalbln NEW: ISO C 9x
> scalblnf NEW: ISO C 9x
> scalblnl NEW: ISO C 9x
scalbn scalbn
scalbnf scalbnf
scalbnl scalbnl
scandir scandir
> scandir64 NEW: LFS
scanf scanf
sched_get_priority_max sched_get_priority_max
sched_get_priority_min sched_get_priority_min
sched_getparam sched_getparam
sched_getscheduler sched_getscheduler
sched_rr_get_interval sched_rr_get_interval
sched_setparam sched_setparam
sched_setscheduler sched_setscheduler
sched_yield sched_yield
seed48 seed48
seed48_r seed48_r
seekdir seekdir
select select
semctl semctl
semget semget
semop semop
send send
> sendfile NEW: kernel
sendmsg sendmsg
sendto sendto
setaliasent setaliasent
setbuf setbuf
setbuffer setbuffer
> setcontext NEW: Unix98
setdomainname setdomainname
setegid setegid
setenv setenv
seteuid seteuid
setfsent setfsent
setfsgid setfsgid
setfsuid setfsuid
setgid setgid
setgrent setgrent
setgroups setgroups
sethostent sethostent
sethostid sethostid
sethostname sethostname
setitimer setitimer
setjmp setjmp
setlinebuf setlinebuf
setlocale setlocale
setlogin setlogin
setlogmask setlogmask
setmntent setmntent
setnetent setnetent
setnetgrent setnetgrent
setpgid setpgid
setpgrp setpgrp
setpriority setpriority
setprotoent setprotoent
setpwent setpwent
setregid setregid
setresgid setresgid
setresuid setresuid
setreuid setreuid
setrlimit setrlimit
> setrlimit64 NEW: LFS
setrpcent setrpcent
setservent setservent
setsid setsid
setsockopt setsockopt
setspent setspent
setstate setstate
setstate_r setstate_r
settimeofday settimeofday
setttyent setttyent
setuid setuid
setusershell setusershell
setutent setutent
> setutxent NEW: utmpx
setvbuf setvbuf
sgetspent sgetspent
sgetspent_r sgetspent_r
shmat shmat
shmctl shmctl
shmdt shmdt
shmget shmget
shutdown shutdown
sigaction sigaction
sigaddset sigaddset
sigaltstack sigaltstack
sigandset sigandset
sigblock sigblock
sigdelset sigdelset
sigemptyset sigemptyset
sigfillset sigfillset
siggetmask siggetmask
> sighold NEW: Unix98
> sigignore NEW: Unix98
siginterrupt siginterrupt
sigisemptyset sigisemptyset
sigismember sigismember
siglongjmp siglongjmp
signal signal
signgam signgam
significand significand
significandf significandf
significandl significandl
sigorset sigorset
sigpause sigpause
sigpending sigpending
sigprocmask sigprocmask
> sigqueue NEW: POSIX.1b
> sigrelse NEW: Unix98
sigreturn sigreturn
> sigset NEW: POSIX.1b
sigsetmask sigsetmask
sigstack sigstack
sigsuspend sigsuspend
> sigtimedwait NEW: POSIX.1b
sigvec sigvec
sigwait sigwait
> sigwaitinfo NEW: POSIX.1b
sin sin
> sincos NEW: GNU ext.
> sincosf NEW: GNU ext.
> sincosl NEW: GNU ext.
sinf sinf
sinh sinh
sinhf sinhf
sinhl sinhl
sinl sinl
sleep sleep
snprintf snprintf
socket socket
socketpair socketpair
sprintf sprintf
sqrt sqrt
sqrtf sqrtf
sqrtl sqrtl
srand srand
srand48 srand48
srand48_r srand48_r
srandom srandom
srandom_r srandom_r
sscanf sscanf
ssignal ssignal
sstk sstk
statfs statfs
> statfs64 NEW: LFS
> statvfs NEW: Unix98
> statvfs64 NEW: LFS
stderr stderr
stdin stdin
stdout stdout
step step
stime stime
stpcpy stpcpy
stpncpy stpncpy
strcasecmp strcasecmp
> strcasestr NEW: GNU ext.
strcat strcat
strchr strchr
strcmp strcmp
strcoll strcoll
strcpy strcpy
strcspn strcspn
strdup strdup
strerror strerror
strerror_r strerror_r
strfmon strfmon
strfry strfry
strftime strftime
> strfxtime NEW: ISO C 9x
strlen strlen
strncasecmp strncasecmp
strncat strncat
strncmp strncmp
strncpy strncpy
strndup strndup
strnlen strnlen
strpbrk strpbrk
strptime strptime
strrchr strrchr
strsep strsep
strsignal strsignal
strspn strspn
strstr strstr
strtod strtod
strtof strtof
> strtoimax NEW: ISO C 9x
strtok strtok
strtok_r strtok_r
strtol strtol
strtold strtold
strtoll strtoll
strtoq strtoq
strtoul strtoul
strtoull strtoull
> strtoumax NEW: ISO C 9x
strtouq strtouq
> strverscmp NEW: GNU ext.
strxfrm strxfrm
stty stty
svc_exit svc_exit
svc_fdset svc_fdset
svc_getreq svc_getreq
svc_getreqset svc_getreqset
svc_register svc_register
svc_run svc_run
svc_sendreply svc_sendreply
svc_unregister svc_unregister
> svcauthdes_stats NEW: SecureRPC
svcerr_auth svcerr_auth
svcerr_decode svcerr_decode
svcerr_noproc svcerr_noproc
svcerr_noprog svcerr_noprog
svcerr_progvers svcerr_progvers
svcerr_systemerr svcerr_systemerr
svcerr_weakauth svcerr_weakauth
svcfd_create svcfd_create
svcraw_create svcraw_create
svctcp_create svctcp_create
svcudp_bufcreate svcudp_bufcreate
svcudp_create svcudp_create
svcudp_enablecache svcudp_enablecache
> svcunix_create NEW: sunrpc etx
> svcunixfd_create NEW: sunrpc ext
swab swab
> swapcontext NEW: Unix98
swapoff swapoff
swapon swapon
symlink symlink
sync sync
sys_errlist sys_errlist
sys_nerr sys_nerr
sys_sigabbrev sys_sigabbrev
sys_siglist sys_siglist
syscall syscall
sysconf sysconf
sysctl sysctl
sysinfo sysinfo
syslog syslog
system system
sysv_signal sysv_signal
tan tan
tanf tanf
tanh tanh
tanhf tanhf
tanhl tanhl
tanl tanl
tcdrain tcdrain
tcflow tcflow
tcflush tcflush
tcgetattr tcgetattr
tcgetpgrp tcgetpgrp
> tcgetsid NEW: Unix98 PTY
tcsendbreak tcsendbreak
tcsetattr tcsetattr
tcsetpgrp tcsetpgrp
tdelete tdelete
> tdestroy NEW: GNU ext.
telldir telldir
tempnam tempnam
textdomain textdomain
tfind tfind
> tgamma NEW: ISO C 9x
> tgammaf NEW: ISO C 9x
> tgammal NEW: ISO C 9x
time time
timegm timegm
timelocal timelocal
times times
timezone timezone
tmpfile tmpfile
> tmpfile64 NEW: LFS
tmpnam tmpnam
tmpnam_r tmpnam_r
toascii toascii
tolower tolower
toupper toupper
towctrans towctrans
towlower towlower
towupper towupper
tr_break tr_break
> trunc NEW: ISO C 9x
truncate truncate
> truncate64 NEW: LFS
> truncf NEW: ISO C 9x
> truncl NEW: ISO C 9x
tsearch tsearch
ttyname ttyname
ttyname_r ttyname_r
ttyslot ttyslot
twalk twalk
tzname tzname
tzset tzset
ualarm ualarm
ulckpwdf ulckpwdf
ulimit ulimit
umask umask
umount umount
> umount2 NEW: kernel
uname uname
ungetc ungetc
unlink unlink
> unlockpt NEW: Unix98 PTY
unsetenv unsetenv
updwtmp updwtmp
> updwtmpx NEW: utmpx
uselib uselib
> user2netname NEW: SecureRPC
usleep usleep
ustat ustat
utime utime
utimes utimes
utmpname utmpname
> utmpxname NEW: utmpx
valloc valloc
vasprintf vasprintf
vdprintf vdprintf
verr verr
verrx verrx
> versionsort NEW: GNU ext.
> versionsort64 NEW: LFS
vfork vfork
vfprintf vfprintf
vfscanf vfscanf
vhangup vhangup
vlimit vlimit
vm86 vm86
vprintf vprintf
vscanf vscanf
vsnprintf vsnprintf
vsprintf vsprintf
vsscanf vsscanf
vsyslog vsyslog
vtimes vtimes
vwarn vwarn
vwarnx vwarnx
wait wait
wait3 wait3
wait4 wait4
> waitid NEW: Unix98
waitpid waitpid
warn warn
warnx warnx
wcpcpy wcpcpy
wcpncpy wcpncpy
wcrtomb wcrtomb
> wcscasecmp NEW: GNU ext.
wcscat wcscat
wcschr wcschr
wcscmp wcscmp
wcscoll wcscoll
wcscpy wcscpy
wcscspn wcscspn
wcsdup wcsdup
wcslen wcslen
> wcsncasecmp NEW: GNU ext.
wcsncat wcsncat
wcsncmp wcsncmp
wcsncpy wcsncpy
> wcsnlen NEW: GNU ext.
wcsnrtombs wcsnrtombs
wcspbrk wcspbrk
wcsrchr wcsrchr
wcsrtombs wcsrtombs
wcsspn wcsspn
wcsstr wcsstr
wcstod wcstod
wcstof wcstof
> wcstoimax NEW: ISO C 9x
wcstok wcstok
wcstol wcstol
wcstold wcstold
> wcstoll NEW: ISO C 9x
wcstombs wcstombs
wcstoq wcstoq
wcstoul wcstoul
> wcstoull NEW: ISO C 9x
> wcstoumax NEW: ISO C 9x
wcstouq wcstouq
> wcswcs NEW: Unix98
wcswidth wcswidth
wcsxfrm wcsxfrm
wctob wctob
wctomb wctomb
wctrans wctrans
wctype wctype
wcwidth wcwidth
wmemchr wmemchr
wmemcmp wmemcmp
wmemcpy wmemcpy
wmemmove wmemmove
wmemset wmemset
> wordexp NEW: POSIX.2
> wordfree NEW: POSIX.2
write write
write_profiling < REMOVED
writev writev
> xdecrypt NEW: SecureRPC
xdr_accepted_reply xdr_accepted_reply
xdr_array xdr_array
> xdr_authdes_cred NEW: SecureRPC
> xdr_authdes_verf NEW: SecureRPC
xdr_authunix_parms xdr_authunix_parms
xdr_bool xdr_bool
xdr_bytes xdr_bytes
xdr_callhdr xdr_callhdr
xdr_callmsg xdr_callmsg
xdr_char xdr_char
> xdr_cryptkeyarg NEW: SecureRPC
> xdr_cryptkeyarg2 NEW: SecureRPC
> xdr_cryptkeyres NEW: SecureRPC
xdr_des_block xdr_des_block
xdr_double xdr_double
xdr_enum xdr_enum
xdr_float xdr_float
xdr_free xdr_free
> xdr_getcredres NEW: SecureRPC
xdr_int xdr_int
> xdr_key_netstarg NEW: SecureRPC
> xdr_key_netstres NEW: SecureRPC
> xdr_keybuf NEW: SecureRPC
> xdr_keystatus NEW: SecureRPC
xdr_long xdr_long
> xdr_netnamestr NEW: SecureRPC
xdr_netobj xdr_netobj
xdr_opaque xdr_opaque
xdr_opaque_auth xdr_opaque_auth
xdr_pmap xdr_pmap
xdr_pmaplist xdr_pmaplist
xdr_pointer xdr_pointer
xdr_reference xdr_reference
xdr_rejected_reply xdr_rejected_reply
xdr_replymsg xdr_replymsg
xdr_rmtcall_args xdr_rmtcall_args
xdr_rmtcallres xdr_rmtcallres
xdr_short xdr_short
> xdr_sizeof NEW: SecureRPC
xdr_string xdr_string
xdr_u_char xdr_u_char
xdr_u_int xdr_u_int
xdr_u_long xdr_u_long
xdr_u_short xdr_u_short
xdr_union xdr_union
> xdr_unixcred NEW: sunrpc ext
xdr_vector xdr_vector
xdr_void xdr_void
xdr_wrapstring xdr_wrapstring
xdrmem_create xdrmem_create
xdrrec_create xdrrec_create
xdrrec_endofrecord xdrrec_endofrecord
xdrrec_eof xdrrec_eof
xdrrec_skiprecord xdrrec_skiprecord
xdrstdio_create xdrstdio_create
> xencrypt NEW: SecureRPC
xprt_register xprt_register
xprt_unregister xprt_unregister
y0 y0
y0f y0f
y0l y0l
y1 y1
y1f y1f
y1l y1l
yn yn
ynf ynf
ynl ynl
|