hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
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
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
This is libc.info, produced by makeinfo version 5.1 from libc.texinfo.
 
This is ‘The GNU C Library Reference Manual’, for version 2.33 (GNU).
 
   Copyright © 1993–2021 Free Software Foundation, Inc.
 
   Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being “Free Software Needs Free Documentation” and
“GNU Lesser General Public License”, the Front-Cover texts being “A GNU
Manual”, and with the Back-Cover Texts as in (a) below.  A copy of the
license is included in the section entitled "GNU Free Documentation
License".
 
   (a) The FSF’s Back-Cover Text is: “You have the freedom to copy and
modify this GNU manual.  Buying copies from the FSF supports it in
developing GNU and promoting software freedom.”
INFO-DIR-SECTION Software libraries
START-INFO-DIR-ENTRY
* Libc: (libc).                 C library.
END-INFO-DIR-ENTRY
 
INFO-DIR-SECTION GNU C library functions and macros
START-INFO-DIR-ENTRY
* ALTWERASE: (libc)Local Modes.
* ARGP_ERR_UNKNOWN: (libc)Argp Parser Functions.
* ARG_MAX: (libc)General Limits.
* BC_BASE_MAX: (libc)Utility Limits.
* BC_DIM_MAX: (libc)Utility Limits.
* BC_SCALE_MAX: (libc)Utility Limits.
* BC_STRING_MAX: (libc)Utility Limits.
* BRKINT: (libc)Input Modes.
* BUFSIZ: (libc)Controlling Buffering.
* CCTS_OFLOW: (libc)Control Modes.
* CHAR_BIT: (libc)Width of Type.
* CHILD_MAX: (libc)General Limits.
* CIGNORE: (libc)Control Modes.
* CLK_TCK: (libc)Processor Time.
* CLOCAL: (libc)Control Modes.
* CLOCKS_PER_SEC: (libc)CPU Time.
* CLOCK_MONOTONIC: (libc)Getting the Time.
* CLOCK_REALTIME: (libc)Getting the Time.
* COLL_WEIGHTS_MAX: (libc)Utility Limits.
* CPU_CLR: (libc)CPU Affinity.
* CPU_FEATURE_USABLE: (libc)X86.
* CPU_ISSET: (libc)CPU Affinity.
* CPU_SET: (libc)CPU Affinity.
* CPU_SETSIZE: (libc)CPU Affinity.
* CPU_ZERO: (libc)CPU Affinity.
* CREAD: (libc)Control Modes.
* CRTS_IFLOW: (libc)Control Modes.
* CS5: (libc)Control Modes.
* CS6: (libc)Control Modes.
* CS7: (libc)Control Modes.
* CS8: (libc)Control Modes.
* CSIZE: (libc)Control Modes.
* CSTOPB: (libc)Control Modes.
* DTTOIF: (libc)Directory Entries.
* E2BIG: (libc)Error Codes.
* EACCES: (libc)Error Codes.
* EADDRINUSE: (libc)Error Codes.
* EADDRNOTAVAIL: (libc)Error Codes.
* EADV: (libc)Error Codes.
* EAFNOSUPPORT: (libc)Error Codes.
* EAGAIN: (libc)Error Codes.
* EALREADY: (libc)Error Codes.
* EAUTH: (libc)Error Codes.
* EBACKGROUND: (libc)Error Codes.
* EBADE: (libc)Error Codes.
* EBADF: (libc)Error Codes.
* EBADFD: (libc)Error Codes.
* EBADMSG: (libc)Error Codes.
* EBADR: (libc)Error Codes.
* EBADRPC: (libc)Error Codes.
* EBADRQC: (libc)Error Codes.
* EBADSLT: (libc)Error Codes.
* EBFONT: (libc)Error Codes.
* EBUSY: (libc)Error Codes.
* ECANCELED: (libc)Error Codes.
* ECHILD: (libc)Error Codes.
* ECHO: (libc)Local Modes.
* ECHOCTL: (libc)Local Modes.
* ECHOE: (libc)Local Modes.
* ECHOK: (libc)Local Modes.
* ECHOKE: (libc)Local Modes.
* ECHONL: (libc)Local Modes.
* ECHOPRT: (libc)Local Modes.
* ECHRNG: (libc)Error Codes.
* ECOMM: (libc)Error Codes.
* ECONNABORTED: (libc)Error Codes.
* ECONNREFUSED: (libc)Error Codes.
* ECONNRESET: (libc)Error Codes.
* ED: (libc)Error Codes.
* EDEADLK: (libc)Error Codes.
* EDEADLOCK: (libc)Error Codes.
* EDESTADDRREQ: (libc)Error Codes.
* EDIED: (libc)Error Codes.
* EDOM: (libc)Error Codes.
* EDOTDOT: (libc)Error Codes.
* EDQUOT: (libc)Error Codes.
* EEXIST: (libc)Error Codes.
* EFAULT: (libc)Error Codes.
* EFBIG: (libc)Error Codes.
* EFTYPE: (libc)Error Codes.
* EGRATUITOUS: (libc)Error Codes.
* EGREGIOUS: (libc)Error Codes.
* EHOSTDOWN: (libc)Error Codes.
* EHOSTUNREACH: (libc)Error Codes.
* EHWPOISON: (libc)Error Codes.
* EIDRM: (libc)Error Codes.
* EIEIO: (libc)Error Codes.
* EILSEQ: (libc)Error Codes.
* EINPROGRESS: (libc)Error Codes.
* EINTR: (libc)Error Codes.
* EINVAL: (libc)Error Codes.
* EIO: (libc)Error Codes.
* EISCONN: (libc)Error Codes.
* EISDIR: (libc)Error Codes.
* EISNAM: (libc)Error Codes.
* EKEYEXPIRED: (libc)Error Codes.
* EKEYREJECTED: (libc)Error Codes.
* EKEYREVOKED: (libc)Error Codes.
* EL2HLT: (libc)Error Codes.
* EL2NSYNC: (libc)Error Codes.
* EL3HLT: (libc)Error Codes.
* EL3RST: (libc)Error Codes.
* ELIBACC: (libc)Error Codes.
* ELIBBAD: (libc)Error Codes.
* ELIBEXEC: (libc)Error Codes.
* ELIBMAX: (libc)Error Codes.
* ELIBSCN: (libc)Error Codes.
* ELNRNG: (libc)Error Codes.
* ELOOP: (libc)Error Codes.
* EMEDIUMTYPE: (libc)Error Codes.
* EMFILE: (libc)Error Codes.
* EMLINK: (libc)Error Codes.
* EMSGSIZE: (libc)Error Codes.
* EMULTIHOP: (libc)Error Codes.
* ENAMETOOLONG: (libc)Error Codes.
* ENAVAIL: (libc)Error Codes.
* ENEEDAUTH: (libc)Error Codes.
* ENETDOWN: (libc)Error Codes.
* ENETRESET: (libc)Error Codes.
* ENETUNREACH: (libc)Error Codes.
* ENFILE: (libc)Error Codes.
* ENOANO: (libc)Error Codes.
* ENOBUFS: (libc)Error Codes.
* ENOCSI: (libc)Error Codes.
* ENODATA: (libc)Error Codes.
* ENODEV: (libc)Error Codes.
* ENOENT: (libc)Error Codes.
* ENOEXEC: (libc)Error Codes.
* ENOKEY: (libc)Error Codes.
* ENOLCK: (libc)Error Codes.
* ENOLINK: (libc)Error Codes.
* ENOMEDIUM: (libc)Error Codes.
* ENOMEM: (libc)Error Codes.
* ENOMSG: (libc)Error Codes.
* ENONET: (libc)Error Codes.
* ENOPKG: (libc)Error Codes.
* ENOPROTOOPT: (libc)Error Codes.
* ENOSPC: (libc)Error Codes.
* ENOSR: (libc)Error Codes.
* ENOSTR: (libc)Error Codes.
* ENOSYS: (libc)Error Codes.
* ENOTBLK: (libc)Error Codes.
* ENOTCONN: (libc)Error Codes.
* ENOTDIR: (libc)Error Codes.
* ENOTEMPTY: (libc)Error Codes.
* ENOTNAM: (libc)Error Codes.
* ENOTRECOVERABLE: (libc)Error Codes.
* ENOTSOCK: (libc)Error Codes.
* ENOTSUP: (libc)Error Codes.
* ENOTTY: (libc)Error Codes.
* ENOTUNIQ: (libc)Error Codes.
* ENXIO: (libc)Error Codes.
* EOF: (libc)EOF and Errors.
* EOPNOTSUPP: (libc)Error Codes.
* EOVERFLOW: (libc)Error Codes.
* EOWNERDEAD: (libc)Error Codes.
* EPERM: (libc)Error Codes.
* EPFNOSUPPORT: (libc)Error Codes.
* EPIPE: (libc)Error Codes.
* EPROCLIM: (libc)Error Codes.
* EPROCUNAVAIL: (libc)Error Codes.
* EPROGMISMATCH: (libc)Error Codes.
* EPROGUNAVAIL: (libc)Error Codes.
* EPROTO: (libc)Error Codes.
* EPROTONOSUPPORT: (libc)Error Codes.
* EPROTOTYPE: (libc)Error Codes.
* EQUIV_CLASS_MAX: (libc)Utility Limits.
* ERANGE: (libc)Error Codes.
* EREMCHG: (libc)Error Codes.
* EREMOTE: (libc)Error Codes.
* EREMOTEIO: (libc)Error Codes.
* ERESTART: (libc)Error Codes.
* ERFKILL: (libc)Error Codes.
* EROFS: (libc)Error Codes.
* ERPCMISMATCH: (libc)Error Codes.
* ESHUTDOWN: (libc)Error Codes.
* ESOCKTNOSUPPORT: (libc)Error Codes.
* ESPIPE: (libc)Error Codes.
* ESRCH: (libc)Error Codes.
* ESRMNT: (libc)Error Codes.
* ESTALE: (libc)Error Codes.
* ESTRPIPE: (libc)Error Codes.
* ETIME: (libc)Error Codes.
* ETIMEDOUT: (libc)Error Codes.
* ETOOMANYREFS: (libc)Error Codes.
* ETXTBSY: (libc)Error Codes.
* EUCLEAN: (libc)Error Codes.
* EUNATCH: (libc)Error Codes.
* EUSERS: (libc)Error Codes.
* EWOULDBLOCK: (libc)Error Codes.
* EXDEV: (libc)Error Codes.
* EXFULL: (libc)Error Codes.
* EXIT_FAILURE: (libc)Exit Status.
* EXIT_SUCCESS: (libc)Exit Status.
* EXPR_NEST_MAX: (libc)Utility Limits.
* FD_CLOEXEC: (libc)Descriptor Flags.
* FD_CLR: (libc)Waiting for I/O.
* FD_ISSET: (libc)Waiting for I/O.
* FD_SET: (libc)Waiting for I/O.
* FD_SETSIZE: (libc)Waiting for I/O.
* FD_ZERO: (libc)Waiting for I/O.
* FE_SNANS_ALWAYS_SIGNAL: (libc)Infinity and NaN.
* FILENAME_MAX: (libc)Limits for Files.
* FLUSHO: (libc)Local Modes.
* FOPEN_MAX: (libc)Opening Streams.
* FP_ILOGB0: (libc)Exponents and Logarithms.
* FP_ILOGBNAN: (libc)Exponents and Logarithms.
* FP_LLOGB0: (libc)Exponents and Logarithms.
* FP_LLOGBNAN: (libc)Exponents and Logarithms.
* F_DUPFD: (libc)Duplicating Descriptors.
* F_GETFD: (libc)Descriptor Flags.
* F_GETFL: (libc)Getting File Status Flags.
* F_GETLK: (libc)File Locks.
* F_GETOWN: (libc)Interrupt Input.
* F_OFD_GETLK: (libc)Open File Description Locks.
* F_OFD_SETLK: (libc)Open File Description Locks.
* F_OFD_SETLKW: (libc)Open File Description Locks.
* F_OK: (libc)Testing File Access.
* F_SETFD: (libc)Descriptor Flags.
* F_SETFL: (libc)Getting File Status Flags.
* F_SETLK: (libc)File Locks.
* F_SETLKW: (libc)File Locks.
* F_SETOWN: (libc)Interrupt Input.
* HAS_CPU_FEATURE: (libc)X86.
* HUGE_VAL: (libc)Math Error Reporting.
* HUGE_VALF: (libc)Math Error Reporting.
* HUGE_VALL: (libc)Math Error Reporting.
* HUGE_VAL_FN: (libc)Math Error Reporting.
* HUGE_VAL_FNx: (libc)Math Error Reporting.
* HUPCL: (libc)Control Modes.
* I: (libc)Complex Numbers.
* ICANON: (libc)Local Modes.
* ICRNL: (libc)Input Modes.
* IEXTEN: (libc)Local Modes.
* IFNAMSIZ: (libc)Interface Naming.
* IFTODT: (libc)Directory Entries.
* IGNBRK: (libc)Input Modes.
* IGNCR: (libc)Input Modes.
* IGNPAR: (libc)Input Modes.
* IMAXBEL: (libc)Input Modes.
* INADDR_ANY: (libc)Host Address Data Type.
* INADDR_BROADCAST: (libc)Host Address Data Type.
* INADDR_LOOPBACK: (libc)Host Address Data Type.
* INADDR_NONE: (libc)Host Address Data Type.
* INFINITY: (libc)Infinity and NaN.
* INLCR: (libc)Input Modes.
* INPCK: (libc)Input Modes.
* IPPORT_RESERVED: (libc)Ports.
* IPPORT_USERRESERVED: (libc)Ports.
* ISIG: (libc)Local Modes.
* ISTRIP: (libc)Input Modes.
* IXANY: (libc)Input Modes.
* IXOFF: (libc)Input Modes.
* IXON: (libc)Input Modes.
* LINE_MAX: (libc)Utility Limits.
* LINK_MAX: (libc)Limits for Files.
* L_ctermid: (libc)Identifying the Terminal.
* L_cuserid: (libc)Who Logged In.
* L_tmpnam: (libc)Temporary Files.
* MAXNAMLEN: (libc)Limits for Files.
* MAXSYMLINKS: (libc)Symbolic Links.
* MAX_CANON: (libc)Limits for Files.
* MAX_INPUT: (libc)Limits for Files.
* MB_CUR_MAX: (libc)Selecting the Conversion.
* MB_LEN_MAX: (libc)Selecting the Conversion.
* MDMBUF: (libc)Control Modes.
* MSG_DONTROUTE: (libc)Socket Data Options.
* MSG_OOB: (libc)Socket Data Options.
* MSG_PEEK: (libc)Socket Data Options.
* NAME_MAX: (libc)Limits for Files.
* NAN: (libc)Infinity and NaN.
* NCCS: (libc)Mode Data Types.
* NGROUPS_MAX: (libc)General Limits.
* NOFLSH: (libc)Local Modes.
* NOKERNINFO: (libc)Local Modes.
* NSIG: (libc)Standard Signals.
* NULL: (libc)Null Pointer Constant.
* ONLCR: (libc)Output Modes.
* ONOEOT: (libc)Output Modes.
* OPEN_MAX: (libc)General Limits.
* OPOST: (libc)Output Modes.
* OXTABS: (libc)Output Modes.
* O_ACCMODE: (libc)Access Modes.
* O_APPEND: (libc)Operating Modes.
* O_ASYNC: (libc)Operating Modes.
* O_CREAT: (libc)Open-time Flags.
* O_DIRECTORY: (libc)Open-time Flags.
* O_EXCL: (libc)Open-time Flags.
* O_EXEC: (libc)Access Modes.
* O_EXLOCK: (libc)Open-time Flags.
* O_FSYNC: (libc)Operating Modes.
* O_IGNORE_CTTY: (libc)Open-time Flags.
* O_NDELAY: (libc)Operating Modes.
* O_NOATIME: (libc)Operating Modes.
* O_NOCTTY: (libc)Open-time Flags.
* O_NOFOLLOW: (libc)Open-time Flags.
* O_NOLINK: (libc)Open-time Flags.
* O_NONBLOCK: (libc)Open-time Flags.
* O_NONBLOCK: (libc)Operating Modes.
* O_NOTRANS: (libc)Open-time Flags.
* O_PATH: (libc)Access Modes.
* O_RDONLY: (libc)Access Modes.
* O_RDWR: (libc)Access Modes.
* O_READ: (libc)Access Modes.
* O_SHLOCK: (libc)Open-time Flags.
* O_SYNC: (libc)Operating Modes.
* O_TMPFILE: (libc)Open-time Flags.
* O_TRUNC: (libc)Open-time Flags.
* O_WRITE: (libc)Access Modes.
* O_WRONLY: (libc)Access Modes.
* PARENB: (libc)Control Modes.
* PARMRK: (libc)Input Modes.
* PARODD: (libc)Control Modes.
* PATH_MAX: (libc)Limits for Files.
* PA_FLAG_MASK: (libc)Parsing a Template String.
* PENDIN: (libc)Local Modes.
* PF_FILE: (libc)Local Namespace Details.
* PF_INET6: (libc)Internet Namespace.
* PF_INET: (libc)Internet Namespace.
* PF_LOCAL: (libc)Local Namespace Details.
* PF_UNIX: (libc)Local Namespace Details.
* PIPE_BUF: (libc)Limits for Files.
* PTHREAD_ATTR_NO_SIGMASK_NP: (libc)Initial Thread Signal Mask.
* P_tmpdir: (libc)Temporary Files.
* RAND_MAX: (libc)ISO Random.
* RE_DUP_MAX: (libc)General Limits.
* RLIM_INFINITY: (libc)Limits on Resources.
* R_OK: (libc)Testing File Access.
* SA_NOCLDSTOP: (libc)Flags for Sigaction.
* SA_ONSTACK: (libc)Flags for Sigaction.
* SA_RESTART: (libc)Flags for Sigaction.
* SEEK_CUR: (libc)File Positioning.
* SEEK_END: (libc)File Positioning.
* SEEK_SET: (libc)File Positioning.
* SIGABRT: (libc)Program Error Signals.
* SIGALRM: (libc)Alarm Signals.
* SIGBUS: (libc)Program Error Signals.
* SIGCHLD: (libc)Job Control Signals.
* SIGCLD: (libc)Job Control Signals.
* SIGCONT: (libc)Job Control Signals.
* SIGEMT: (libc)Program Error Signals.
* SIGFPE: (libc)Program Error Signals.
* SIGHUP: (libc)Termination Signals.
* SIGILL: (libc)Program Error Signals.
* SIGINFO: (libc)Miscellaneous Signals.
* SIGINT: (libc)Termination Signals.
* SIGIO: (libc)Asynchronous I/O Signals.
* SIGIOT: (libc)Program Error Signals.
* SIGKILL: (libc)Termination Signals.
* SIGLOST: (libc)Operation Error Signals.
* SIGPIPE: (libc)Operation Error Signals.
* SIGPOLL: (libc)Asynchronous I/O Signals.
* SIGPROF: (libc)Alarm Signals.
* SIGQUIT: (libc)Termination Signals.
* SIGSEGV: (libc)Program Error Signals.
* SIGSTOP: (libc)Job Control Signals.
* SIGSYS: (libc)Program Error Signals.
* SIGTERM: (libc)Termination Signals.
* SIGTRAP: (libc)Program Error Signals.
* SIGTSTP: (libc)Job Control Signals.
* SIGTTIN: (libc)Job Control Signals.
* SIGTTOU: (libc)Job Control Signals.
* SIGURG: (libc)Asynchronous I/O Signals.
* SIGUSR1: (libc)Miscellaneous Signals.
* SIGUSR2: (libc)Miscellaneous Signals.
* SIGVTALRM: (libc)Alarm Signals.
* SIGWINCH: (libc)Miscellaneous Signals.
* SIGXCPU: (libc)Operation Error Signals.
* SIGXFSZ: (libc)Operation Error Signals.
* SIG_ERR: (libc)Basic Signal Handling.
* SNAN: (libc)Infinity and NaN.
* SNANF: (libc)Infinity and NaN.
* SNANFN: (libc)Infinity and NaN.
* SNANFNx: (libc)Infinity and NaN.
* SNANL: (libc)Infinity and NaN.
* SOCK_DGRAM: (libc)Communication Styles.
* SOCK_RAW: (libc)Communication Styles.
* SOCK_RDM: (libc)Communication Styles.
* SOCK_SEQPACKET: (libc)Communication Styles.
* SOCK_STREAM: (libc)Communication Styles.
* SOL_SOCKET: (libc)Socket-Level Options.
* SSIZE_MAX: (libc)General Limits.
* STREAM_MAX: (libc)General Limits.
* SUN_LEN: (libc)Local Namespace Details.
* S_IFMT: (libc)Testing File Type.
* S_ISBLK: (libc)Testing File Type.
* S_ISCHR: (libc)Testing File Type.
* S_ISDIR: (libc)Testing File Type.
* S_ISFIFO: (libc)Testing File Type.
* S_ISLNK: (libc)Testing File Type.
* S_ISREG: (libc)Testing File Type.
* S_ISSOCK: (libc)Testing File Type.
* S_TYPEISMQ: (libc)Testing File Type.
* S_TYPEISSEM: (libc)Testing File Type.
* S_TYPEISSHM: (libc)Testing File Type.
* TMP_MAX: (libc)Temporary Files.
* TOSTOP: (libc)Local Modes.
* TZNAME_MAX: (libc)General Limits.
* VDISCARD: (libc)Other Special.
* VDSUSP: (libc)Signal Characters.
* VEOF: (libc)Editing Characters.
* VEOL2: (libc)Editing Characters.
* VEOL: (libc)Editing Characters.
* VERASE: (libc)Editing Characters.
* VINTR: (libc)Signal Characters.
* VKILL: (libc)Editing Characters.
* VLNEXT: (libc)Other Special.
* VMIN: (libc)Noncanonical Input.
* VQUIT: (libc)Signal Characters.
* VREPRINT: (libc)Editing Characters.
* VSTART: (libc)Start/Stop Characters.
* VSTATUS: (libc)Other Special.
* VSTOP: (libc)Start/Stop Characters.
* VSUSP: (libc)Signal Characters.
* VTIME: (libc)Noncanonical Input.
* VWERASE: (libc)Editing Characters.
* WCHAR_MAX: (libc)Extended Char Intro.
* WCHAR_MIN: (libc)Extended Char Intro.
* WCOREDUMP: (libc)Process Completion Status.
* WEOF: (libc)EOF and Errors.
* WEOF: (libc)Extended Char Intro.
* WEXITSTATUS: (libc)Process Completion Status.
* WIFEXITED: (libc)Process Completion Status.
* WIFSIGNALED: (libc)Process Completion Status.
* WIFSTOPPED: (libc)Process Completion Status.
* WSTOPSIG: (libc)Process Completion Status.
* WTERMSIG: (libc)Process Completion Status.
* W_OK: (libc)Testing File Access.
* X_OK: (libc)Testing File Access.
* _Complex_I: (libc)Complex Numbers.
* _Exit: (libc)Termination Internals.
* _IOFBF: (libc)Controlling Buffering.
* _IOLBF: (libc)Controlling Buffering.
* _IONBF: (libc)Controlling Buffering.
* _Imaginary_I: (libc)Complex Numbers.
* _PATH_UTMP: (libc)Manipulating the Database.
* _PATH_WTMP: (libc)Manipulating the Database.
* _POSIX2_C_DEV: (libc)System Options.
* _POSIX2_C_VERSION: (libc)Version Supported.
* _POSIX2_FORT_DEV: (libc)System Options.
* _POSIX2_FORT_RUN: (libc)System Options.
* _POSIX2_LOCALEDEF: (libc)System Options.
* _POSIX2_SW_DEV: (libc)System Options.
* _POSIX_CHOWN_RESTRICTED: (libc)Options for Files.
* _POSIX_JOB_CONTROL: (libc)System Options.
* _POSIX_NO_TRUNC: (libc)Options for Files.
* _POSIX_SAVED_IDS: (libc)System Options.
* _POSIX_VDISABLE: (libc)Options for Files.
* _POSIX_VERSION: (libc)Version Supported.
* __fbufsize: (libc)Controlling Buffering.
* __flbf: (libc)Controlling Buffering.
* __fpending: (libc)Controlling Buffering.
* __fpurge: (libc)Flushing Buffers.
* __freadable: (libc)Opening Streams.
* __freading: (libc)Opening Streams.
* __fsetlocking: (libc)Streams and Threads.
* __fwritable: (libc)Opening Streams.
* __fwriting: (libc)Opening Streams.
* __gconv_end_fct: (libc)glibc iconv Implementation.
* __gconv_fct: (libc)glibc iconv Implementation.
* __gconv_init_fct: (libc)glibc iconv Implementation.
* __ppc_get_timebase: (libc)PowerPC.
* __ppc_get_timebase_freq: (libc)PowerPC.
* __ppc_mdoio: (libc)PowerPC.
* __ppc_mdoom: (libc)PowerPC.
* __ppc_set_ppr_low: (libc)PowerPC.
* __ppc_set_ppr_med: (libc)PowerPC.
* __ppc_set_ppr_med_high: (libc)PowerPC.
* __ppc_set_ppr_med_low: (libc)PowerPC.
* __ppc_set_ppr_very_low: (libc)PowerPC.
* __ppc_yield: (libc)PowerPC.
* __riscv_flush_icache: (libc)RISC-V.
* __va_copy: (libc)Argument Macros.
* __x86_get_cpuid_feature_leaf: (libc)X86.
* _exit: (libc)Termination Internals.
* _flushlbf: (libc)Flushing Buffers.
* _tolower: (libc)Case Conversion.
* _toupper: (libc)Case Conversion.
* a64l: (libc)Encode Binary Data.
* abort: (libc)Aborting a Program.
* abs: (libc)Absolute Value.
* accept: (libc)Accepting Connections.
* access: (libc)Testing File Access.
* acos: (libc)Inverse Trig Functions.
* acosf: (libc)Inverse Trig Functions.
* acosfN: (libc)Inverse Trig Functions.
* acosfNx: (libc)Inverse Trig Functions.
* acosh: (libc)Hyperbolic Functions.
* acoshf: (libc)Hyperbolic Functions.
* acoshfN: (libc)Hyperbolic Functions.
* acoshfNx: (libc)Hyperbolic Functions.
* acoshl: (libc)Hyperbolic Functions.
* acosl: (libc)Inverse Trig Functions.
* addmntent: (libc)mtab.
* addseverity: (libc)Adding Severity Classes.
* adjtime: (libc)Setting and Adjusting the Time.
* adjtimex: (libc)Setting and Adjusting the Time.
* aio_cancel64: (libc)Cancel AIO Operations.
* aio_cancel: (libc)Cancel AIO Operations.
* aio_error64: (libc)Status of AIO Operations.
* aio_error: (libc)Status of AIO Operations.
* aio_fsync64: (libc)Synchronizing AIO Operations.
* aio_fsync: (libc)Synchronizing AIO Operations.
* aio_init: (libc)Configuration of AIO.
* aio_read64: (libc)Asynchronous Reads/Writes.
* aio_read: (libc)Asynchronous Reads/Writes.
* aio_return64: (libc)Status of AIO Operations.
* aio_return: (libc)Status of AIO Operations.
* aio_suspend64: (libc)Synchronizing AIO Operations.
* aio_suspend: (libc)Synchronizing AIO Operations.
* aio_write64: (libc)Asynchronous Reads/Writes.
* aio_write: (libc)Asynchronous Reads/Writes.
* alarm: (libc)Setting an Alarm.
* aligned_alloc: (libc)Aligned Memory Blocks.
* alloca: (libc)Variable Size Automatic.
* alphasort64: (libc)Scanning Directory Content.
* alphasort: (libc)Scanning Directory Content.
* argp_error: (libc)Argp Helper Functions.
* argp_failure: (libc)Argp Helper Functions.
* argp_help: (libc)Argp Help.
* argp_parse: (libc)Argp.
* argp_state_help: (libc)Argp Helper Functions.
* argp_usage: (libc)Argp Helper Functions.
* argz_add: (libc)Argz Functions.
* argz_add_sep: (libc)Argz Functions.
* argz_append: (libc)Argz Functions.
* argz_count: (libc)Argz Functions.
* argz_create: (libc)Argz Functions.
* argz_create_sep: (libc)Argz Functions.
* argz_delete: (libc)Argz Functions.
* argz_extract: (libc)Argz Functions.
* argz_insert: (libc)Argz Functions.
* argz_next: (libc)Argz Functions.
* argz_replace: (libc)Argz Functions.
* argz_stringify: (libc)Argz Functions.
* asctime: (libc)Formatting Calendar Time.
* asctime_r: (libc)Formatting Calendar Time.
* asin: (libc)Inverse Trig Functions.
* asinf: (libc)Inverse Trig Functions.
* asinfN: (libc)Inverse Trig Functions.
* asinfNx: (libc)Inverse Trig Functions.
* asinh: (libc)Hyperbolic Functions.
* asinhf: (libc)Hyperbolic Functions.
* asinhfN: (libc)Hyperbolic Functions.
* asinhfNx: (libc)Hyperbolic Functions.
* asinhl: (libc)Hyperbolic Functions.
* asinl: (libc)Inverse Trig Functions.
* asprintf: (libc)Dynamic Output.
* assert: (libc)Consistency Checking.
* assert_perror: (libc)Consistency Checking.
* atan2: (libc)Inverse Trig Functions.
* atan2f: (libc)Inverse Trig Functions.
* atan2fN: (libc)Inverse Trig Functions.
* atan2fNx: (libc)Inverse Trig Functions.
* atan2l: (libc)Inverse Trig Functions.
* atan: (libc)Inverse Trig Functions.
* atanf: (libc)Inverse Trig Functions.
* atanfN: (libc)Inverse Trig Functions.
* atanfNx: (libc)Inverse Trig Functions.
* atanh: (libc)Hyperbolic Functions.
* atanhf: (libc)Hyperbolic Functions.
* atanhfN: (libc)Hyperbolic Functions.
* atanhfNx: (libc)Hyperbolic Functions.
* atanhl: (libc)Hyperbolic Functions.
* atanl: (libc)Inverse Trig Functions.
* atexit: (libc)Cleanups on Exit.
* atof: (libc)Parsing of Floats.
* atoi: (libc)Parsing of Integers.
* atol: (libc)Parsing of Integers.
* atoll: (libc)Parsing of Integers.
* backtrace: (libc)Backtraces.
* backtrace_symbols: (libc)Backtraces.
* backtrace_symbols_fd: (libc)Backtraces.
* basename: (libc)Finding Tokens in a String.
* basename: (libc)Finding Tokens in a String.
* bcmp: (libc)String/Array Comparison.
* bcopy: (libc)Copying Strings and Arrays.
* bind: (libc)Setting Address.
* bind_textdomain_codeset: (libc)Charset conversion in gettext.
* bindtextdomain: (libc)Locating gettext catalog.
* brk: (libc)Resizing the Data Segment.
* bsearch: (libc)Array Search Function.
* btowc: (libc)Converting a Character.
* bzero: (libc)Copying Strings and Arrays.
* cabs: (libc)Absolute Value.
* cabsf: (libc)Absolute Value.
* cabsfN: (libc)Absolute Value.
* cabsfNx: (libc)Absolute Value.
* cabsl: (libc)Absolute Value.
* cacos: (libc)Inverse Trig Functions.
* cacosf: (libc)Inverse Trig Functions.
* cacosfN: (libc)Inverse Trig Functions.
* cacosfNx: (libc)Inverse Trig Functions.
* cacosh: (libc)Hyperbolic Functions.
* cacoshf: (libc)Hyperbolic Functions.
* cacoshfN: (libc)Hyperbolic Functions.
* cacoshfNx: (libc)Hyperbolic Functions.
* cacoshl: (libc)Hyperbolic Functions.
* cacosl: (libc)Inverse Trig Functions.
* call_once: (libc)Call Once.
* calloc: (libc)Allocating Cleared Space.
* canonicalize: (libc)FP Bit Twiddling.
* canonicalize_file_name: (libc)Symbolic Links.
* canonicalizef: (libc)FP Bit Twiddling.
* canonicalizefN: (libc)FP Bit Twiddling.
* canonicalizefNx: (libc)FP Bit Twiddling.
* canonicalizel: (libc)FP Bit Twiddling.
* carg: (libc)Operations on Complex.
* cargf: (libc)Operations on Complex.
* cargfN: (libc)Operations on Complex.
* cargfNx: (libc)Operations on Complex.
* cargl: (libc)Operations on Complex.
* casin: (libc)Inverse Trig Functions.
* casinf: (libc)Inverse Trig Functions.
* casinfN: (libc)Inverse Trig Functions.
* casinfNx: (libc)Inverse Trig Functions.
* casinh: (libc)Hyperbolic Functions.
* casinhf: (libc)Hyperbolic Functions.
* casinhfN: (libc)Hyperbolic Functions.
* casinhfNx: (libc)Hyperbolic Functions.
* casinhl: (libc)Hyperbolic Functions.
* casinl: (libc)Inverse Trig Functions.
* catan: (libc)Inverse Trig Functions.
* catanf: (libc)Inverse Trig Functions.
* catanfN: (libc)Inverse Trig Functions.
* catanfNx: (libc)Inverse Trig Functions.
* catanh: (libc)Hyperbolic Functions.
* catanhf: (libc)Hyperbolic Functions.
* catanhfN: (libc)Hyperbolic Functions.
* catanhfNx: (libc)Hyperbolic Functions.
* catanhl: (libc)Hyperbolic Functions.
* catanl: (libc)Inverse Trig Functions.
* catclose: (libc)The catgets Functions.
* catgets: (libc)The catgets Functions.
* catopen: (libc)The catgets Functions.
* cbrt: (libc)Exponents and Logarithms.
* cbrtf: (libc)Exponents and Logarithms.
* cbrtfN: (libc)Exponents and Logarithms.
* cbrtfNx: (libc)Exponents and Logarithms.
* cbrtl: (libc)Exponents and Logarithms.
* ccos: (libc)Trig Functions.
* ccosf: (libc)Trig Functions.
* ccosfN: (libc)Trig Functions.
* ccosfNx: (libc)Trig Functions.
* ccosh: (libc)Hyperbolic Functions.
* ccoshf: (libc)Hyperbolic Functions.
* ccoshfN: (libc)Hyperbolic Functions.
* ccoshfNx: (libc)Hyperbolic Functions.
* ccoshl: (libc)Hyperbolic Functions.
* ccosl: (libc)Trig Functions.
* ceil: (libc)Rounding Functions.
* ceilf: (libc)Rounding Functions.
* ceilfN: (libc)Rounding Functions.
* ceilfNx: (libc)Rounding Functions.
* ceill: (libc)Rounding Functions.
* cexp: (libc)Exponents and Logarithms.
* cexpf: (libc)Exponents and Logarithms.
* cexpfN: (libc)Exponents and Logarithms.
* cexpfNx: (libc)Exponents and Logarithms.
* cexpl: (libc)Exponents and Logarithms.
* cfgetispeed: (libc)Line Speed.
* cfgetospeed: (libc)Line Speed.
* cfmakeraw: (libc)Noncanonical Input.
* cfsetispeed: (libc)Line Speed.
* cfsetospeed: (libc)Line Speed.
* cfsetspeed: (libc)Line Speed.
* chdir: (libc)Working Directory.
* chmod: (libc)Setting Permissions.
* chown: (libc)File Owner.
* cimag: (libc)Operations on Complex.
* cimagf: (libc)Operations on Complex.
* cimagfN: (libc)Operations on Complex.
* cimagfNx: (libc)Operations on Complex.
* cimagl: (libc)Operations on Complex.
* clearenv: (libc)Environment Access.
* clearerr: (libc)Error Recovery.
* clearerr_unlocked: (libc)Error Recovery.
* clock: (libc)CPU Time.
* clock_getres: (libc)Getting the Time.
* clock_gettime: (libc)Getting the Time.
* clock_settime: (libc)Setting and Adjusting the Time.
* clog10: (libc)Exponents and Logarithms.
* clog10f: (libc)Exponents and Logarithms.
* clog10fN: (libc)Exponents and Logarithms.
* clog10fNx: (libc)Exponents and Logarithms.
* clog10l: (libc)Exponents and Logarithms.
* clog: (libc)Exponents and Logarithms.
* clogf: (libc)Exponents and Logarithms.
* clogfN: (libc)Exponents and Logarithms.
* clogfNx: (libc)Exponents and Logarithms.
* clogl: (libc)Exponents and Logarithms.
* close: (libc)Opening and Closing Files.
* closedir: (libc)Reading/Closing Directory.
* closelog: (libc)closelog.
* cnd_broadcast: (libc)ISO C Condition Variables.
* cnd_destroy: (libc)ISO C Condition Variables.
* cnd_init: (libc)ISO C Condition Variables.
* cnd_signal: (libc)ISO C Condition Variables.
* cnd_timedwait: (libc)ISO C Condition Variables.
* cnd_wait: (libc)ISO C Condition Variables.
* confstr: (libc)String Parameters.
* conj: (libc)Operations on Complex.
* conjf: (libc)Operations on Complex.
* conjfN: (libc)Operations on Complex.
* conjfNx: (libc)Operations on Complex.
* conjl: (libc)Operations on Complex.
* connect: (libc)Connecting.
* copy_file_range: (libc)Copying File Data.
* copysign: (libc)FP Bit Twiddling.
* copysignf: (libc)FP Bit Twiddling.
* copysignfN: (libc)FP Bit Twiddling.
* copysignfNx: (libc)FP Bit Twiddling.
* copysignl: (libc)FP Bit Twiddling.
* cos: (libc)Trig Functions.
* cosf: (libc)Trig Functions.
* cosfN: (libc)Trig Functions.
* cosfNx: (libc)Trig Functions.
* cosh: (libc)Hyperbolic Functions.
* coshf: (libc)Hyperbolic Functions.
* coshfN: (libc)Hyperbolic Functions.
* coshfNx: (libc)Hyperbolic Functions.
* coshl: (libc)Hyperbolic Functions.
* cosl: (libc)Trig Functions.
* cpow: (libc)Exponents and Logarithms.
* cpowf: (libc)Exponents and Logarithms.
* cpowfN: (libc)Exponents and Logarithms.
* cpowfNx: (libc)Exponents and Logarithms.
* cpowl: (libc)Exponents and Logarithms.
* cproj: (libc)Operations on Complex.
* cprojf: (libc)Operations on Complex.
* cprojfN: (libc)Operations on Complex.
* cprojfNx: (libc)Operations on Complex.
* cprojl: (libc)Operations on Complex.
* creal: (libc)Operations on Complex.
* crealf: (libc)Operations on Complex.
* crealfN: (libc)Operations on Complex.
* crealfNx: (libc)Operations on Complex.
* creall: (libc)Operations on Complex.
* creat64: (libc)Opening and Closing Files.
* creat: (libc)Opening and Closing Files.
* crypt: (libc)Passphrase Storage.
* crypt_r: (libc)Passphrase Storage.
* csin: (libc)Trig Functions.
* csinf: (libc)Trig Functions.
* csinfN: (libc)Trig Functions.
* csinfNx: (libc)Trig Functions.
* csinh: (libc)Hyperbolic Functions.
* csinhf: (libc)Hyperbolic Functions.
* csinhfN: (libc)Hyperbolic Functions.
* csinhfNx: (libc)Hyperbolic Functions.
* csinhl: (libc)Hyperbolic Functions.
* csinl: (libc)Trig Functions.
* csqrt: (libc)Exponents and Logarithms.
* csqrtf: (libc)Exponents and Logarithms.
* csqrtfN: (libc)Exponents and Logarithms.
* csqrtfNx: (libc)Exponents and Logarithms.
* csqrtl: (libc)Exponents and Logarithms.
* ctan: (libc)Trig Functions.
* ctanf: (libc)Trig Functions.
* ctanfN: (libc)Trig Functions.
* ctanfNx: (libc)Trig Functions.
* ctanh: (libc)Hyperbolic Functions.
* ctanhf: (libc)Hyperbolic Functions.
* ctanhfN: (libc)Hyperbolic Functions.
* ctanhfNx: (libc)Hyperbolic Functions.
* ctanhl: (libc)Hyperbolic Functions.
* ctanl: (libc)Trig Functions.
* ctermid: (libc)Identifying the Terminal.
* ctime: (libc)Formatting Calendar Time.
* ctime_r: (libc)Formatting Calendar Time.
* cuserid: (libc)Who Logged In.
* daddl: (libc)Misc FP Arithmetic.
* dcgettext: (libc)Translation with gettext.
* dcngettext: (libc)Advanced gettext functions.
* ddivl: (libc)Misc FP Arithmetic.
* dgettext: (libc)Translation with gettext.
* difftime: (libc)Calculating Elapsed Time.
* dirfd: (libc)Opening a Directory.
* dirname: (libc)Finding Tokens in a String.
* div: (libc)Integer Division.
* dmull: (libc)Misc FP Arithmetic.
* dngettext: (libc)Advanced gettext functions.
* drand48: (libc)SVID Random.
* drand48_r: (libc)SVID Random.
* drem: (libc)Remainder Functions.
* dremf: (libc)Remainder Functions.
* dreml: (libc)Remainder Functions.
* dsubl: (libc)Misc FP Arithmetic.
* dup2: (libc)Duplicating Descriptors.
* dup: (libc)Duplicating Descriptors.
* ecvt: (libc)System V Number Conversion.
* ecvt_r: (libc)System V Number Conversion.
* endfsent: (libc)fstab.
* endgrent: (libc)Scanning All Groups.
* endhostent: (libc)Host Names.
* endmntent: (libc)mtab.
* endnetent: (libc)Networks Database.
* endnetgrent: (libc)Lookup Netgroup.
* endprotoent: (libc)Protocols Database.
* endpwent: (libc)Scanning All Users.
* endservent: (libc)Services Database.
* endutent: (libc)Manipulating the Database.
* endutxent: (libc)XPG Functions.
* envz_add: (libc)Envz Functions.
* envz_entry: (libc)Envz Functions.
* envz_get: (libc)Envz Functions.
* envz_merge: (libc)Envz Functions.
* envz_remove: (libc)Envz Functions.
* envz_strip: (libc)Envz Functions.
* erand48: (libc)SVID Random.
* erand48_r: (libc)SVID Random.
* erf: (libc)Special Functions.
* erfc: (libc)Special Functions.
* erfcf: (libc)Special Functions.
* erfcfN: (libc)Special Functions.
* erfcfNx: (libc)Special Functions.
* erfcl: (libc)Special Functions.
* erff: (libc)Special Functions.
* erffN: (libc)Special Functions.
* erffNx: (libc)Special Functions.
* erfl: (libc)Special Functions.
* err: (libc)Error Messages.
* errno: (libc)Checking for Errors.
* error: (libc)Error Messages.
* error_at_line: (libc)Error Messages.
* errx: (libc)Error Messages.
* execl: (libc)Executing a File.
* execle: (libc)Executing a File.
* execlp: (libc)Executing a File.
* execv: (libc)Executing a File.
* execve: (libc)Executing a File.
* execvp: (libc)Executing a File.
* exit: (libc)Normal Termination.
* exp10: (libc)Exponents and Logarithms.
* exp10f: (libc)Exponents and Logarithms.
* exp10fN: (libc)Exponents and Logarithms.
* exp10fNx: (libc)Exponents and Logarithms.
* exp10l: (libc)Exponents and Logarithms.
* exp2: (libc)Exponents and Logarithms.
* exp2f: (libc)Exponents and Logarithms.
* exp2fN: (libc)Exponents and Logarithms.
* exp2fNx: (libc)Exponents and Logarithms.
* exp2l: (libc)Exponents and Logarithms.
* exp: (libc)Exponents and Logarithms.
* expf: (libc)Exponents and Logarithms.
* expfN: (libc)Exponents and Logarithms.
* expfNx: (libc)Exponents and Logarithms.
* expl: (libc)Exponents and Logarithms.
* explicit_bzero: (libc)Erasing Sensitive Data.
* expm1: (libc)Exponents and Logarithms.
* expm1f: (libc)Exponents and Logarithms.
* expm1fN: (libc)Exponents and Logarithms.
* expm1fNx: (libc)Exponents and Logarithms.
* expm1l: (libc)Exponents and Logarithms.
* fMaddfN: (libc)Misc FP Arithmetic.
* fMaddfNx: (libc)Misc FP Arithmetic.
* fMdivfN: (libc)Misc FP Arithmetic.
* fMdivfNx: (libc)Misc FP Arithmetic.
* fMmulfN: (libc)Misc FP Arithmetic.
* fMmulfNx: (libc)Misc FP Arithmetic.
* fMsubfN: (libc)Misc FP Arithmetic.
* fMsubfNx: (libc)Misc FP Arithmetic.
* fMxaddfN: (libc)Misc FP Arithmetic.
* fMxaddfNx: (libc)Misc FP Arithmetic.
* fMxdivfN: (libc)Misc FP Arithmetic.
* fMxdivfNx: (libc)Misc FP Arithmetic.
* fMxmulfN: (libc)Misc FP Arithmetic.
* fMxmulfNx: (libc)Misc FP Arithmetic.
* fMxsubfN: (libc)Misc FP Arithmetic.
* fMxsubfNx: (libc)Misc FP Arithmetic.
* fabs: (libc)Absolute Value.
* fabsf: (libc)Absolute Value.
* fabsfN: (libc)Absolute Value.
* fabsfNx: (libc)Absolute Value.
* fabsl: (libc)Absolute Value.
* fadd: (libc)Misc FP Arithmetic.
* faddl: (libc)Misc FP Arithmetic.
* fchdir: (libc)Working Directory.
* fchmod: (libc)Setting Permissions.
* fchown: (libc)File Owner.
* fclose: (libc)Closing Streams.
* fcloseall: (libc)Closing Streams.
* fcntl: (libc)Control Operations.
* fcvt: (libc)System V Number Conversion.
* fcvt_r: (libc)System V Number Conversion.
* fdatasync: (libc)Synchronizing I/O.
* fdim: (libc)Misc FP Arithmetic.
* fdimf: (libc)Misc FP Arithmetic.
* fdimfN: (libc)Misc FP Arithmetic.
* fdimfNx: (libc)Misc FP Arithmetic.
* fdiml: (libc)Misc FP Arithmetic.
* fdiv: (libc)Misc FP Arithmetic.
* fdivl: (libc)Misc FP Arithmetic.
* fdopen: (libc)Descriptors and Streams.
* fdopendir: (libc)Opening a Directory.
* feclearexcept: (libc)Status bit operations.
* fedisableexcept: (libc)Control Functions.
* feenableexcept: (libc)Control Functions.
* fegetenv: (libc)Control Functions.
* fegetexcept: (libc)Control Functions.
* fegetexceptflag: (libc)Status bit operations.
* fegetmode: (libc)Control Functions.
* fegetround: (libc)Rounding.
* feholdexcept: (libc)Control Functions.
* feof: (libc)EOF and Errors.
* feof_unlocked: (libc)EOF and Errors.
* feraiseexcept: (libc)Status bit operations.
* ferror: (libc)EOF and Errors.
* ferror_unlocked: (libc)EOF and Errors.
* fesetenv: (libc)Control Functions.
* fesetexcept: (libc)Status bit operations.
* fesetexceptflag: (libc)Status bit operations.
* fesetmode: (libc)Control Functions.
* fesetround: (libc)Rounding.
* fetestexcept: (libc)Status bit operations.
* fetestexceptflag: (libc)Status bit operations.
* feupdateenv: (libc)Control Functions.
* fexecve: (libc)Executing a File.
* fflush: (libc)Flushing Buffers.
* fflush_unlocked: (libc)Flushing Buffers.
* fgetc: (libc)Character Input.
* fgetc_unlocked: (libc)Character Input.
* fgetgrent: (libc)Scanning All Groups.
* fgetgrent_r: (libc)Scanning All Groups.
* fgetpos64: (libc)Portable Positioning.
* fgetpos: (libc)Portable Positioning.
* fgetpwent: (libc)Scanning All Users.
* fgetpwent_r: (libc)Scanning All Users.
* fgets: (libc)Line Input.
* fgets_unlocked: (libc)Line Input.
* fgetwc: (libc)Character Input.
* fgetwc_unlocked: (libc)Character Input.
* fgetws: (libc)Line Input.
* fgetws_unlocked: (libc)Line Input.
* fileno: (libc)Descriptors and Streams.
* fileno_unlocked: (libc)Descriptors and Streams.
* finite: (libc)Floating Point Classes.
* finitef: (libc)Floating Point Classes.
* finitel: (libc)Floating Point Classes.
* flockfile: (libc)Streams and Threads.
* floor: (libc)Rounding Functions.
* floorf: (libc)Rounding Functions.
* floorfN: (libc)Rounding Functions.
* floorfNx: (libc)Rounding Functions.
* floorl: (libc)Rounding Functions.
* fma: (libc)Misc FP Arithmetic.
* fmaf: (libc)Misc FP Arithmetic.
* fmafN: (libc)Misc FP Arithmetic.
* fmafNx: (libc)Misc FP Arithmetic.
* fmal: (libc)Misc FP Arithmetic.
* fmax: (libc)Misc FP Arithmetic.
* fmaxf: (libc)Misc FP Arithmetic.
* fmaxfN: (libc)Misc FP Arithmetic.
* fmaxfNx: (libc)Misc FP Arithmetic.
* fmaxl: (libc)Misc FP Arithmetic.
* fmaxmag: (libc)Misc FP Arithmetic.
* fmaxmagf: (libc)Misc FP Arithmetic.
* fmaxmagfN: (libc)Misc FP Arithmetic.
* fmaxmagfNx: (libc)Misc FP Arithmetic.
* fmaxmagl: (libc)Misc FP Arithmetic.
* fmemopen: (libc)String Streams.
* fmin: (libc)Misc FP Arithmetic.
* fminf: (libc)Misc FP Arithmetic.
* fminfN: (libc)Misc FP Arithmetic.
* fminfNx: (libc)Misc FP Arithmetic.
* fminl: (libc)Misc FP Arithmetic.
* fminmag: (libc)Misc FP Arithmetic.
* fminmagf: (libc)Misc FP Arithmetic.
* fminmagfN: (libc)Misc FP Arithmetic.
* fminmagfNx: (libc)Misc FP Arithmetic.
* fminmagl: (libc)Misc FP Arithmetic.
* fmod: (libc)Remainder Functions.
* fmodf: (libc)Remainder Functions.
* fmodfN: (libc)Remainder Functions.
* fmodfNx: (libc)Remainder Functions.
* fmodl: (libc)Remainder Functions.
* fmtmsg: (libc)Printing Formatted Messages.
* fmul: (libc)Misc FP Arithmetic.
* fmull: (libc)Misc FP Arithmetic.
* fnmatch: (libc)Wildcard Matching.
* fopen64: (libc)Opening Streams.
* fopen: (libc)Opening Streams.
* fopencookie: (libc)Streams and Cookies.
* fork: (libc)Creating a Process.
* forkpty: (libc)Pseudo-Terminal Pairs.
* fpathconf: (libc)Pathconf.
* fpclassify: (libc)Floating Point Classes.
* fprintf: (libc)Formatted Output Functions.
* fputc: (libc)Simple Output.
* fputc_unlocked: (libc)Simple Output.
* fputs: (libc)Simple Output.
* fputs_unlocked: (libc)Simple Output.
* fputwc: (libc)Simple Output.
* fputwc_unlocked: (libc)Simple Output.
* fputws: (libc)Simple Output.
* fputws_unlocked: (libc)Simple Output.
* fread: (libc)Block Input/Output.
* fread_unlocked: (libc)Block Input/Output.
* free: (libc)Freeing after Malloc.
* freopen64: (libc)Opening Streams.
* freopen: (libc)Opening Streams.
* frexp: (libc)Normalization Functions.
* frexpf: (libc)Normalization Functions.
* frexpfN: (libc)Normalization Functions.
* frexpfNx: (libc)Normalization Functions.
* frexpl: (libc)Normalization Functions.
* fromfp: (libc)Rounding Functions.
* fromfpf: (libc)Rounding Functions.
* fromfpfN: (libc)Rounding Functions.
* fromfpfNx: (libc)Rounding Functions.
* fromfpl: (libc)Rounding Functions.
* fromfpx: (libc)Rounding Functions.
* fromfpxf: (libc)Rounding Functions.
* fromfpxfN: (libc)Rounding Functions.
* fromfpxfNx: (libc)Rounding Functions.
* fromfpxl: (libc)Rounding Functions.
* fscanf: (libc)Formatted Input Functions.
* fseek: (libc)File Positioning.
* fseeko64: (libc)File Positioning.
* fseeko: (libc)File Positioning.
* fsetpos64: (libc)Portable Positioning.
* fsetpos: (libc)Portable Positioning.
* fstat64: (libc)Reading Attributes.
* fstat: (libc)Reading Attributes.
* fsub: (libc)Misc FP Arithmetic.
* fsubl: (libc)Misc FP Arithmetic.
* fsync: (libc)Synchronizing I/O.
* ftell: (libc)File Positioning.
* ftello64: (libc)File Positioning.
* ftello: (libc)File Positioning.
* ftruncate64: (libc)File Size.
* ftruncate: (libc)File Size.
* ftrylockfile: (libc)Streams and Threads.
* ftw64: (libc)Working with Directory Trees.
* ftw: (libc)Working with Directory Trees.
* funlockfile: (libc)Streams and Threads.
* futimes: (libc)File Times.
* fwide: (libc)Streams and I18N.
* fwprintf: (libc)Formatted Output Functions.
* fwrite: (libc)Block Input/Output.
* fwrite_unlocked: (libc)Block Input/Output.
* fwscanf: (libc)Formatted Input Functions.
* gamma: (libc)Special Functions.
* gammaf: (libc)Special Functions.
* gammal: (libc)Special Functions.
* gcvt: (libc)System V Number Conversion.
* get_avphys_pages: (libc)Query Memory Parameters.
* get_current_dir_name: (libc)Working Directory.
* get_nprocs: (libc)Processor Resources.
* get_nprocs_conf: (libc)Processor Resources.
* get_phys_pages: (libc)Query Memory Parameters.
* getauxval: (libc)Auxiliary Vector.
* getc: (libc)Character Input.
* getc_unlocked: (libc)Character Input.
* getchar: (libc)Character Input.
* getchar_unlocked: (libc)Character Input.
* getcontext: (libc)System V contexts.
* getcpu: (libc)CPU Affinity.
* getcwd: (libc)Working Directory.
* getdate: (libc)General Time String Parsing.
* getdate_r: (libc)General Time String Parsing.
* getdelim: (libc)Line Input.
* getdents64: (libc)Low-level Directory Access.
* getdomainnname: (libc)Host Identification.
* getegid: (libc)Reading Persona.
* getentropy: (libc)Unpredictable Bytes.
* getenv: (libc)Environment Access.
* geteuid: (libc)Reading Persona.
* getfsent: (libc)fstab.
* getfsfile: (libc)fstab.
* getfsspec: (libc)fstab.
* getgid: (libc)Reading Persona.
* getgrent: (libc)Scanning All Groups.
* getgrent_r: (libc)Scanning All Groups.
* getgrgid: (libc)Lookup Group.
* getgrgid_r: (libc)Lookup Group.
* getgrnam: (libc)Lookup Group.
* getgrnam_r: (libc)Lookup Group.
* getgrouplist: (libc)Setting Groups.
* getgroups: (libc)Reading Persona.
* gethostbyaddr: (libc)Host Names.
* gethostbyaddr_r: (libc)Host Names.
* gethostbyname2: (libc)Host Names.
* gethostbyname2_r: (libc)Host Names.
* gethostbyname: (libc)Host Names.
* gethostbyname_r: (libc)Host Names.
* gethostent: (libc)Host Names.
* gethostid: (libc)Host Identification.
* gethostname: (libc)Host Identification.
* getitimer: (libc)Setting an Alarm.
* getline: (libc)Line Input.
* getloadavg: (libc)Processor Resources.
* getlogin: (libc)Who Logged In.
* getmntent: (libc)mtab.
* getmntent_r: (libc)mtab.
* getnetbyaddr: (libc)Networks Database.
* getnetbyname: (libc)Networks Database.
* getnetent: (libc)Networks Database.
* getnetgrent: (libc)Lookup Netgroup.
* getnetgrent_r: (libc)Lookup Netgroup.
* getopt: (libc)Using Getopt.
* getopt_long: (libc)Getopt Long Options.
* getopt_long_only: (libc)Getopt Long Options.
* getpagesize: (libc)Query Memory Parameters.
* getpass: (libc)getpass.
* getpayload: (libc)FP Bit Twiddling.
* getpayloadf: (libc)FP Bit Twiddling.
* getpayloadfN: (libc)FP Bit Twiddling.
* getpayloadfNx: (libc)FP Bit Twiddling.
* getpayloadl: (libc)FP Bit Twiddling.
* getpeername: (libc)Who is Connected.
* getpgid: (libc)Process Group Functions.
* getpgrp: (libc)Process Group Functions.
* getpid: (libc)Process Identification.
* getppid: (libc)Process Identification.
* getpriority: (libc)Traditional Scheduling Functions.
* getprotobyname: (libc)Protocols Database.
* getprotobynumber: (libc)Protocols Database.
* getprotoent: (libc)Protocols Database.
* getpt: (libc)Allocation.
* getpwent: (libc)Scanning All Users.
* getpwent_r: (libc)Scanning All Users.
* getpwnam: (libc)Lookup User.
* getpwnam_r: (libc)Lookup User.
* getpwuid: (libc)Lookup User.
* getpwuid_r: (libc)Lookup User.
* getrandom: (libc)Unpredictable Bytes.
* getrlimit64: (libc)Limits on Resources.
* getrlimit: (libc)Limits on Resources.
* getrusage: (libc)Resource Usage.
* gets: (libc)Line Input.
* getservbyname: (libc)Services Database.
* getservbyport: (libc)Services Database.
* getservent: (libc)Services Database.
* getsid: (libc)Process Group Functions.
* getsockname: (libc)Reading Address.
* getsockopt: (libc)Socket Option Functions.
* getsubopt: (libc)Suboptions.
* gettext: (libc)Translation with gettext.
* gettid: (libc)Process Identification.
* gettimeofday: (libc)Getting the Time.
* getuid: (libc)Reading Persona.
* getumask: (libc)Setting Permissions.
* getutent: (libc)Manipulating the Database.
* getutent_r: (libc)Manipulating the Database.
* getutid: (libc)Manipulating the Database.
* getutid_r: (libc)Manipulating the Database.
* getutline: (libc)Manipulating the Database.
* getutline_r: (libc)Manipulating the Database.
* getutmp: (libc)XPG Functions.
* getutmpx: (libc)XPG Functions.
* getutxent: (libc)XPG Functions.
* getutxid: (libc)XPG Functions.
* getutxline: (libc)XPG Functions.
* getw: (libc)Character Input.
* getwc: (libc)Character Input.
* getwc_unlocked: (libc)Character Input.
* getwchar: (libc)Character Input.
* getwchar_unlocked: (libc)Character Input.
* getwd: (libc)Working Directory.
* glob64: (libc)Calling Glob.
* glob: (libc)Calling Glob.
* globfree64: (libc)More Flags for Globbing.
* globfree: (libc)More Flags for Globbing.
* gmtime: (libc)Broken-down Time.
* gmtime_r: (libc)Broken-down Time.
* grantpt: (libc)Allocation.
* gsignal: (libc)Signaling Yourself.
* gtty: (libc)BSD Terminal Modes.
* hasmntopt: (libc)mtab.
* hcreate: (libc)Hash Search Function.
* hcreate_r: (libc)Hash Search Function.
* hdestroy: (libc)Hash Search Function.
* hdestroy_r: (libc)Hash Search Function.
* hsearch: (libc)Hash Search Function.
* hsearch_r: (libc)Hash Search Function.
* htonl: (libc)Byte Order.
* htons: (libc)Byte Order.
* hypot: (libc)Exponents and Logarithms.
* hypotf: (libc)Exponents and Logarithms.
* hypotfN: (libc)Exponents and Logarithms.
* hypotfNx: (libc)Exponents and Logarithms.
* hypotl: (libc)Exponents and Logarithms.
* iconv: (libc)Generic Conversion Interface.
* iconv_close: (libc)Generic Conversion Interface.
* iconv_open: (libc)Generic Conversion Interface.
* if_freenameindex: (libc)Interface Naming.
* if_indextoname: (libc)Interface Naming.
* if_nameindex: (libc)Interface Naming.
* if_nametoindex: (libc)Interface Naming.
* ilogb: (libc)Exponents and Logarithms.
* ilogbf: (libc)Exponents and Logarithms.
* ilogbfN: (libc)Exponents and Logarithms.
* ilogbfNx: (libc)Exponents and Logarithms.
* ilogbl: (libc)Exponents and Logarithms.
* imaxabs: (libc)Absolute Value.
* imaxdiv: (libc)Integer Division.
* in6addr_any: (libc)Host Address Data Type.
* in6addr_loopback: (libc)Host Address Data Type.
* index: (libc)Search Functions.
* inet_addr: (libc)Host Address Functions.
* inet_aton: (libc)Host Address Functions.
* inet_lnaof: (libc)Host Address Functions.
* inet_makeaddr: (libc)Host Address Functions.
* inet_netof: (libc)Host Address Functions.
* inet_network: (libc)Host Address Functions.
* inet_ntoa: (libc)Host Address Functions.
* inet_ntop: (libc)Host Address Functions.
* inet_pton: (libc)Host Address Functions.
* initgroups: (libc)Setting Groups.
* initstate: (libc)BSD Random.
* initstate_r: (libc)BSD Random.
* innetgr: (libc)Netgroup Membership.
* ioctl: (libc)IOCTLs.
* isalnum: (libc)Classification of Characters.
* isalpha: (libc)Classification of Characters.
* isascii: (libc)Classification of Characters.
* isatty: (libc)Is It a Terminal.
* isblank: (libc)Classification of Characters.
* iscanonical: (libc)Floating Point Classes.
* iscntrl: (libc)Classification of Characters.
* isdigit: (libc)Classification of Characters.
* iseqsig: (libc)FP Comparison Functions.
* isfinite: (libc)Floating Point Classes.
* isgraph: (libc)Classification of Characters.
* isgreater: (libc)FP Comparison Functions.
* isgreaterequal: (libc)FP Comparison Functions.
* isinf: (libc)Floating Point Classes.
* isinff: (libc)Floating Point Classes.
* isinfl: (libc)Floating Point Classes.
* isless: (libc)FP Comparison Functions.
* islessequal: (libc)FP Comparison Functions.
* islessgreater: (libc)FP Comparison Functions.
* islower: (libc)Classification of Characters.
* isnan: (libc)Floating Point Classes.
* isnan: (libc)Floating Point Classes.
* isnanf: (libc)Floating Point Classes.
* isnanl: (libc)Floating Point Classes.
* isnormal: (libc)Floating Point Classes.
* isprint: (libc)Classification of Characters.
* ispunct: (libc)Classification of Characters.
* issignaling: (libc)Floating Point Classes.
* isspace: (libc)Classification of Characters.
* issubnormal: (libc)Floating Point Classes.
* isunordered: (libc)FP Comparison Functions.
* isupper: (libc)Classification of Characters.
* iswalnum: (libc)Classification of Wide Characters.
* iswalpha: (libc)Classification of Wide Characters.
* iswblank: (libc)Classification of Wide Characters.
* iswcntrl: (libc)Classification of Wide Characters.
* iswctype: (libc)Classification of Wide Characters.
* iswdigit: (libc)Classification of Wide Characters.
* iswgraph: (libc)Classification of Wide Characters.
* iswlower: (libc)Classification of Wide Characters.
* iswprint: (libc)Classification of Wide Characters.
* iswpunct: (libc)Classification of Wide Characters.
* iswspace: (libc)Classification of Wide Characters.
* iswupper: (libc)Classification of Wide Characters.
* iswxdigit: (libc)Classification of Wide Characters.
* isxdigit: (libc)Classification of Characters.
* iszero: (libc)Floating Point Classes.
* j0: (libc)Special Functions.
* j0f: (libc)Special Functions.
* j0fN: (libc)Special Functions.
* j0fNx: (libc)Special Functions.
* j0l: (libc)Special Functions.
* j1: (libc)Special Functions.
* j1f: (libc)Special Functions.
* j1fN: (libc)Special Functions.
* j1fNx: (libc)Special Functions.
* j1l: (libc)Special Functions.
* jn: (libc)Special Functions.
* jnf: (libc)Special Functions.
* jnfN: (libc)Special Functions.
* jnfNx: (libc)Special Functions.
* jnl: (libc)Special Functions.
* jrand48: (libc)SVID Random.
* jrand48_r: (libc)SVID Random.
* kill: (libc)Signaling Another Process.
* killpg: (libc)Signaling Another Process.
* l64a: (libc)Encode Binary Data.
* labs: (libc)Absolute Value.
* lcong48: (libc)SVID Random.
* lcong48_r: (libc)SVID Random.
* ldexp: (libc)Normalization Functions.
* ldexpf: (libc)Normalization Functions.
* ldexpfN: (libc)Normalization Functions.
* ldexpfNx: (libc)Normalization Functions.
* ldexpl: (libc)Normalization Functions.
* ldiv: (libc)Integer Division.
* lfind: (libc)Array Search Function.
* lgamma: (libc)Special Functions.
* lgamma_r: (libc)Special Functions.
* lgammaf: (libc)Special Functions.
* lgammafN: (libc)Special Functions.
* lgammafN_r: (libc)Special Functions.
* lgammafNx: (libc)Special Functions.
* lgammafNx_r: (libc)Special Functions.
* lgammaf_r: (libc)Special Functions.
* lgammal: (libc)Special Functions.
* lgammal_r: (libc)Special Functions.
* link: (libc)Hard Links.
* linkat: (libc)Hard Links.
* lio_listio64: (libc)Asynchronous Reads/Writes.
* lio_listio: (libc)Asynchronous Reads/Writes.
* listen: (libc)Listening.
* llabs: (libc)Absolute Value.
* lldiv: (libc)Integer Division.
* llogb: (libc)Exponents and Logarithms.
* llogbf: (libc)Exponents and Logarithms.
* llogbfN: (libc)Exponents and Logarithms.
* llogbfNx: (libc)Exponents and Logarithms.
* llogbl: (libc)Exponents and Logarithms.
* llrint: (libc)Rounding Functions.
* llrintf: (libc)Rounding Functions.
* llrintfN: (libc)Rounding Functions.
* llrintfNx: (libc)Rounding Functions.
* llrintl: (libc)Rounding Functions.
* llround: (libc)Rounding Functions.
* llroundf: (libc)Rounding Functions.
* llroundfN: (libc)Rounding Functions.
* llroundfNx: (libc)Rounding Functions.
* llroundl: (libc)Rounding Functions.
* localeconv: (libc)The Lame Way to Locale Data.
* localtime: (libc)Broken-down Time.
* localtime_r: (libc)Broken-down Time.
* log10: (libc)Exponents and Logarithms.
* log10f: (libc)Exponents and Logarithms.
* log10fN: (libc)Exponents and Logarithms.
* log10fNx: (libc)Exponents and Logarithms.
* log10l: (libc)Exponents and Logarithms.
* log1p: (libc)Exponents and Logarithms.
* log1pf: (libc)Exponents and Logarithms.
* log1pfN: (libc)Exponents and Logarithms.
* log1pfNx: (libc)Exponents and Logarithms.
* log1pl: (libc)Exponents and Logarithms.
* log2: (libc)Exponents and Logarithms.
* log2f: (libc)Exponents and Logarithms.
* log2fN: (libc)Exponents and Logarithms.
* log2fNx: (libc)Exponents and Logarithms.
* log2l: (libc)Exponents and Logarithms.
* log: (libc)Exponents and Logarithms.
* logb: (libc)Exponents and Logarithms.
* logbf: (libc)Exponents and Logarithms.
* logbfN: (libc)Exponents and Logarithms.
* logbfNx: (libc)Exponents and Logarithms.
* logbl: (libc)Exponents and Logarithms.
* logf: (libc)Exponents and Logarithms.
* logfN: (libc)Exponents and Logarithms.
* logfNx: (libc)Exponents and Logarithms.
* login: (libc)Logging In and Out.
* login_tty: (libc)Logging In and Out.
* logl: (libc)Exponents and Logarithms.
* logout: (libc)Logging In and Out.
* logwtmp: (libc)Logging In and Out.
* longjmp: (libc)Non-Local Details.
* lrand48: (libc)SVID Random.
* lrand48_r: (libc)SVID Random.
* lrint: (libc)Rounding Functions.
* lrintf: (libc)Rounding Functions.
* lrintfN: (libc)Rounding Functions.
* lrintfNx: (libc)Rounding Functions.
* lrintl: (libc)Rounding Functions.
* lround: (libc)Rounding Functions.
* lroundf: (libc)Rounding Functions.
* lroundfN: (libc)Rounding Functions.
* lroundfNx: (libc)Rounding Functions.
* lroundl: (libc)Rounding Functions.
* lsearch: (libc)Array Search Function.
* lseek64: (libc)File Position Primitive.
* lseek: (libc)File Position Primitive.
* lstat64: (libc)Reading Attributes.
* lstat: (libc)Reading Attributes.
* lutimes: (libc)File Times.
* madvise: (libc)Memory-mapped I/O.
* makecontext: (libc)System V contexts.
* mallinfo2: (libc)Statistics of Malloc.
* malloc: (libc)Basic Allocation.
* mallopt: (libc)Malloc Tunable Parameters.
* mblen: (libc)Non-reentrant Character Conversion.
* mbrlen: (libc)Converting a Character.
* mbrtowc: (libc)Converting a Character.
* mbsinit: (libc)Keeping the state.
* mbsnrtowcs: (libc)Converting Strings.
* mbsrtowcs: (libc)Converting Strings.
* mbstowcs: (libc)Non-reentrant String Conversion.
* mbtowc: (libc)Non-reentrant Character Conversion.
* mcheck: (libc)Heap Consistency Checking.
* memalign: (libc)Aligned Memory Blocks.
* memccpy: (libc)Copying Strings and Arrays.
* memchr: (libc)Search Functions.
* memcmp: (libc)String/Array Comparison.
* memcpy: (libc)Copying Strings and Arrays.
* memfd_create: (libc)Memory-mapped I/O.
* memfrob: (libc)Obfuscating Data.
* memmem: (libc)Search Functions.
* memmove: (libc)Copying Strings and Arrays.
* mempcpy: (libc)Copying Strings and Arrays.
* memrchr: (libc)Search Functions.
* memset: (libc)Copying Strings and Arrays.
* mkdir: (libc)Creating Directories.
* mkdtemp: (libc)Temporary Files.
* mkfifo: (libc)FIFO Special Files.
* mknod: (libc)Making Special Files.
* mkstemp: (libc)Temporary Files.
* mktemp: (libc)Temporary Files.
* mktime: (libc)Broken-down Time.
* mlock2: (libc)Page Lock Functions.
* mlock: (libc)Page Lock Functions.
* mlockall: (libc)Page Lock Functions.
* mmap64: (libc)Memory-mapped I/O.
* mmap: (libc)Memory-mapped I/O.
* modf: (libc)Rounding Functions.
* modff: (libc)Rounding Functions.
* modffN: (libc)Rounding Functions.
* modffNx: (libc)Rounding Functions.
* modfl: (libc)Rounding Functions.
* mount: (libc)Mount-Unmount-Remount.
* mprobe: (libc)Heap Consistency Checking.
* mprotect: (libc)Memory Protection.
* mrand48: (libc)SVID Random.
* mrand48_r: (libc)SVID Random.
* mremap: (libc)Memory-mapped I/O.
* msync: (libc)Memory-mapped I/O.
* mtrace: (libc)Tracing malloc.
* mtx_destroy: (libc)ISO C Mutexes.
* mtx_init: (libc)ISO C Mutexes.
* mtx_lock: (libc)ISO C Mutexes.
* mtx_timedlock: (libc)ISO C Mutexes.
* mtx_trylock: (libc)ISO C Mutexes.
* mtx_unlock: (libc)ISO C Mutexes.
* munlock: (libc)Page Lock Functions.
* munlockall: (libc)Page Lock Functions.
* munmap: (libc)Memory-mapped I/O.
* muntrace: (libc)Tracing malloc.
* nan: (libc)FP Bit Twiddling.
* nanf: (libc)FP Bit Twiddling.
* nanfN: (libc)FP Bit Twiddling.
* nanfNx: (libc)FP Bit Twiddling.
* nanl: (libc)FP Bit Twiddling.
* nanosleep: (libc)Sleeping.
* nearbyint: (libc)Rounding Functions.
* nearbyintf: (libc)Rounding Functions.
* nearbyintfN: (libc)Rounding Functions.
* nearbyintfNx: (libc)Rounding Functions.
* nearbyintl: (libc)Rounding Functions.
* nextafter: (libc)FP Bit Twiddling.
* nextafterf: (libc)FP Bit Twiddling.
* nextafterfN: (libc)FP Bit Twiddling.
* nextafterfNx: (libc)FP Bit Twiddling.
* nextafterl: (libc)FP Bit Twiddling.
* nextdown: (libc)FP Bit Twiddling.
* nextdownf: (libc)FP Bit Twiddling.
* nextdownfN: (libc)FP Bit Twiddling.
* nextdownfNx: (libc)FP Bit Twiddling.
* nextdownl: (libc)FP Bit Twiddling.
* nexttoward: (libc)FP Bit Twiddling.
* nexttowardf: (libc)FP Bit Twiddling.
* nexttowardl: (libc)FP Bit Twiddling.
* nextup: (libc)FP Bit Twiddling.
* nextupf: (libc)FP Bit Twiddling.
* nextupfN: (libc)FP Bit Twiddling.
* nextupfNx: (libc)FP Bit Twiddling.
* nextupl: (libc)FP Bit Twiddling.
* nftw64: (libc)Working with Directory Trees.
* nftw: (libc)Working with Directory Trees.
* ngettext: (libc)Advanced gettext functions.
* nice: (libc)Traditional Scheduling Functions.
* nl_langinfo: (libc)The Elegant and Fast Way.
* nrand48: (libc)SVID Random.
* nrand48_r: (libc)SVID Random.
* ntohl: (libc)Byte Order.
* ntohs: (libc)Byte Order.
* ntp_adjtime: (libc)Setting and Adjusting the Time.
* ntp_gettime: (libc)Setting and Adjusting the Time.
* obstack_1grow: (libc)Growing Objects.
* obstack_1grow_fast: (libc)Extra Fast Growing.
* obstack_alignment_mask: (libc)Obstacks Data Alignment.
* obstack_alloc: (libc)Allocation in an Obstack.
* obstack_base: (libc)Status of an Obstack.
* obstack_blank: (libc)Growing Objects.
* obstack_blank_fast: (libc)Extra Fast Growing.
* obstack_chunk_size: (libc)Obstack Chunks.
* obstack_copy0: (libc)Allocation in an Obstack.
* obstack_copy: (libc)Allocation in an Obstack.
* obstack_finish: (libc)Growing Objects.
* obstack_free: (libc)Freeing Obstack Objects.
* obstack_grow0: (libc)Growing Objects.
* obstack_grow: (libc)Growing Objects.
* obstack_init: (libc)Preparing for Obstacks.
* obstack_int_grow: (libc)Growing Objects.
* obstack_int_grow_fast: (libc)Extra Fast Growing.
* obstack_next_free: (libc)Status of an Obstack.
* obstack_object_size: (libc)Growing Objects.
* obstack_object_size: (libc)Status of an Obstack.
* obstack_printf: (libc)Dynamic Output.
* obstack_ptr_grow: (libc)Growing Objects.
* obstack_ptr_grow_fast: (libc)Extra Fast Growing.
* obstack_room: (libc)Extra Fast Growing.
* obstack_vprintf: (libc)Variable Arguments Output.
* offsetof: (libc)Structure Measurement.
* on_exit: (libc)Cleanups on Exit.
* open64: (libc)Opening and Closing Files.
* open: (libc)Opening and Closing Files.
* open_memstream: (libc)String Streams.
* opendir: (libc)Opening a Directory.
* openlog: (libc)openlog.
* openpty: (libc)Pseudo-Terminal Pairs.
* parse_printf_format: (libc)Parsing a Template String.
* pathconf: (libc)Pathconf.
* pause: (libc)Using Pause.
* pclose: (libc)Pipe to a Subprocess.
* perror: (libc)Error Messages.
* pipe: (libc)Creating a Pipe.
* pkey_alloc: (libc)Memory Protection.
* pkey_free: (libc)Memory Protection.
* pkey_get: (libc)Memory Protection.
* pkey_mprotect: (libc)Memory Protection.
* pkey_set: (libc)Memory Protection.
* popen: (libc)Pipe to a Subprocess.
* posix_fallocate64: (libc)Storage Allocation.
* posix_fallocate: (libc)Storage Allocation.
* posix_memalign: (libc)Aligned Memory Blocks.
* pow: (libc)Exponents and Logarithms.
* powf: (libc)Exponents and Logarithms.
* powfN: (libc)Exponents and Logarithms.
* powfNx: (libc)Exponents and Logarithms.
* powl: (libc)Exponents and Logarithms.
* pread64: (libc)I/O Primitives.
* pread: (libc)I/O Primitives.
* preadv2: (libc)Scatter-Gather.
* preadv64: (libc)Scatter-Gather.
* preadv64v2: (libc)Scatter-Gather.
* preadv: (libc)Scatter-Gather.
* printf: (libc)Formatted Output Functions.
* printf_size: (libc)Predefined Printf Handlers.
* printf_size_info: (libc)Predefined Printf Handlers.
* psignal: (libc)Signal Messages.
* pthread_attr_getsigmask_np: (libc)Initial Thread Signal Mask.
* pthread_attr_setsigmask_np: (libc)Initial Thread Signal Mask.
* pthread_clockjoin_np: (libc)Waiting with Explicit Clocks.
* pthread_cond_clockwait: (libc)Waiting with Explicit Clocks.
* pthread_getattr_default_np: (libc)Default Thread Attributes.
* pthread_getspecific: (libc)Thread-specific Data.
* pthread_key_create: (libc)Thread-specific Data.
* pthread_key_delete: (libc)Thread-specific Data.
* pthread_rwlock_clockrdlock: (libc)Waiting with Explicit Clocks.
* pthread_rwlock_clockwrlock: (libc)Waiting with Explicit Clocks.
* pthread_setattr_default_np: (libc)Default Thread Attributes.
* pthread_setspecific: (libc)Thread-specific Data.
* pthread_timedjoin_np: (libc)Waiting with Explicit Clocks.
* pthread_tryjoin_np: (libc)Waiting with Explicit Clocks.
* ptsname: (libc)Allocation.
* ptsname_r: (libc)Allocation.
* putc: (libc)Simple Output.
* putc_unlocked: (libc)Simple Output.
* putchar: (libc)Simple Output.
* putchar_unlocked: (libc)Simple Output.
* putenv: (libc)Environment Access.
* putpwent: (libc)Writing a User Entry.
* puts: (libc)Simple Output.
* pututline: (libc)Manipulating the Database.
* pututxline: (libc)XPG Functions.
* putw: (libc)Simple Output.
* putwc: (libc)Simple Output.
* putwc_unlocked: (libc)Simple Output.
* putwchar: (libc)Simple Output.
* putwchar_unlocked: (libc)Simple Output.
* pwrite64: (libc)I/O Primitives.
* pwrite: (libc)I/O Primitives.
* pwritev2: (libc)Scatter-Gather.
* pwritev64: (libc)Scatter-Gather.
* pwritev64v2: (libc)Scatter-Gather.
* pwritev: (libc)Scatter-Gather.
* qecvt: (libc)System V Number Conversion.
* qecvt_r: (libc)System V Number Conversion.
* qfcvt: (libc)System V Number Conversion.
* qfcvt_r: (libc)System V Number Conversion.
* qgcvt: (libc)System V Number Conversion.
* qsort: (libc)Array Sort Function.
* raise: (libc)Signaling Yourself.
* rand: (libc)ISO Random.
* rand_r: (libc)ISO Random.
* random: (libc)BSD Random.
* random_r: (libc)BSD Random.
* rawmemchr: (libc)Search Functions.
* read: (libc)I/O Primitives.
* readdir64: (libc)Reading/Closing Directory.
* readdir64_r: (libc)Reading/Closing Directory.
* readdir: (libc)Reading/Closing Directory.
* readdir_r: (libc)Reading/Closing Directory.
* readlink: (libc)Symbolic Links.
* readv: (libc)Scatter-Gather.
* realloc: (libc)Changing Block Size.
* reallocarray: (libc)Changing Block Size.
* realpath: (libc)Symbolic Links.
* recv: (libc)Receiving Data.
* recvfrom: (libc)Receiving Datagrams.
* recvmsg: (libc)Receiving Datagrams.
* regcomp: (libc)POSIX Regexp Compilation.
* regerror: (libc)Regexp Cleanup.
* regexec: (libc)Matching POSIX Regexps.
* regfree: (libc)Regexp Cleanup.
* register_printf_function: (libc)Registering New Conversions.
* remainder: (libc)Remainder Functions.
* remainderf: (libc)Remainder Functions.
* remainderfN: (libc)Remainder Functions.
* remainderfNx: (libc)Remainder Functions.
* remainderl: (libc)Remainder Functions.
* remove: (libc)Deleting Files.
* rename: (libc)Renaming Files.
* rewind: (libc)File Positioning.
* rewinddir: (libc)Random Access Directory.
* rindex: (libc)Search Functions.
* rint: (libc)Rounding Functions.
* rintf: (libc)Rounding Functions.
* rintfN: (libc)Rounding Functions.
* rintfNx: (libc)Rounding Functions.
* rintl: (libc)Rounding Functions.
* rmdir: (libc)Deleting Files.
* round: (libc)Rounding Functions.
* roundeven: (libc)Rounding Functions.
* roundevenf: (libc)Rounding Functions.
* roundevenfN: (libc)Rounding Functions.
* roundevenfNx: (libc)Rounding Functions.
* roundevenl: (libc)Rounding Functions.
* roundf: (libc)Rounding Functions.
* roundfN: (libc)Rounding Functions.
* roundfNx: (libc)Rounding Functions.
* roundl: (libc)Rounding Functions.
* rpmatch: (libc)Yes-or-No Questions.
* sbrk: (libc)Resizing the Data Segment.
* scalb: (libc)Normalization Functions.
* scalbf: (libc)Normalization Functions.
* scalbl: (libc)Normalization Functions.
* scalbln: (libc)Normalization Functions.
* scalblnf: (libc)Normalization Functions.
* scalblnfN: (libc)Normalization Functions.
* scalblnfNx: (libc)Normalization Functions.
* scalblnl: (libc)Normalization Functions.
* scalbn: (libc)Normalization Functions.
* scalbnf: (libc)Normalization Functions.
* scalbnfN: (libc)Normalization Functions.
* scalbnfNx: (libc)Normalization Functions.
* scalbnl: (libc)Normalization Functions.
* scandir64: (libc)Scanning Directory Content.
* scandir: (libc)Scanning Directory Content.
* scanf: (libc)Formatted Input Functions.
* sched_get_priority_max: (libc)Basic Scheduling Functions.
* sched_get_priority_min: (libc)Basic Scheduling Functions.
* sched_getaffinity: (libc)CPU Affinity.
* sched_getparam: (libc)Basic Scheduling Functions.
* sched_getscheduler: (libc)Basic Scheduling Functions.
* sched_rr_get_interval: (libc)Basic Scheduling Functions.
* sched_setaffinity: (libc)CPU Affinity.
* sched_setparam: (libc)Basic Scheduling Functions.
* sched_setscheduler: (libc)Basic Scheduling Functions.
* sched_yield: (libc)Basic Scheduling Functions.
* secure_getenv: (libc)Environment Access.
* seed48: (libc)SVID Random.
* seed48_r: (libc)SVID Random.
* seekdir: (libc)Random Access Directory.
* select: (libc)Waiting for I/O.
* sem_clockwait: (libc)Waiting with Explicit Clocks.
* sem_close: (libc)Semaphores.
* sem_destroy: (libc)Semaphores.
* sem_getvalue: (libc)Semaphores.
* sem_init: (libc)Semaphores.
* sem_open: (libc)Semaphores.
* sem_post: (libc)Semaphores.
* sem_timedwait: (libc)Semaphores.
* sem_trywait: (libc)Semaphores.
* sem_unlink: (libc)Semaphores.
* sem_wait: (libc)Semaphores.
* semctl: (libc)Semaphores.
* semget: (libc)Semaphores.
* semop: (libc)Semaphores.
* semtimedop: (libc)Semaphores.
* send: (libc)Sending Data.
* sendmsg: (libc)Receiving Datagrams.
* sendto: (libc)Sending Datagrams.
* setbuf: (libc)Controlling Buffering.
* setbuffer: (libc)Controlling Buffering.
* setcontext: (libc)System V contexts.
* setdomainname: (libc)Host Identification.
* setegid: (libc)Setting Groups.
* setenv: (libc)Environment Access.
* seteuid: (libc)Setting User ID.
* setfsent: (libc)fstab.
* setgid: (libc)Setting Groups.
* setgrent: (libc)Scanning All Groups.
* setgroups: (libc)Setting Groups.
* sethostent: (libc)Host Names.
* sethostid: (libc)Host Identification.
* sethostname: (libc)Host Identification.
* setitimer: (libc)Setting an Alarm.
* setjmp: (libc)Non-Local Details.
* setlinebuf: (libc)Controlling Buffering.
* setlocale: (libc)Setting the Locale.
* setlogmask: (libc)setlogmask.
* setmntent: (libc)mtab.
* setnetent: (libc)Networks Database.
* setnetgrent: (libc)Lookup Netgroup.
* setpayload: (libc)FP Bit Twiddling.
* setpayloadf: (libc)FP Bit Twiddling.
* setpayloadfN: (libc)FP Bit Twiddling.
* setpayloadfNx: (libc)FP Bit Twiddling.
* setpayloadl: (libc)FP Bit Twiddling.
* setpayloadsig: (libc)FP Bit Twiddling.
* setpayloadsigf: (libc)FP Bit Twiddling.
* setpayloadsigfN: (libc)FP Bit Twiddling.
* setpayloadsigfNx: (libc)FP Bit Twiddling.
* setpayloadsigl: (libc)FP Bit Twiddling.
* setpgid: (libc)Process Group Functions.
* setpgrp: (libc)Process Group Functions.
* setpriority: (libc)Traditional Scheduling Functions.
* setprotoent: (libc)Protocols Database.
* setpwent: (libc)Scanning All Users.
* setregid: (libc)Setting Groups.
* setreuid: (libc)Setting User ID.
* setrlimit64: (libc)Limits on Resources.
* setrlimit: (libc)Limits on Resources.
* setservent: (libc)Services Database.
* setsid: (libc)Process Group Functions.
* setsockopt: (libc)Socket Option Functions.
* setstate: (libc)BSD Random.
* setstate_r: (libc)BSD Random.
* settimeofday: (libc)Setting and Adjusting the Time.
* setuid: (libc)Setting User ID.
* setutent: (libc)Manipulating the Database.
* setutxent: (libc)XPG Functions.
* setvbuf: (libc)Controlling Buffering.
* shm_open: (libc)Memory-mapped I/O.
* shm_unlink: (libc)Memory-mapped I/O.
* shutdown: (libc)Closing a Socket.
* sigabbrev_np: (libc)Signal Messages.
* sigaction: (libc)Advanced Signal Handling.
* sigaddset: (libc)Signal Sets.
* sigaltstack: (libc)Signal Stack.
* sigblock: (libc)BSD Signal Handling.
* sigdelset: (libc)Signal Sets.
* sigdescr_np: (libc)Signal Messages.
* sigemptyset: (libc)Signal Sets.
* sigfillset: (libc)Signal Sets.
* siginterrupt: (libc)BSD Signal Handling.
* sigismember: (libc)Signal Sets.
* siglongjmp: (libc)Non-Local Exits and Signals.
* sigmask: (libc)BSD Signal Handling.
* signal: (libc)Basic Signal Handling.
* signbit: (libc)FP Bit Twiddling.
* significand: (libc)Normalization Functions.
* significandf: (libc)Normalization Functions.
* significandl: (libc)Normalization Functions.
* sigpause: (libc)BSD Signal Handling.
* sigpending: (libc)Checking for Pending Signals.
* sigprocmask: (libc)Process Signal Mask.
* sigsetjmp: (libc)Non-Local Exits and Signals.
* sigsetmask: (libc)BSD Signal Handling.
* sigstack: (libc)Signal Stack.
* sigsuspend: (libc)Sigsuspend.
* sin: (libc)Trig Functions.
* sincos: (libc)Trig Functions.
* sincosf: (libc)Trig Functions.
* sincosfN: (libc)Trig Functions.
* sincosfNx: (libc)Trig Functions.
* sincosl: (libc)Trig Functions.
* sinf: (libc)Trig Functions.
* sinfN: (libc)Trig Functions.
* sinfNx: (libc)Trig Functions.
* sinh: (libc)Hyperbolic Functions.
* sinhf: (libc)Hyperbolic Functions.
* sinhfN: (libc)Hyperbolic Functions.
* sinhfNx: (libc)Hyperbolic Functions.
* sinhl: (libc)Hyperbolic Functions.
* sinl: (libc)Trig Functions.
* sleep: (libc)Sleeping.
* snprintf: (libc)Formatted Output Functions.
* socket: (libc)Creating a Socket.
* socketpair: (libc)Socket Pairs.
* sprintf: (libc)Formatted Output Functions.
* sqrt: (libc)Exponents and Logarithms.
* sqrtf: (libc)Exponents and Logarithms.
* sqrtfN: (libc)Exponents and Logarithms.
* sqrtfNx: (libc)Exponents and Logarithms.
* sqrtl: (libc)Exponents and Logarithms.
* srand48: (libc)SVID Random.
* srand48_r: (libc)SVID Random.
* srand: (libc)ISO Random.
* srandom: (libc)BSD Random.
* srandom_r: (libc)BSD Random.
* sscanf: (libc)Formatted Input Functions.
* ssignal: (libc)Basic Signal Handling.
* stat64: (libc)Reading Attributes.
* stat: (libc)Reading Attributes.
* stime: (libc)Setting and Adjusting the Time.
* stpcpy: (libc)Copying Strings and Arrays.
* stpncpy: (libc)Truncating Strings.
* strcasecmp: (libc)String/Array Comparison.
* strcasestr: (libc)Search Functions.
* strcat: (libc)Concatenating Strings.
* strchr: (libc)Search Functions.
* strchrnul: (libc)Search Functions.
* strcmp: (libc)String/Array Comparison.
* strcoll: (libc)Collation Functions.
* strcpy: (libc)Copying Strings and Arrays.
* strcspn: (libc)Search Functions.
* strdup: (libc)Copying Strings and Arrays.
* strdupa: (libc)Copying Strings and Arrays.
* strerror: (libc)Error Messages.
* strerror_r: (libc)Error Messages.
* strerrordesc_np: (libc)Error Messages.
* strerrorname_np: (libc)Error Messages.
* strfmon: (libc)Formatting Numbers.
* strfromd: (libc)Printing of Floats.
* strfromf: (libc)Printing of Floats.
* strfromfN: (libc)Printing of Floats.
* strfromfNx: (libc)Printing of Floats.
* strfroml: (libc)Printing of Floats.
* strfry: (libc)Shuffling Bytes.
* strftime: (libc)Formatting Calendar Time.
* strlen: (libc)String Length.
* strncasecmp: (libc)String/Array Comparison.
* strncat: (libc)Truncating Strings.
* strncmp: (libc)String/Array Comparison.
* strncpy: (libc)Truncating Strings.
* strndup: (libc)Truncating Strings.
* strndupa: (libc)Truncating Strings.
* strnlen: (libc)String Length.
* strpbrk: (libc)Search Functions.
* strptime: (libc)Low-Level Time String Parsing.
* strrchr: (libc)Search Functions.
* strsep: (libc)Finding Tokens in a String.
* strsignal: (libc)Signal Messages.
* strspn: (libc)Search Functions.
* strstr: (libc)Search Functions.
* strtod: (libc)Parsing of Floats.
* strtof: (libc)Parsing of Floats.
* strtofN: (libc)Parsing of Floats.
* strtofNx: (libc)Parsing of Floats.
* strtoimax: (libc)Parsing of Integers.
* strtok: (libc)Finding Tokens in a String.
* strtok_r: (libc)Finding Tokens in a String.
* strtol: (libc)Parsing of Integers.
* strtold: (libc)Parsing of Floats.
* strtoll: (libc)Parsing of Integers.
* strtoq: (libc)Parsing of Integers.
* strtoul: (libc)Parsing of Integers.
* strtoull: (libc)Parsing of Integers.
* strtoumax: (libc)Parsing of Integers.
* strtouq: (libc)Parsing of Integers.
* strverscmp: (libc)String/Array Comparison.
* strxfrm: (libc)Collation Functions.
* stty: (libc)BSD Terminal Modes.
* swapcontext: (libc)System V contexts.
* swprintf: (libc)Formatted Output Functions.
* swscanf: (libc)Formatted Input Functions.
* symlink: (libc)Symbolic Links.
* sync: (libc)Synchronizing I/O.
* syscall: (libc)System Calls.
* sysconf: (libc)Sysconf Definition.
* syslog: (libc)syslog; vsyslog.
* system: (libc)Running a Command.
* sysv_signal: (libc)Basic Signal Handling.
* tan: (libc)Trig Functions.
* tanf: (libc)Trig Functions.
* tanfN: (libc)Trig Functions.
* tanfNx: (libc)Trig Functions.
* tanh: (libc)Hyperbolic Functions.
* tanhf: (libc)Hyperbolic Functions.
* tanhfN: (libc)Hyperbolic Functions.
* tanhfNx: (libc)Hyperbolic Functions.
* tanhl: (libc)Hyperbolic Functions.
* tanl: (libc)Trig Functions.
* tcdrain: (libc)Line Control.
* tcflow: (libc)Line Control.
* tcflush: (libc)Line Control.
* tcgetattr: (libc)Mode Functions.
* tcgetpgrp: (libc)Terminal Access Functions.
* tcgetsid: (libc)Terminal Access Functions.
* tcsendbreak: (libc)Line Control.
* tcsetattr: (libc)Mode Functions.
* tcsetpgrp: (libc)Terminal Access Functions.
* tdelete: (libc)Tree Search Function.
* tdestroy: (libc)Tree Search Function.
* telldir: (libc)Random Access Directory.
* tempnam: (libc)Temporary Files.
* textdomain: (libc)Locating gettext catalog.
* tfind: (libc)Tree Search Function.
* tgamma: (libc)Special Functions.
* tgammaf: (libc)Special Functions.
* tgammafN: (libc)Special Functions.
* tgammafNx: (libc)Special Functions.
* tgammal: (libc)Special Functions.
* tgkill: (libc)Signaling Another Process.
* thrd_create: (libc)ISO C Thread Management.
* thrd_current: (libc)ISO C Thread Management.
* thrd_detach: (libc)ISO C Thread Management.
* thrd_equal: (libc)ISO C Thread Management.
* thrd_exit: (libc)ISO C Thread Management.
* thrd_join: (libc)ISO C Thread Management.
* thrd_sleep: (libc)ISO C Thread Management.
* thrd_yield: (libc)ISO C Thread Management.
* time: (libc)Getting the Time.
* timegm: (libc)Broken-down Time.
* timelocal: (libc)Broken-down Time.
* times: (libc)Processor Time.
* tmpfile64: (libc)Temporary Files.
* tmpfile: (libc)Temporary Files.
* tmpnam: (libc)Temporary Files.
* tmpnam_r: (libc)Temporary Files.
* toascii: (libc)Case Conversion.
* tolower: (libc)Case Conversion.
* totalorder: (libc)FP Comparison Functions.
* totalorderf: (libc)FP Comparison Functions.
* totalorderfN: (libc)FP Comparison Functions.
* totalorderfNx: (libc)FP Comparison Functions.
* totalorderl: (libc)FP Comparison Functions.
* totalordermag: (libc)FP Comparison Functions.
* totalordermagf: (libc)FP Comparison Functions.
* totalordermagfN: (libc)FP Comparison Functions.
* totalordermagfNx: (libc)FP Comparison Functions.
* totalordermagl: (libc)FP Comparison Functions.
* toupper: (libc)Case Conversion.
* towctrans: (libc)Wide Character Case Conversion.
* towlower: (libc)Wide Character Case Conversion.
* towupper: (libc)Wide Character Case Conversion.
* trunc: (libc)Rounding Functions.
* truncate64: (libc)File Size.
* truncate: (libc)File Size.
* truncf: (libc)Rounding Functions.
* truncfN: (libc)Rounding Functions.
* truncfNx: (libc)Rounding Functions.
* truncl: (libc)Rounding Functions.
* tsearch: (libc)Tree Search Function.
* tss_create: (libc)ISO C Thread-local Storage.
* tss_delete: (libc)ISO C Thread-local Storage.
* tss_get: (libc)ISO C Thread-local Storage.
* tss_set: (libc)ISO C Thread-local Storage.
* ttyname: (libc)Is It a Terminal.
* ttyname_r: (libc)Is It a Terminal.
* twalk: (libc)Tree Search Function.
* twalk_r: (libc)Tree Search Function.
* tzset: (libc)Time Zone Functions.
* ufromfp: (libc)Rounding Functions.
* ufromfpf: (libc)Rounding Functions.
* ufromfpfN: (libc)Rounding Functions.
* ufromfpfNx: (libc)Rounding Functions.
* ufromfpl: (libc)Rounding Functions.
* ufromfpx: (libc)Rounding Functions.
* ufromfpxf: (libc)Rounding Functions.
* ufromfpxfN: (libc)Rounding Functions.
* ufromfpxfNx: (libc)Rounding Functions.
* ufromfpxl: (libc)Rounding Functions.
* ulimit: (libc)Limits on Resources.
* umask: (libc)Setting Permissions.
* umount2: (libc)Mount-Unmount-Remount.
* umount: (libc)Mount-Unmount-Remount.
* uname: (libc)Platform Type.
* ungetc: (libc)How Unread.
* ungetwc: (libc)How Unread.
* unlink: (libc)Deleting Files.
* unlockpt: (libc)Allocation.
* unsetenv: (libc)Environment Access.
* updwtmp: (libc)Manipulating the Database.
* utime: (libc)File Times.
* utimes: (libc)File Times.
* utmpname: (libc)Manipulating the Database.
* utmpxname: (libc)XPG Functions.
* va_arg: (libc)Argument Macros.
* va_copy: (libc)Argument Macros.
* va_end: (libc)Argument Macros.
* va_start: (libc)Argument Macros.
* valloc: (libc)Aligned Memory Blocks.
* vasprintf: (libc)Variable Arguments Output.
* verr: (libc)Error Messages.
* verrx: (libc)Error Messages.
* versionsort64: (libc)Scanning Directory Content.
* versionsort: (libc)Scanning Directory Content.
* vfork: (libc)Creating a Process.
* vfprintf: (libc)Variable Arguments Output.
* vfscanf: (libc)Variable Arguments Input.
* vfwprintf: (libc)Variable Arguments Output.
* vfwscanf: (libc)Variable Arguments Input.
* vlimit: (libc)Limits on Resources.
* vprintf: (libc)Variable Arguments Output.
* vscanf: (libc)Variable Arguments Input.
* vsnprintf: (libc)Variable Arguments Output.
* vsprintf: (libc)Variable Arguments Output.
* vsscanf: (libc)Variable Arguments Input.
* vswprintf: (libc)Variable Arguments Output.
* vswscanf: (libc)Variable Arguments Input.
* vsyslog: (libc)syslog; vsyslog.
* vwarn: (libc)Error Messages.
* vwarnx: (libc)Error Messages.
* vwprintf: (libc)Variable Arguments Output.
* vwscanf: (libc)Variable Arguments Input.
* wait3: (libc)BSD Wait Functions.
* wait4: (libc)Process Completion.
* wait: (libc)Process Completion.
* waitpid: (libc)Process Completion.
* warn: (libc)Error Messages.
* warnx: (libc)Error Messages.
* wcpcpy: (libc)Copying Strings and Arrays.
* wcpncpy: (libc)Truncating Strings.
* wcrtomb: (libc)Converting a Character.
* wcscasecmp: (libc)String/Array Comparison.
* wcscat: (libc)Concatenating Strings.
* wcschr: (libc)Search Functions.
* wcschrnul: (libc)Search Functions.
* wcscmp: (libc)String/Array Comparison.
* wcscoll: (libc)Collation Functions.
* wcscpy: (libc)Copying Strings and Arrays.
* wcscspn: (libc)Search Functions.
* wcsdup: (libc)Copying Strings and Arrays.
* wcsftime: (libc)Formatting Calendar Time.
* wcslen: (libc)String Length.
* wcsncasecmp: (libc)String/Array Comparison.
* wcsncat: (libc)Truncating Strings.
* wcsncmp: (libc)String/Array Comparison.
* wcsncpy: (libc)Truncating Strings.
* wcsnlen: (libc)String Length.
* wcsnrtombs: (libc)Converting Strings.
* wcspbrk: (libc)Search Functions.
* wcsrchr: (libc)Search Functions.
* wcsrtombs: (libc)Converting Strings.
* wcsspn: (libc)Search Functions.
* wcsstr: (libc)Search Functions.
* wcstod: (libc)Parsing of Floats.
* wcstof: (libc)Parsing of Floats.
* wcstofN: (libc)Parsing of Floats.
* wcstofNx: (libc)Parsing of Floats.
* wcstoimax: (libc)Parsing of Integers.
* wcstok: (libc)Finding Tokens in a String.
* wcstol: (libc)Parsing of Integers.
* wcstold: (libc)Parsing of Floats.
* wcstoll: (libc)Parsing of Integers.
* wcstombs: (libc)Non-reentrant String Conversion.
* wcstoq: (libc)Parsing of Integers.
* wcstoul: (libc)Parsing of Integers.
* wcstoull: (libc)Parsing of Integers.
* wcstoumax: (libc)Parsing of Integers.
* wcstouq: (libc)Parsing of Integers.
* wcswcs: (libc)Search Functions.
* wcsxfrm: (libc)Collation Functions.
* wctob: (libc)Converting a Character.
* wctomb: (libc)Non-reentrant Character Conversion.
* wctrans: (libc)Wide Character Case Conversion.
* wctype: (libc)Classification of Wide Characters.
* wmemchr: (libc)Search Functions.
* wmemcmp: (libc)String/Array Comparison.
* wmemcpy: (libc)Copying Strings and Arrays.
* wmemmove: (libc)Copying Strings and Arrays.
* wmempcpy: (libc)Copying Strings and Arrays.
* wmemset: (libc)Copying Strings and Arrays.
* wordexp: (libc)Calling Wordexp.
* wordfree: (libc)Calling Wordexp.
* wprintf: (libc)Formatted Output Functions.
* write: (libc)I/O Primitives.
* writev: (libc)Scatter-Gather.
* wscanf: (libc)Formatted Input Functions.
* y0: (libc)Special Functions.
* y0f: (libc)Special Functions.
* y0fN: (libc)Special Functions.
* y0fNx: (libc)Special Functions.
* y0l: (libc)Special Functions.
* y1: (libc)Special Functions.
* y1f: (libc)Special Functions.
* y1fN: (libc)Special Functions.
* y1fNx: (libc)Special Functions.
* y1l: (libc)Special Functions.
* yn: (libc)Special Functions.
* ynf: (libc)Special Functions.
* ynfN: (libc)Special Functions.
* ynfNx: (libc)Special Functions.
* ynl: (libc)Special Functions.
END-INFO-DIR-ENTRY
 
 
File: libc.info,  Node: Type Index,  Next: Function Index,  Prev: Concept Index,  Up: Top
 
Type Index
**********
 
[index]
* Menu:
 
* __ftw64_func_t:                        Working with Directory Trees.
                                                              (line  61)
* __ftw_func_t:                          Working with Directory Trees.
                                                              (line  21)
* __nftw64_func_t:                       Working with Directory Trees.
                                                              (line  96)
* __nftw_func_t:                         Working with Directory Trees.
                                                              (line  70)
* blkcnt64_t:                            Attribute Meanings.  (line 232)
* blkcnt_t:                              Attribute Meanings.  (line 224)
* cc_t:                                  Mode Data Types.     (line  48)
* clockid_t:                             Getting the Time.    (line  41)
* clock_t:                               Time Types.          (line   9)
* cnd_t:                                 ISO C Condition Variables.
                                                              (line  14)
* comparison_fn_t:                       Comparison Functions.
                                                              (line  31)
* cookie_close_function_t:               Hook Functions.      (line  62)
* cookie_io_functions_t:                 Streams and Cookies. (line  26)
* cookie_read_function_t:                Hook Functions.      (line  48)
* cookie_seek_function_t:                Hook Functions.      (line  58)
* cookie_write_function_t:               Hook Functions.      (line  54)
* cpu_set_t:                             CPU Affinity.        (line  43)
* dev_t:                                 Attribute Meanings.  (line 214)
* DIR:                                   Opening a Directory. (line   9)
* div_t:                                 Integer Division.    (line  19)
* enum mcheck_status:                    Heap Consistency Checking.
                                                              (line  66)
* fd_set:                                Waiting for I/O.     (line  34)
* FILE:                                  Streams.             (line  16)
* fpos64_t:                              Portable Positioning.
                                                              (line  67)
* fpos_t:                                Portable Positioning.
                                                              (line  52)
* gid_t:                                 Reading Persona.     (line  16)
* glibc.cpu:                             Hardware Capability Tunables.
                                                              (line   6)
* glibc.cpu.cached_memopt:               Hardware Capability Tunables.
                                                              (line  29)
* glibc.cpu.hwcaps:                      Hardware Capability Tunables.
                                                              (line  21)
* glibc.cpu.hwcap_mask:                  Hardware Capability Tunables.
                                                              (line  11)
* glibc.cpu.name:                        Hardware Capability Tunables.
                                                              (line  38)
* glibc.cpu.x86_data_cache_size:         Hardware Capability Tunables.
                                                              (line  46)
* glibc.cpu.x86_ibt:                     Hardware Capability Tunables.
                                                              (line  81)
* glibc.cpu.x86_non_temporal_threshold:  Hardware Capability Tunables.
                                                              (line  57)
* glibc.cpu.x86_rep_movsb_threshold:     Hardware Capability Tunables.
                                                              (line  67)
* glibc.cpu.x86_rep_stosb_threshold:     Hardware Capability Tunables.
                                                              (line  74)
* glibc.cpu.x86_shared_cache_size:       Hardware Capability Tunables.
                                                              (line  52)
* glibc.cpu.x86_shstk:                   Hardware Capability Tunables.
                                                              (line  93)
* glibc.elision:                         Elision Tunables.    (line   6)
* glibc.elision.enable:                  Elision Tunables.    (line  13)
* glibc.elision.skip_lock_after_retries: Elision Tunables.    (line  37)
* glibc.elision.skip_lock_busy:          Elision Tunables.    (line  21)
* glibc.elision.skip_lock_internal_abort: Elision Tunables.   (line  29)
* glibc.elision.skip_trylock_internal_abort: Elision Tunables.
                                                              (line  57)
* glibc.elision.tries:                   Elision Tunables.    (line  48)
* glibc.malloc:                          Memory Allocation Tunables.
                                                              (line   6)
* glibc.malloc.arena_max:                Memory Allocation Tunables.
                                                              (line 105)
* glibc.malloc.arena_test:               Memory Allocation Tunables.
                                                              (line  93)
* glibc.malloc.check:                    Memory Allocation Tunables.
                                                              (line  10)
* glibc.malloc.mmap_max:                 Memory Allocation Tunables.
                                                              (line  84)
* glibc.malloc.mmap_threshold:           Memory Allocation Tunables.
                                                              (line  56)
* glibc.malloc.mxfast:                   Memory Allocation Tunables.
                                                              (line 148)
* glibc.malloc.perturb:                  Memory Allocation Tunables.
                                                              (line  42)
* glibc.malloc.tcache_count:             Memory Allocation Tunables.
                                                              (line 123)
* glibc.malloc.tcache_max:               Memory Allocation Tunables.
                                                              (line 118)
* glibc.malloc.tcache_unsorted_limit:    Memory Allocation Tunables.
                                                              (line 134)
* glibc.malloc.top_pad:                  Memory Allocation Tunables.
                                                              (line  30)
* glibc.malloc.trim_threshold:           Memory Allocation Tunables.
                                                              (line  71)
* glibc.mem:                             Memory Related Tunables.
                                                              (line   6)
* glibc.mem.tagging:                     Memory Related Tunables.
                                                              (line  10)
* glibc.pthread:                         POSIX Thread Tunables.
                                                              (line   6)
* glibc.pthread.mutex_spin_count:        POSIX Thread Tunables.
                                                              (line  12)
* glibc.rtld:                            Dynamic Linking Tunables.
                                                              (line   6)
* glibc.rtld.nns:                        Dynamic Linking Tunables.
                                                              (line  10)
* glibc.rtld.optional_static_tls:        Dynamic Linking Tunables.
                                                              (line  24)
* glob64_t:                              Calling Glob.        (line 156)
* glob_t:                                Calling Glob.        (line  11)
* iconv_t:                               Generic Conversion Interface.
                                                              (line  15)
* imaxdiv_t:                             Integer Division.    (line  98)
* ino64_t:                               Attribute Meanings.  (line 205)
* ino_t:                                 Attribute Meanings.  (line 195)
* jmp_buf:                               Non-Local Details.   (line  10)
* ldiv_t:                                Integer Division.    (line  49)
* lldiv_t:                               Integer Division.    (line  72)
* longjmp:                               Non-local Goto Probes.
                                                              (line  16)
* longjmp_target:                        Non-local Goto Probes.
                                                              (line  29)
* mbstate_t:                             Keeping the state.   (line  14)
* memory_arena_new:                      Memory Allocation Probes.
                                                              (line  75)
* memory_arena_retry:                    Memory Allocation Probes.
                                                              (line  63)
* memory_arena_reuse:                    Memory Allocation Probes.
                                                              (line  83)
* memory_arena_reuse_free_list:          Memory Allocation Probes.
                                                              (line 112)
* memory_arena_reuse_wait:               Memory Allocation Probes.
                                                              (line  97)
* memory_calloc_retry:                   Memory Allocation Probes.
                                                              (line  46)
* memory_heap_free:                      Memory Allocation Probes.
                                                              (line  28)
* memory_heap_less:                      Memory Allocation Probes.
                                                              (line  38)
* memory_heap_more:                      Memory Allocation Probes.
                                                              (line  33)
* memory_heap_new:                       Memory Allocation Probes.
                                                              (line  22)
* memory_malloc_retry:                   Memory Allocation Probes.
                                                              (line  43)
* memory_mallopt:                        Memory Allocation Probes.
                                                              (line 118)
* memory_mallopt_arena_max:              Memory Allocation Probes.
                                                              (line 174)
* memory_mallopt_arena_test:             Memory Allocation Probes.
                                                              (line 167)
* memory_mallopt_free_dyn_thresholds:    Memory Allocation Probes.
                                                              (line 181)
* memory_mallopt_mmap_max:               Memory Allocation Probes.
                                                              (line 154)
* memory_mallopt_mmap_threshold:         Memory Allocation Probes.
                                                              (line 145)
* memory_mallopt_mxfast:                 Memory Allocation Probes.
                                                              (line 124)
* memory_mallopt_perturb:                Memory Allocation Probes.
                                                              (line 161)
* memory_mallopt_top_pad:                Memory Allocation Probes.
                                                              (line 138)
* memory_mallopt_trim_threshold:         Memory Allocation Probes.
                                                              (line 130)
* memory_memalign_retry:                 Memory Allocation Probes.
                                                              (line  45)
* memory_realloc_retry:                  Memory Allocation Probes.
                                                              (line  44)
* memory_sbrk_less:                      Memory Allocation Probes.
                                                              (line  15)
* memory_sbrk_more:                      Memory Allocation Probes.
                                                              (line   9)
* memory_tcache_double_free:             Memory Allocation Probes.
                                                              (line 202)
* memory_tunable_tcache_count:           Memory Allocation Probes.
                                                              (line 191)
* memory_tunable_tcache_max_bytes:       Memory Allocation Probes.
                                                              (line 186)
* memory_tunable_tcache_unsorted_limit:  Memory Allocation Probes.
                                                              (line 196)
* mode_t:                                Attribute Meanings.  (line 189)
* mtx_t:                                 ISO C Mutexes.       (line  13)
* nlink_t:                               Attribute Meanings.  (line 220)
* off64_t:                               File Position Primitive.
                                                              (line 162)
* off_t:                                 File Position Primitive.
                                                              (line 154)
* once_flag:                             Call Once.           (line  10)
* pid_t:                                 Process Identification.
                                                              (line  37)
* printf_arginfo_function:               Defining the Output Handler.
                                                              (line  54)
* printf_function:                       Defining the Output Handler.
                                                              (line  34)
* ptrdiff_t:                             Important Data Types.
                                                              (line  13)
* regex_t:                               POSIX Regexp Compilation.
                                                              (line  15)
* regmatch_t:                            Regexp Subexpressions.
                                                              (line  14)
* regoff_t:                              Regexp Subexpressions.
                                                              (line  26)
* setjmp:                                Non-local Goto Probes.
                                                              (line   9)
* sighandler_t:                          Basic Signal Handling.
                                                              (line  10)
* sigjmp_buf:                            Non-Local Exits and Signals.
                                                              (line  20)
* sigset_t:                              Signal Sets.         (line  13)
* sig_atomic_t:                          Atomic Types.        (line  15)
* size_t:                                Important Data Types.
                                                              (line  23)
* slowatan:                              Mathematical Function Probes.
                                                              (line  36)
* slowatan2:                             Mathematical Function Probes.
                                                              (line  19)
* slowatan2_inexact:                     Mathematical Function Probes.
                                                              (line  27)
* slowatan_inexact:                      Mathematical Function Probes.
                                                              (line  43)
* slowcos:                               Mathematical Function Probes.
                                                              (line  63)
* slowcos_dx:                            Mathematical Function Probes.
                                                              (line  75)
* slowsin:                               Mathematical Function Probes.
                                                              (line  57)
* slowsin_dx:                            Mathematical Function Probes.
                                                              (line  69)
* slowtan:                               Mathematical Function Probes.
                                                              (line  51)
* speed_t:                               Line Speed.          (line  76)
* ssize_t:                               I/O Primitives.      (line  10)
* stack_t:                               Signal Stack.        (line  26)
* struct aiocb:                          Asynchronous I/O.    (line  27)
* struct aiocb64:                        Asynchronous I/O.    (line 110)
* struct aioinit:                        Configuration of AIO.
                                                              (line  17)
* struct argp:                           Argp Parsers.        (line   9)
* struct argp_child:                     Argp Children.       (line  17)
* struct argp_option:                    Argp Option Vectors. (line  13)
* struct argp_state:                     Argp Parsing State.  (line  10)
* struct crypt_data:                     Passphrase Storage.  (line 123)
* struct dirent:                         Directory Entries.   (line  10)
* struct ENTRY:                          Hash Search Function.
                                                              (line  69)
* struct exit_status:                    Manipulating the Database.
                                                              (line   9)
* struct flock:                          File Locks.          (line  41)
* struct fstab:                          fstab.               (line   9)
* struct FTW:                            Working with Directory Trees.
                                                              (line 105)
* struct group:                          Group Data Structure.
                                                              (line   9)
* struct hostent:                        Host Names.          (line  20)
* struct if_nameindex:                   Interface Naming.    (line  45)
* struct in6_addr:                       Host Address Data Type.
                                                              (line  56)
* struct in_addr:                        Host Address Data Type.
                                                              (line  25)
* struct iovec:                          Scatter-Gather.      (line  20)
* struct itimerval:                      Setting an Alarm.    (line  53)
* struct lconv:                          The Lame Way to Locale Data.
                                                              (line  29)
* struct linger:                         Socket-Level Options.
                                                              (line  55)
* struct mallinfo2:                      Statistics of Malloc.
                                                              (line  11)
* struct mntent:                         mtab.                (line   8)
* struct netent:                         Networks Database.   (line  13)
* struct ntptimeval:                     Setting and Adjusting the Time.
                                                              (line  78)
* struct ntptimeval <1>:                 Setting and Adjusting the Time.
                                                              (line  78)
* struct obstack:                        Creating Obstacks.   (line   9)
* struct option:                         Getopt Long Options. (line  12)
* struct passwd:                         User Data Structure. (line   9)
* struct printf_info:                    Conversion Specifier Options.
                                                              (line  15)
* struct protoent:                       Protocols Database.  (line  29)
* struct random_data:                    BSD Random.          (line  83)
* struct rlimit:                         Limits on Resources. (line  94)
* struct rlimit64:                       Limits on Resources. (line 111)
* struct rusage:                         Resource Usage.      (line  39)
* struct sched_param:                    Basic Scheduling Functions.
                                                              (line  36)
* struct servent:                        Services Database.   (line  11)
* struct sgttyb:                         BSD Terminal Modes.  (line  15)
* struct sigaction:                      Advanced Signal Handling.
                                                              (line  14)
* struct sigstack:                       Signal Stack.        (line 101)
* struct sockaddr:                       Address Formats.     (line  22)
* struct sockaddr_in:                    Internet Address Formats.
                                                              (line  15)
* struct sockaddr_in6:                   Internet Address Formats.
                                                              (line  39)
* struct sockaddr_un:                    Local Namespace Details.
                                                              (line  27)
* struct stat:                           Attribute Meanings.  (line  14)
* struct stat64:                         Attribute Meanings.  (line 107)
* struct termios:                        Mode Data Types.     (line  10)
* struct timespec:                       Time Types.          (line  38)
* struct timeval:                        Time Types.          (line  59)
* struct timex:                          Setting and Adjusting the Time.
                                                              (line 116)
* struct timex <1>:                      Setting and Adjusting the Time.
                                                              (line 116)
* struct tm:                             Time Types.          (line  82)
* struct tm <1>:                         Broken-down Time.    (line  19)
* struct tms:                            Processor Time.      (line  12)
* struct utimbuf:                        File Times.          (line  38)
* struct utmp:                           Manipulating the Database.
                                                              (line  21)
* struct utmpx:                          XPG Functions.       (line   9)
* struct utsname:                        Platform Type.       (line  15)
* struct __gconv_step:                   glibc iconv Implementation.
                                                              (line 207)
* struct __gconv_step_data:              glibc iconv Implementation.
                                                              (line 276)
* tcflag_t:                              Mode Data Types.     (line  43)
* thrd_start_t:                          ISO C Thread Management.
                                                              (line  16)
* thrd_t:                                ISO C Thread Management.
                                                              (line  12)
* time_t:                                Time Types.          (line  17)
* tss_dtor_t:                            ISO C Thread-local Storage.
                                                              (line  20)
* tss_t:                                 ISO C Thread-local Storage.
                                                              (line  14)
* ucontext_t:                            System V contexts.   (line  24)
* uid_t:                                 Reading Persona.     (line  11)
* va_list:                               Argument Macros.     (line   9)
* VISIT:                                 Tree Search Function.
                                                              (line 116)
* wchar_t:                               Extended Char Intro. (line  69)
* wctrans_t:                             Wide Character Case Conversion.
                                                              (line  11)
* wctype_t:                              Classification of Wide Characters.
                                                              (line  30)
* wint_t:                                Extended Char Intro. (line  94)
* wordexp_t:                             Calling Wordexp.     (line  14)
 
 
File: libc.info,  Node: Function Index,  Next: Variable Index,  Prev: Type Index,  Up: Top
 
Function and Macro Index
************************
 
[index]
* Menu:
 
* *pthread_getspecific:                  Thread-specific Data.
                                                              (line  34)
* *sbrk:                                 Resizing the Data Segment.
                                                              (line  46)
* *sem_open:                             Semaphores.          (line  43)
* _exit:                                 Termination Internals.
                                                              (line   9)
* _Exit:                                 Termination Internals.
                                                              (line  18)
* _flushlbf:                             Flushing Buffers.    (line  54)
* _tolower:                              Case Conversion.     (line  50)
* _toupper:                              Case Conversion.     (line  58)
* __fbufsize:                            Controlling Buffering.
                                                              (line 139)
* __flbf:                                Controlling Buffering.
                                                              (line 125)
* __fpending:                            Controlling Buffering.
                                                              (line 150)
* __fpurge:                              Flushing Buffers.    (line  76)
* __freadable:                           Opening Streams.     (line 219)
* __freading:                            Opening Streams.     (line 244)
* __fsetlocking:                         Streams and Threads. (line 172)
* __fwritable:                           Opening Streams.     (line 230)
* __fwriting:                            Opening Streams.     (line 258)
* __ppc_get_timebase:                    PowerPC.             (line   9)
* __ppc_get_timebase_freq:               PowerPC.             (line  25)
* __ppc_mdoio:                           PowerPC.             (line  51)
* __ppc_mdoom:                           PowerPC.             (line  60)
* __ppc_set_ppr_low:                     PowerPC.             (line  85)
* __ppc_set_ppr_med:                     PowerPC.             (line  69)
* __ppc_set_ppr_med_high:                PowerPC.             (line 107)
* __ppc_set_ppr_med_low:                 PowerPC.             (line  91)
* __ppc_set_ppr_very_low:                PowerPC.             (line 101)
* __ppc_yield:                           PowerPC.             (line  43)
* __riscv_flush_icache:                  RISC-V.              (line   9)
* __va_copy:                             Argument Macros.     (line  57)
* __x86_get_cpuid_feature_leaf:          X86.                 (line   9)
* a64l:                                  Encode Binary Data.  (line  84)
* abort:                                 Aborting a Program.  (line   9)
* abs:                                   Absolute Value.      (line  16)
* accept:                                Accepting Connections.
                                                              (line  25)
* access:                                Testing File Access. (line  41)
* acos:                                  Inverse Trig Functions.
                                                              (line  27)
* acosf:                                 Inverse Trig Functions.
                                                              (line  28)
* acosfN:                                Inverse Trig Functions.
                                                              (line  30)
* acosfNx:                               Inverse Trig Functions.
                                                              (line  31)
* acosh:                                 Hyperbolic Functions.
                                                              (line 105)
* acoshf:                                Hyperbolic Functions.
                                                              (line 106)
* acoshfN:                               Hyperbolic Functions.
                                                              (line 108)
* acoshfNx:                              Hyperbolic Functions.
                                                              (line 109)
* acoshl:                                Hyperbolic Functions.
                                                              (line 107)
* acosl:                                 Inverse Trig Functions.
                                                              (line  29)
* addmntent:                             mtab.                (line 181)
* addseverity:                           Adding Severity Classes.
                                                              (line  12)
* adjtime:                               Setting and Adjusting the Time.
                                                              (line 251)
* adjtimex:                              Setting and Adjusting the Time.
                                                              (line 306)
* aio_cancel:                            Cancel AIO Operations.
                                                              (line  18)
* aio_cancel64:                          Cancel AIO Operations.
                                                              (line  65)
* aio_error:                             Status of AIO Operations.
                                                              (line  14)
* aio_error64:                           Status of AIO Operations.
                                                              (line  36)
* aio_fsync:                             Synchronizing AIO Operations.
                                                              (line  17)
* aio_fsync64:                           Synchronizing AIO Operations.
                                                              (line  64)
* aio_init:                              Configuration of AIO.
                                                              (line  41)
* aio_read:                              Asynchronous Reads/Writes.
                                                              (line   6)
* aio_read64:                            Asynchronous Reads/Writes.
                                                              (line  69)
* aio_return:                            Status of AIO Operations.
                                                              (line  50)
* aio_return64:                          Status of AIO Operations.
                                                              (line  74)
* aio_suspend:                           Synchronizing AIO Operations.
                                                              (line  91)
* aio_suspend64:                         Synchronizing AIO Operations.
                                                              (line 129)
* aio_write:                             Asynchronous Reads/Writes.
                                                              (line  91)
* aio_write64:                           Asynchronous Reads/Writes.
                                                              (line 155)
* alarm:                                 Setting an Alarm.    (line 113)
* aligned_alloc:                         Aligned Memory Blocks.
                                                              (line  12)
* alloca:                                Variable Size Automatic.
                                                              (line  18)
* alphasort:                             Scanning Directory Content.
                                                              (line  43)
* alphasort64:                           Scanning Directory Content.
                                                              (line  95)
* argp_error:                            Argp Helper Functions.
                                                              (line  21)
* argp_failure:                          Argp Helper Functions.
                                                              (line  33)
* argp_help:                             Argp Help.           (line  14)
* argp_parse:                            Argp.                (line  34)
* argp_state_help:                       Argp Helper Functions.
                                                              (line  51)
* argp_usage:                            Argp Helper Functions.
                                                              (line  11)
* argz_add:                              Argz Functions.      (line  82)
* argz_add_sep:                          Argz Functions.      (line  91)
* argz_append:                           Argz Functions.      (line 103)
* argz_count:                            Argz Functions.      (line  46)
* argz_create:                           Argz Functions.      (line  25)
* argz_create_sep:                       Argz Functions.      (line  36)
* argz_delete:                           Argz Functions.      (line 113)
* argz_extract:                          Argz Functions.      (line  54)
* argz_insert:                           Argz Functions.      (line 126)
* argz_next:                             Argz Functions.      (line 140)
* argz_replace:                          Argz Functions.      (line 172)
* argz_stringify:                        Argz Functions.      (line  72)
* asctime:                               Formatting Calendar Time.
                                                              (line   9)
* asctime_r:                             Formatting Calendar Time.
                                                              (line  30)
* asin:                                  Inverse Trig Functions.
                                                              (line   9)
* asinf:                                 Inverse Trig Functions.
                                                              (line  10)
* asinfN:                                Inverse Trig Functions.
                                                              (line  12)
* asinfNx:                               Inverse Trig Functions.
                                                              (line  13)
* asinh:                                 Hyperbolic Functions.
                                                              (line  93)
* asinhf:                                Hyperbolic Functions.
                                                              (line  94)
* asinhfN:                               Hyperbolic Functions.
                                                              (line  96)
* asinhfNx:                              Hyperbolic Functions.
                                                              (line  97)
* asinhl:                                Hyperbolic Functions.
                                                              (line  95)
* asinl:                                 Inverse Trig Functions.
                                                              (line  11)
* asprintf:                              Dynamic Output.      (line   9)
* assert:                                Consistency Checking.
                                                              (line  26)
* assert_perror:                         Consistency Checking.
                                                              (line  62)
* atan:                                  Inverse Trig Functions.
                                                              (line  45)
* atan2:                                 Inverse Trig Functions.
                                                              (line  60)
* atan2f:                                Inverse Trig Functions.
                                                              (line  61)
* atan2fN:                               Inverse Trig Functions.
                                                              (line  63)
* atan2fNx:                              Inverse Trig Functions.
                                                              (line  64)
* atan2l:                                Inverse Trig Functions.
                                                              (line  62)
* atanf:                                 Inverse Trig Functions.
                                                              (line  46)
* atanfN:                                Inverse Trig Functions.
                                                              (line  48)
* atanfNx:                               Inverse Trig Functions.
                                                              (line  49)
* atanh:                                 Hyperbolic Functions.
                                                              (line 118)
* atanhf:                                Hyperbolic Functions.
                                                              (line 119)
* atanhfN:                               Hyperbolic Functions.
                                                              (line 121)
* atanhfNx:                              Hyperbolic Functions.
                                                              (line 122)
* atanhl:                                Hyperbolic Functions.
                                                              (line 120)
* atanl:                                 Inverse Trig Functions.
                                                              (line  47)
* atexit:                                Cleanups on Exit.    (line  14)
* atof:                                  Parsing of Floats.   (line 137)
* atoi:                                  Parsing of Integers. (line 265)
* atol:                                  Parsing of Integers. (line 255)
* atoll:                                 Parsing of Integers. (line 273)
* backtrace:                             Backtraces.          (line  15)
* backtrace_symbols:                     Backtraces.          (line  36)
* backtrace_symbols_fd:                  Backtraces.          (line  69)
* basename:                              Finding Tokens in a String.
                                                              (line 207)
* basename <1>:                          Finding Tokens in a String.
                                                              (line 240)
* bcmp:                                  String/Array Comparison.
                                                              (line 292)
* bcopy:                                 Copying Strings and Arrays.
                                                              (line 344)
* bind:                                  Setting Address.     (line  10)
* bindtextdomain:                        Locating gettext catalog.
                                                              (line 101)
* bind_textdomain_codeset:               Charset conversion in gettext.
                                                              (line  26)
* brk:                                   Resizing the Data Segment.
                                                              (line  14)
* bsearch:                               Array Search Function.
                                                              (line  55)
* btowc:                                 Converting a Character.
                                                              (line  15)
* bzero:                                 Copying Strings and Arrays.
                                                              (line 354)
* cabs:                                  Absolute Value.      (line  46)
* cabsf:                                 Absolute Value.      (line  47)
* cabsfN:                                Absolute Value.      (line  49)
* cabsfNx:                               Absolute Value.      (line  50)
* cabsl:                                 Absolute Value.      (line  48)
* cacos:                                 Inverse Trig Functions.
                                                              (line  99)
* cacosf:                                Inverse Trig Functions.
                                                              (line 100)
* cacosfN:                               Inverse Trig Functions.
                                                              (line 102)
* cacosfNx:                              Inverse Trig Functions.
                                                              (line 103)
* cacosh:                                Hyperbolic Functions.
                                                              (line 144)
* cacoshf:                               Hyperbolic Functions.
                                                              (line 145)
* cacoshfN:                              Hyperbolic Functions.
                                                              (line 147)
* cacoshfNx:                             Hyperbolic Functions.
                                                              (line 148)
* cacoshl:                               Hyperbolic Functions.
                                                              (line 146)
* cacosl:                                Inverse Trig Functions.
                                                              (line 101)
* calloc:                                Allocating Cleared Space.
                                                              (line   9)
* call_once:                             Call Once.           (line  19)
* canonicalize:                          FP Bit Twiddling.    (line 130)
* canonicalizef:                         FP Bit Twiddling.    (line 131)
* canonicalizefN:                        FP Bit Twiddling.    (line 133)
* canonicalizefNx:                       FP Bit Twiddling.    (line 134)
* canonicalizel:                         FP Bit Twiddling.    (line 132)
* canonicalize_file_name:                Symbolic Links.      (line 128)
* carg:                                  Operations on Complex.
                                                              (line  46)
* cargf:                                 Operations on Complex.
                                                              (line  47)
* cargfN:                                Operations on Complex.
                                                              (line  49)
* cargfNx:                               Operations on Complex.
                                                              (line  50)
* cargl:                                 Operations on Complex.
                                                              (line  48)
* casin:                                 Inverse Trig Functions.
                                                              (line  84)
* casinf:                                Inverse Trig Functions.
                                                              (line  85)
* casinfN:                               Inverse Trig Functions.
                                                              (line  87)
* casinfNx:                              Inverse Trig Functions.
                                                              (line  88)
* casinh:                                Hyperbolic Functions.
                                                              (line 132)
* casinhf:                               Hyperbolic Functions.
                                                              (line 133)
* casinhfN:                              Hyperbolic Functions.
                                                              (line 135)
* casinhfNx:                             Hyperbolic Functions.
                                                              (line 136)
* casinhl:                               Hyperbolic Functions.
                                                              (line 134)
* casinl:                                Inverse Trig Functions.
                                                              (line  86)
* catan:                                 Inverse Trig Functions.
                                                              (line 114)
* catanf:                                Inverse Trig Functions.
                                                              (line 115)
* catanfN:                               Inverse Trig Functions.
                                                              (line 117)
* catanfNx:                              Inverse Trig Functions.
                                                              (line 118)
* catanh:                                Hyperbolic Functions.
                                                              (line 157)
* catanhf:                               Hyperbolic Functions.
                                                              (line 158)
* catanhfN:                              Hyperbolic Functions.
                                                              (line 160)
* catanhfNx:                             Hyperbolic Functions.
                                                              (line 161)
* catanhl:                               Hyperbolic Functions.
                                                              (line 159)
* catanl:                                Inverse Trig Functions.
                                                              (line 116)
* catclose:                              The catgets Functions.
                                                              (line 187)
* catgets:                               The catgets Functions.
                                                              (line 150)
* catopen:                               The catgets Functions.
                                                              (line   6)
* cbrt:                                  Exponents and Logarithms.
                                                              (line 210)
* cbrtf:                                 Exponents and Logarithms.
                                                              (line 211)
* cbrtfN:                                Exponents and Logarithms.
                                                              (line 213)
* cbrtfNx:                               Exponents and Logarithms.
                                                              (line 214)
* cbrtl:                                 Exponents and Logarithms.
                                                              (line 212)
* ccos:                                  Trig Functions.      (line 102)
* ccosf:                                 Trig Functions.      (line 103)
* ccosfN:                                Trig Functions.      (line 105)
* ccosfNx:                               Trig Functions.      (line 106)
* ccosh:                                 Hyperbolic Functions.
                                                              (line  67)
* ccoshf:                                Hyperbolic Functions.
                                                              (line  68)
* ccoshfN:                               Hyperbolic Functions.
                                                              (line  70)
* ccoshfNx:                              Hyperbolic Functions.
                                                              (line  71)
* ccoshl:                                Hyperbolic Functions.
                                                              (line  69)
* ccosl:                                 Trig Functions.      (line 104)
* ceil:                                  Rounding Functions.  (line  42)
* ceilf:                                 Rounding Functions.  (line  43)
* ceilfN:                                Rounding Functions.  (line  45)
* ceilfNx:                               Rounding Functions.  (line  46)
* ceill:                                 Rounding Functions.  (line  44)
* cexp:                                  Exponents and Logarithms.
                                                              (line 267)
* cexpf:                                 Exponents and Logarithms.
                                                              (line 268)
* cexpfN:                                Exponents and Logarithms.
                                                              (line 270)
* cexpfNx:                               Exponents and Logarithms.
                                                              (line 271)
* cexpl:                                 Exponents and Logarithms.
                                                              (line 269)
* cfgetispeed:                           Line Speed.          (line  40)
* cfgetospeed:                           Line Speed.          (line  32)
* cfmakeraw:                             Noncanonical Input.  (line  94)
* cfsetispeed:                           Line Speed.          (line  57)
* cfsetospeed:                           Line Speed.          (line  48)
* cfsetspeed:                            Line Speed.          (line  66)
* chdir:                                 Working Directory.   (line 110)
* chmod:                                 Setting Permissions. (line  25)
* chmod <1>:                             Setting Permissions. (line  74)
* chown:                                 File Owner.          (line  33)
* cimag:                                 Operations on Complex.
                                                              (line  22)
* cimagf:                                Operations on Complex.
                                                              (line  23)
* cimagfN:                               Operations on Complex.
                                                              (line  25)
* cimagfNx:                              Operations on Complex.
                                                              (line  26)
* cimagl:                                Operations on Complex.
                                                              (line  24)
* clearenv:                              Environment Access.  (line 116)
* clearerr:                              Error Recovery.      (line   9)
* clearerr_unlocked:                     Error Recovery.      (line  20)
* clock:                                 CPU Time.            (line  39)
* clock_getres:                          Getting the Time.    (line  91)
* clock_gettime:                         Getting the Time.    (line  74)
* clock_settime:                         Setting and Adjusting the Time.
                                                              (line  15)
* clog:                                  Exponents and Logarithms.
                                                              (line 281)
* clog10:                                Exponents and Logarithms.
                                                              (line 298)
* clog10f:                               Exponents and Logarithms.
                                                              (line 299)
* clog10fN:                              Exponents and Logarithms.
                                                              (line 301)
* clog10fNx:                             Exponents and Logarithms.
                                                              (line 302)
* clog10l:                               Exponents and Logarithms.
                                                              (line 300)
* clogf:                                 Exponents and Logarithms.
                                                              (line 282)
* clogfN:                                Exponents and Logarithms.
                                                              (line 284)
* clogfNx:                               Exponents and Logarithms.
                                                              (line 285)
* clogl:                                 Exponents and Logarithms.
                                                              (line 283)
* close:                                 Opening and Closing Files.
                                                              (line 150)
* closedir:                              Reading/Closing Directory.
                                                              (line 143)
* closelog:                              closelog.            (line   9)
* cnd_broadcast:                         ISO C Condition Variables.
                                                              (line  43)
* cnd_destroy:                           ISO C Condition Variables.
                                                              (line  85)
* cnd_init:                              ISO C Condition Variables.
                                                              (line  21)
* cnd_signal:                            ISO C Condition Variables.
                                                              (line  32)
* cnd_timedwait:                         ISO C Condition Variables.
                                                              (line  66)
* cnd_wait:                              ISO C Condition Variables.
                                                              (line  54)
* confstr:                               String Parameters.   (line   9)
* conj:                                  Operations on Complex.
                                                              (line  33)
* conjf:                                 Operations on Complex.
                                                              (line  34)
* conjfN:                                Operations on Complex.
                                                              (line  36)
* conjfNx:                               Operations on Complex.
                                                              (line  37)
* conjl:                                 Operations on Complex.
                                                              (line  35)
* connect:                               Connecting.          (line  11)
* continue:                              Actions in the NSS configuration.
                                                              (line  50)
* copysign:                              FP Bit Twiddling.    (line  11)
* copysignf:                             FP Bit Twiddling.    (line  12)
* copysignfN:                            FP Bit Twiddling.    (line  14)
* copysignfNx:                           FP Bit Twiddling.    (line  15)
* copysignl:                             FP Bit Twiddling.    (line  13)
* copy_file_range:                       Copying File Data.   (line  14)
* cos:                                   Trig Functions.      (line  30)
* cosf:                                  Trig Functions.      (line  31)
* cosfN:                                 Trig Functions.      (line  33)
* cosfNx:                                Trig Functions.      (line  34)
* cosh:                                  Hyperbolic Functions.
                                                              (line  23)
* coshf:                                 Hyperbolic Functions.
                                                              (line  24)
* coshfN:                                Hyperbolic Functions.
                                                              (line  26)
* coshfNx:                               Hyperbolic Functions.
                                                              (line  27)
* coshl:                                 Hyperbolic Functions.
                                                              (line  25)
* cosl:                                  Trig Functions.      (line  32)
* cpow:                                  Exponents and Logarithms.
                                                              (line 328)
* cpowf:                                 Exponents and Logarithms.
                                                              (line 330)
* cpowfN:                                Exponents and Logarithms.
                                                              (line 334)
* cpowfNx:                               Exponents and Logarithms.
                                                              (line 336)
* cpowl:                                 Exponents and Logarithms.
                                                              (line 332)
* cproj:                                 Operations on Complex.
                                                              (line  63)
* cprojf:                                Operations on Complex.
                                                              (line  64)
* cprojfN:                               Operations on Complex.
                                                              (line  66)
* cprojfNx:                              Operations on Complex.
                                                              (line  67)
* cprojl:                                Operations on Complex.
                                                              (line  65)
* CPU_CLR:                               CPU Affinity.        (line  87)
* CPU_FEATURE_USABLE:                    X86.                 (line  21)
* CPU_ISSET:                             CPU Affinity.        (line  99)
* CPU_SET:                               CPU Affinity.        (line  75)
* CPU_ZERO:                              CPU Affinity.        (line  66)
* creal:                                 Operations on Complex.
                                                              (line  11)
* crealf:                                Operations on Complex.
                                                              (line  12)
* crealfN:                               Operations on Complex.
                                                              (line  14)
* crealfNx:                              Operations on Complex.
                                                              (line  15)
* creall:                                Operations on Complex.
                                                              (line  13)
* creat:                                 Opening and Closing Files.
                                                              (line 111)
* creat64:                               Opening and Closing Files.
                                                              (line 131)
* crypt:                                 Passphrase Storage.  (line  41)
* crypt_r:                               Passphrase Storage.  (line 117)
* csin:                                  Trig Functions.      (line  88)
* csinf:                                 Trig Functions.      (line  89)
* csinfN:                                Trig Functions.      (line  91)
* csinfNx:                               Trig Functions.      (line  92)
* csinh:                                 Hyperbolic Functions.
                                                              (line  54)
* csinhf:                                Hyperbolic Functions.
                                                              (line  55)
* csinhfN:                               Hyperbolic Functions.
                                                              (line  57)
* csinhfNx:                              Hyperbolic Functions.
                                                              (line  58)
* csinhl:                                Hyperbolic Functions.
                                                              (line  56)
* csinl:                                 Trig Functions.      (line  90)
* csqrt:                                 Exponents and Logarithms.
                                                              (line 315)
* csqrtf:                                Exponents and Logarithms.
                                                              (line 316)
* csqrtfN:                               Exponents and Logarithms.
                                                              (line 318)
* csqrtfNx:                              Exponents and Logarithms.
                                                              (line 319)
* csqrtl:                                Exponents and Logarithms.
                                                              (line 317)
* ctan:                                  Trig Functions.      (line 116)
* ctanf:                                 Trig Functions.      (line 117)
* ctanfN:                                Trig Functions.      (line 119)
* ctanfNx:                               Trig Functions.      (line 120)
* ctanh:                                 Hyperbolic Functions.
                                                              (line  80)
* ctanhf:                                Hyperbolic Functions.
                                                              (line  81)
* ctanhfN:                               Hyperbolic Functions.
                                                              (line  83)
* ctanhfNx:                              Hyperbolic Functions.
                                                              (line  84)
* ctanhl:                                Hyperbolic Functions.
                                                              (line  82)
* ctanl:                                 Trig Functions.      (line 118)
* ctermid:                               Identifying the Terminal.
                                                              (line  15)
* ctime:                                 Formatting Calendar Time.
                                                              (line  45)
* ctime_r:                               Formatting Calendar Time.
                                                              (line  60)
* cuserid:                               Who Logged In.       (line  28)
* daddl:                                 Misc FP Arithmetic.  (line 115)
* dcgettext:                             Translation with gettext.
                                                              (line  94)
* dcngettext:                            Advanced gettext functions.
                                                              (line 103)
* ddivl:                                 Misc FP Arithmetic.  (line 160)
* dgettext:                              Translation with gettext.
                                                              (line  78)
* difftime:                              Calculating Elapsed Time.
                                                              (line  10)
* dirfd:                                 Opening a Directory. (line 104)
* dirname:                               Finding Tokens in a String.
                                                              (line 274)
* div:                                   Integer Division.    (line  30)
* dmull:                                 Misc FP Arithmetic.  (line 145)
* dngettext:                             Advanced gettext functions.
                                                              (line  92)
* drand48:                               SVID Random.         (line  33)
* drand48_r:                             SVID Random.         (line 191)
* drem:                                  Remainder Functions. (line  56)
* dremf:                                 Remainder Functions. (line  57)
* dreml:                                 Remainder Functions. (line  58)
* dsubl:                                 Misc FP Arithmetic.  (line 130)
* DTTOIF:                                Directory Entries.   (line  78)
* dup:                                   Duplicating Descriptors.
                                                              (line  23)
* dup2:                                  Duplicating Descriptors.
                                                              (line  32)
* ecvt:                                  System V Number Conversion.
                                                              (line  17)
* ecvt_r:                                System V Number Conversion.
                                                              (line 116)
* endfsent:                              fstab.               (line  95)
* endgrent:                              Scanning All Groups. (line  88)
* endhostent:                            Host Names.          (line 255)
* endmntent:                             mtab.                (line 118)
* endnetent:                             Networks Database.   (line  86)
* endnetgrent:                           Lookup Netgroup.     (line  79)
* endprotoent:                           Protocols Database.  (line  98)
* endpwent:                              Scanning All Users.  (line  87)
* endservent:                            Services Database.   (line  89)
* endutent:                              Manipulating the Database.
                                                              (line 152)
* endutxent:                             XPG Functions.       (line 102)
* envz_add:                              Envz Functions.      (line  50)
* envz_entry:                            Envz Functions.      (line  28)
* envz_get:                              Envz Functions.      (line  39)
* envz_merge:                            Envz Functions.      (line  62)
* envz_remove:                           Envz Functions.      (line  85)
* envz_strip:                            Envz Functions.      (line  77)
* erand48:                               SVID Random.         (line  47)
* erand48_r:                             SVID Random.         (line 210)
* erf:                                   Special Functions.   (line   9)
* erfc:                                  Special Functions.   (line  22)
* erfcf:                                 Special Functions.   (line  23)
* erfcfN:                                Special Functions.   (line  25)
* erfcfNx:                               Special Functions.   (line  26)
* erfcl:                                 Special Functions.   (line  24)
* erff:                                  Special Functions.   (line  10)
* erffN:                                 Special Functions.   (line  12)
* erffNx:                                Special Functions.   (line  13)
* erfl:                                  Special Functions.   (line  11)
* err:                                   Error Messages.      (line 359)
* error:                                 Error Messages.      (line 185)
* error_at_line:                         Error Messages.      (line 222)
* errx:                                  Error Messages.      (line 378)
* execl:                                 Executing a File.    (line  37)
* execle:                                Executing a File.    (line  72)
* execlp:                                Executing a File.    (line  98)
* execv:                                 Executing a File.    (line  17)
* execve:                                Executing a File.    (line  46)
* execvp:                                Executing a File.    (line  84)
* exit:                                  Normal Termination.  (line  10)
* exp:                                   Exponents and Logarithms.
                                                              (line   6)
* exp10:                                 Exponents and Logarithms.
                                                              (line  33)
* exp10f:                                Exponents and Logarithms.
                                                              (line  34)
* exp10fN:                               Exponents and Logarithms.
                                                              (line  36)
* exp10fNx:                              Exponents and Logarithms.
                                                              (line  37)
* exp10l:                                Exponents and Logarithms.
                                                              (line  35)
* exp2:                                  Exponents and Logarithms.
                                                              (line  21)
* exp2f:                                 Exponents and Logarithms.
                                                              (line  22)
* exp2fN:                                Exponents and Logarithms.
                                                              (line  24)
* exp2fNx:                               Exponents and Logarithms.
                                                              (line  25)
* exp2l:                                 Exponents and Logarithms.
                                                              (line  23)
* expf:                                  Exponents and Logarithms.
                                                              (line   7)
* expfN:                                 Exponents and Logarithms.
                                                              (line   9)
* expfNx:                                Exponents and Logarithms.
                                                              (line  10)
* expl:                                  Exponents and Logarithms.
                                                              (line   8)
* explicit_bzero:                        Erasing Sensitive Data.
                                                              (line  66)
* expm1:                                 Exponents and Logarithms.
                                                              (line 238)
* expm1f:                                Exponents and Logarithms.
                                                              (line 239)
* expm1fN:                               Exponents and Logarithms.
                                                              (line 241)
* expm1fNx:                              Exponents and Logarithms.
                                                              (line 242)
* expm1l:                                Exponents and Logarithms.
                                                              (line 240)
* fabs:                                  Absolute Value.      (line  34)
* fabsf:                                 Absolute Value.      (line  35)
* fabsfN:                                Absolute Value.      (line  37)
* fabsfNx:                               Absolute Value.      (line  38)
* fabsl:                                 Absolute Value.      (line  36)
* fadd:                                  Misc FP Arithmetic.  (line 113)
* faddl:                                 Misc FP Arithmetic.  (line 114)
* fchdir:                                Working Directory.   (line 124)
* fchmod:                                Setting Permissions. (line 114)
* fchown:                                File Owner.          (line  68)
* fclose:                                Closing Streams.     (line  10)
* fcloseall:                             Closing Streams.     (line  33)
* fcntl:                                 Control Operations.  (line  17)
* fcvt:                                  System V Number Conversion.
                                                              (line  43)
* fcvt_r:                                System V Number Conversion.
                                                              (line 129)
* fdatasync:                             Synchronizing I/O.   (line  67)
* fdim:                                  Misc FP Arithmetic.  (line  70)
* fdimf:                                 Misc FP Arithmetic.  (line  71)
* fdimfN:                                Misc FP Arithmetic.  (line  73)
* fdimfNx:                               Misc FP Arithmetic.  (line  74)
* fdiml:                                 Misc FP Arithmetic.  (line  72)
* fdiv:                                  Misc FP Arithmetic.  (line 158)
* fdivl:                                 Misc FP Arithmetic.  (line 159)
* fdopen:                                Descriptors and Streams.
                                                              (line  11)
* fdopendir:                             Opening a Directory. (line  61)
* FD_CLR:                                Waiting for I/O.     (line  68)
* FD_ISSET:                              Waiting for I/O.     (line  78)
* FD_SET:                                Waiting for I/O.     (line  58)
* FD_ZERO:                               Waiting for I/O.     (line  50)
* feclearexcept:                         Status bit operations.
                                                              (line  39)
* fedisableexcept:                       Control Functions.   (line 143)
* feenableexcept:                        Control Functions.   (line 130)
* fegetenv:                              Control Functions.   (line  29)
* fegetexcept:                           Control Functions.   (line 157)
* fegetexceptflag:                       Status bit operations.
                                                              (line 112)
* fegetmode:                             Control Functions.   (line 104)
* fegetround:                            Rounding.            (line  73)
* feholdexcept:                          Control Functions.   (line  40)
* feof:                                  EOF and Errors.      (line  33)
* feof_unlocked:                         EOF and Errors.      (line  43)
* feraiseexcept:                         Status bit operations.
                                                              (line  50)
* ferror:                                EOF and Errors.      (line  55)
* ferror_unlocked:                       EOF and Errors.      (line  66)
* fesetenv:                              Control Functions.   (line  71)
* fesetexcept:                           Status bit operations.
                                                              (line  65)
* fesetexceptflag:                       Status bit operations.
                                                              (line 124)
* fesetmode:                             Control Functions.   (line 115)
* fesetround:                            Rounding.            (line  83)
* fetestexcept:                          Status bit operations.
                                                              (line  77)
* fetestexceptflag:                      Status bit operations.
                                                              (line 139)
* feupdateenv:                           Control Functions.   (line  81)
* fexecve:                               Executing a File.    (line  57)
* fflush:                                Flushing Buffers.    (line  25)
* fflush_unlocked:                       Flushing Buffers.    (line  37)
* fgetc:                                 Character Input.     (line  22)
* fgetc_unlocked:                        Character Input.     (line  41)
* fgetgrent:                             Scanning All Groups. (line  13)
* fgetgrent_r:                           Scanning All Groups. (line  27)
* fgetpos:                               Portable Positioning.
                                                              (line  78)
* fgetpos64:                             Portable Positioning.
                                                              (line  93)
* fgetpwent:                             Scanning All Users.  (line  13)
* fgetpwent_r:                           Scanning All Users.  (line  26)
* fgets:                                 Line Input.          (line  82)
* fgets_unlocked:                        Line Input.          (line 131)
* fgetwc:                                Character Input.     (line  32)
* fgetwc_unlocked:                       Character Input.     (line  49)
* fgetws:                                Line Input.          (line 106)
* fgetws_unlocked:                       Line Input.          (line 141)
* fileno:                                Descriptors and Streams.
                                                              (line  40)
* fileno_unlocked:                       Descriptors and Streams.
                                                              (line  50)
* finite:                                Floating Point Classes.
                                                              (line 156)
* finitef:                               Floating Point Classes.
                                                              (line 157)
* finitel:                               Floating Point Classes.
                                                              (line 158)
* flockfile:                             Streams and Threads. (line  30)
* floor:                                 Rounding Functions.  (line  54)
* floorf:                                Rounding Functions.  (line  55)
* floorfN:                               Rounding Functions.  (line  57)
* floorfNx:                              Rounding Functions.  (line  58)
* floorl:                                Rounding Functions.  (line  56)
* fma:                                   Misc FP Arithmetic.  (line  85)
* fMaddfN:                               Misc FP Arithmetic.  (line 116)
* fMaddfNx:                              Misc FP Arithmetic.  (line 117)
* fmaf:                                  Misc FP Arithmetic.  (line  86)
* fmafN:                                 Misc FP Arithmetic.  (line  89)
* fmafNx:                                Misc FP Arithmetic.  (line  90)
* fmal:                                  Misc FP Arithmetic.  (line  87)
* fmax:                                  Misc FP Arithmetic.  (line  28)
* fmaxf:                                 Misc FP Arithmetic.  (line  29)
* fmaxfN:                                Misc FP Arithmetic.  (line  31)
* fmaxfNx:                               Misc FP Arithmetic.  (line  32)
* fmaxl:                                 Misc FP Arithmetic.  (line  30)
* fmaxmag:                               Misc FP Arithmetic.  (line  56)
* fmaxmagf:                              Misc FP Arithmetic.  (line  57)
* fmaxmagfN:                             Misc FP Arithmetic.  (line  59)
* fmaxmagfNx:                            Misc FP Arithmetic.  (line  60)
* fmaxmagl:                              Misc FP Arithmetic.  (line  58)
* fMdivfN:                               Misc FP Arithmetic.  (line 161)
* fMdivfNx:                              Misc FP Arithmetic.  (line 162)
* fmemopen:                              String Streams.      (line   9)
* fmin:                                  Misc FP Arithmetic.  (line  11)
* fminf:                                 Misc FP Arithmetic.  (line  12)
* fminfN:                                Misc FP Arithmetic.  (line  14)
* fminfNx:                               Misc FP Arithmetic.  (line  15)
* fminl:                                 Misc FP Arithmetic.  (line  13)
* fminmag:                               Misc FP Arithmetic.  (line  42)
* fminmagf:                              Misc FP Arithmetic.  (line  43)
* fminmagfN:                             Misc FP Arithmetic.  (line  45)
* fminmagfNx:                            Misc FP Arithmetic.  (line  46)
* fminmagl:                              Misc FP Arithmetic.  (line  44)
* fMmulfN:                               Misc FP Arithmetic.  (line 146)
* fMmulfNx:                              Misc FP Arithmetic.  (line 147)
* fmod:                                  Remainder Functions. (line  10)
* fmodf:                                 Remainder Functions. (line  11)
* fmodfN:                                Remainder Functions. (line  14)
* fmodfNx:                               Remainder Functions. (line  15)
* fmodl:                                 Remainder Functions. (line  12)
* fMsubfN:                               Misc FP Arithmetic.  (line 131)
* fMsubfNx:                              Misc FP Arithmetic.  (line 132)
* fmtmsg:                                Printing Formatted Messages.
                                                              (line  46)
* fmul:                                  Misc FP Arithmetic.  (line 143)
* fmull:                                 Misc FP Arithmetic.  (line 144)
* fMxaddfN:                              Misc FP Arithmetic.  (line 118)
* fMxaddfNx:                             Misc FP Arithmetic.  (line 119)
* fMxdivfN:                              Misc FP Arithmetic.  (line 163)
* fMxdivfNx:                             Misc FP Arithmetic.  (line 164)
* fMxmulfN:                              Misc FP Arithmetic.  (line 148)
* fMxmulfNx:                             Misc FP Arithmetic.  (line 149)
* fMxsubfN:                              Misc FP Arithmetic.  (line 133)
* fMxsubfNx:                             Misc FP Arithmetic.  (line 134)
* fnmatch:                               Wildcard Matching.   (line  11)
* fopen:                                 Opening Streams.     (line  13)
* fopen64:                               Opening Streams.     (line 131)
* fopencookie:                           Streams and Cookies. (line  56)
* fork:                                  Creating a Process.  (line   9)
* forkpty:                               Pseudo-Terminal Pairs.
                                                              (line  38)
* fpathconf:                             Pathconf.            (line  39)
* fpclassify:                            Floating Point Classes.
                                                              (line   9)
* fprintf:                               Formatted Output Functions.
                                                              (line  33)
* fputc:                                 Simple Output.       (line  12)
* fputc_unlocked:                        Simple Output.       (line  30)
* fputs:                                 Simple Output.       (line 122)
* fputs_unlocked:                        Simple Output.       (line 156)
* fputwc:                                Simple Output.       (line  21)
* fputwc_unlocked:                       Simple Output.       (line  38)
* fputws:                                Simple Output.       (line 143)
* fputws_unlocked:                       Simple Output.       (line 166)
* fread:                                 Block Input/Output.  (line  27)
* fread_unlocked:                        Block Input/Output.  (line  45)
* free:                                  Freeing after Malloc.
                                                              (line  10)
* freopen:                               Opening Streams.     (line 160)
* freopen64:                             Opening Streams.     (line 196)
* frexp:                                 Normalization Functions.
                                                              (line  16)
* frexpf:                                Normalization Functions.
                                                              (line  17)
* frexpfN:                               Normalization Functions.
                                                              (line  19)
* frexpfNx:                              Normalization Functions.
                                                              (line  20)
* frexpl:                                Normalization Functions.
                                                              (line  18)
* fromfp:                                Rounding Functions.  (line 185)
* fromfpf:                               Rounding Functions.  (line 186)
* fromfpfN:                              Rounding Functions.  (line 189)
* fromfpfNx:                             Rounding Functions.  (line 191)
* fromfpl:                               Rounding Functions.  (line 187)
* fromfpx:                               Rounding Functions.  (line 203)
* fromfpxf:                              Rounding Functions.  (line 204)
* fromfpxfN:                             Rounding Functions.  (line 207)
* fromfpxfNx:                            Rounding Functions.  (line 209)
* fromfpxl:                              Rounding Functions.  (line 205)
* fscanf:                                Formatted Input Functions.
                                                              (line  39)
* fseek:                                 File Positioning.    (line  74)
* fseeko:                                File Positioning.    (line  94)
* fseeko64:                              File Positioning.    (line 117)
* fsetpos:                               Portable Positioning.
                                                              (line 105)
* fsetpos64:                             Portable Positioning.
                                                              (line 123)
* fstat:                                 Reading Attributes.  (line  50)
* fstat64:                               Reading Attributes.  (line  69)
* fsub:                                  Misc FP Arithmetic.  (line 128)
* fsubl:                                 Misc FP Arithmetic.  (line 129)
* fsync:                                 Synchronizing I/O.   (line  31)
* ftell:                                 File Positioning.    (line  21)
* ftello:                                File Positioning.    (line  34)
* ftello64:                              File Positioning.    (line  59)
* ftruncate:                             File Size.           (line  81)
* ftruncate64:                           File Size.           (line 137)
* ftrylockfile:                          Streams and Threads. (line  42)
* ftw:                                   Working with Directory Trees.
                                                              (line 124)
* ftw64:                                 Working with Directory Trees.
                                                              (line 177)
* funlockfile:                           Streams and Threads. (line  54)
* futimes:                               File Times.          (line 132)
* fwide:                                 Streams and I18N.    (line  57)
* fwprintf:                              Formatted Output Functions.
                                                              (line  41)
* fwrite:                                Block Input/Output.  (line  56)
* fwrite_unlocked:                       Block Input/Output.  (line  67)
* fwscanf:                               Formatted Input Functions.
                                                              (line  47)
* gamma:                                 Special Functions.   (line  76)
* gammaf:                                Special Functions.   (line  77)
* gammal:                                Special Functions.   (line  78)
* gcvt:                                  System V Number Conversion.
                                                              (line  63)
* getauxval:                             Auxiliary Vector.    (line  17)
* getc:                                  Character Input.     (line  59)
* getchar:                               Character Input.     (line  98)
* getchar_unlocked:                      Character Input.     (line 114)
* getcontext:                            System V contexts.   (line  50)
* getcpu:                                CPU Affinity.        (line 169)
* getcwd:                                Working Directory.   (line  23)
* getc_unlocked:                         Character Input.     (line  80)
* getdate:                               General Time String Parsing.
                                                              (line  38)
* getdate_r:                             General Time String Parsing.
                                                              (line 142)
* getdelim:                              Line Input.          (line  58)
* getdents64:                            Low-level Directory Access.
                                                              (line  14)
* getdomainnname:                        Host Identification. (line 105)
* getegid:                               Reading Persona.     (line  43)
* getentropy:                            Unpredictable Bytes. (line  37)
* getenv:                                Environment Access.  (line  15)
* geteuid:                               Reading Persona.     (line  35)
* getfsent:                              fstab.               (line 104)
* getfsfile:                             fstab.               (line 137)
* getfsspec:                             fstab.               (line 119)
* getgid:                                Reading Persona.     (line  28)
* getgrent:                              Scanning All Groups. (line  60)
* getgrent_r:                            Scanning All Groups. (line  72)
* getgrgid:                              Lookup Group.        (line  10)
* getgrgid_r:                            Lookup Group.        (line  22)
* getgrnam:                              Lookup Group.        (line  44)
* getgrnam_r:                            Lookup Group.        (line  57)
* getgrouplist:                          Setting Groups.      (line 117)
* getgroups:                             Reading Persona.     (line  51)
* gethostbyaddr:                         Host Names.          (line  86)
* gethostbyaddr_r:                       Host Names.          (line 204)
* gethostbyname:                         Host Names.          (line  67)
* gethostbyname2:                        Host Names.          (line  76)
* gethostbyname2_r:                      Host Names.          (line 191)
* gethostbyname_r:                       Host Names.          (line 133)
* gethostent:                            Host Names.          (line 246)
* gethostid:                             Host Identification. (line 129)
* gethostname:                           Host Identification. (line  53)
* getitimer:                             Setting an Alarm.    (line  87)
* getline:                               Line Input.          (line  20)
* getloadavg:                            Processor Resources. (line  54)
* getlogin:                              Who Logged In.       (line  16)
* getmntent:                             mtab.                (line 130)
* getmntent_r:                           mtab.                (line 158)
* getnetbyaddr:                          Networks Database.   (line  47)
* getnetbyname:                          Networks Database.   (line  38)
* getnetent:                             Networks Database.   (line  77)
* getnetgrent:                           Lookup Netgroup.     (line  39)
* getnetgrent_r:                         Lookup Netgroup.     (line  58)
* getopt:                                Using Getopt.        (line  38)
* getopt_long:                           Getopt Long Options. (line  43)
* getopt_long_only:                      Getopt Long Options. (line  99)
* getpagesize:                           Query Memory Parameters.
                                                              (line  33)
* getpass:                               getpass.             (line  10)
* getpayload:                            FP Bit Twiddling.    (line 158)
* getpayloadf:                           FP Bit Twiddling.    (line 159)
* getpayloadfN:                          FP Bit Twiddling.    (line 161)
* getpayloadfNx:                         FP Bit Twiddling.    (line 162)
* getpayloadl:                           FP Bit Twiddling.    (line 160)
* getpeername:                           Who is Connected.    (line   6)
* getpgid:                               Process Group Functions.
                                                              (line  62)
* getpgrp:                               Process Group Functions.
                                                              (line  54)
* getpid:                                Process Identification.
                                                              (line  42)
* getppid:                               Process Identification.
                                                              (line  50)
* getpriority:                           Traditional Scheduling Functions.
                                                              (line  26)
* getprotobyname:                        Protocols Database.  (line  51)
* getprotobynumber:                      Protocols Database.  (line  61)
* getprotoent:                           Protocols Database.  (line  89)
* getpt:                                 Allocation.          (line  10)
* getpwent:                              Scanning All Users.  (line  59)
* getpwent_r:                            Scanning All Users.  (line  73)
* getpwnam:                              Lookup User.         (line  45)
* getpwnam_r:                            Lookup User.         (line  58)
* getpwuid:                              Lookup User.         (line  10)
* getpwuid_r:                            Lookup User.         (line  23)
* getrandom:                             Unpredictable Bytes. (line  72)
* getrlimit:                             Limits on Resources. (line  29)
* getrlimit64:                           Limits on Resources. (line  44)
* getrusage:                             Resource Usage.      (line  10)
* gets:                                  Line Input.          (line 152)
* getservbyname:                         Services Database.   (line  36)
* getservbyport:                         Services Database.   (line  51)
* getservent:                            Services Database.   (line  80)
* getsid:                                Process Group Functions.
                                                              (line  34)
* getsockname:                           Reading Address.     (line  10)
* getsockopt:                            Socket Option Functions.
                                                              (line   9)
* getsubopt:                             Suboptions.          (line  15)
* gettext:                               Translation with gettext.
                                                              (line  31)
* gettid:                                Process Identification.
                                                              (line  58)
* gettimeofday:                          Getting the Time.    (line 119)
* getuid:                                Reading Persona.     (line  21)
* getumask:                              Setting Permissions. (line  65)
* getutent:                              Manipulating the Database.
                                                              (line 137)
* getutent_r:                            Manipulating the Database.
                                                              (line 241)
* getutid:                               Manipulating the Database.
                                                              (line 159)
* getutid_r:                             Manipulating the Database.
                                                              (line 259)
* getutline:                             Manipulating the Database.
                                                              (line 189)
* getutline_r:                           Manipulating the Database.
                                                              (line 276)
* getutmp:                               XPG Functions.       (line 151)
* getutmpx:                              XPG Functions.       (line 159)
* getutxent:                             XPG Functions.       (line  93)
* getutxid:                              XPG Functions.       (line 110)
* getutxline:                            XPG Functions.       (line 119)
* getw:                                  Character Input.     (line 164)
* getwc:                                 Character Input.     (line  70)
* getwchar:                              Character Input.     (line 106)
* getwchar_unlocked:                     Character Input.     (line 122)
* getwc_unlocked:                        Character Input.     (line  88)
* getwd:                                 Working Directory.   (line  79)
* get_avphys_pages:                      Query Memory Parameters.
                                                              (line  79)
* get_current_dir_name:                  Working Directory.   (line  94)
* get_nprocs:                            Processor Resources. (line  38)
* get_nprocs_conf:                       Processor Resources. (line  28)
* get_phys_pages:                        Query Memory Parameters.
                                                              (line  68)
* glob:                                  Calling Glob.        (line 238)
* glob64:                                Calling Glob.        (line 301)
* globfree:                              More Flags for Globbing.
                                                              (line 131)
* globfree64:                            More Flags for Globbing.
                                                              (line 141)
* gmtime:                                Broken-down Time.    (line 129)
* gmtime_r:                              Broken-down Time.    (line 143)
* grantpt:                               Allocation.          (line  26)
* grantpt <1>:                           Configuring and compiling.
                                                              (line 192)
* gsignal:                               Signaling Yourself.  (line  19)
* gtty:                                  BSD Terminal Modes.  (line  31)
* hasmntopt:                             mtab.                (line 205)
* HAS_CPU_FEATURE:                       X86.                 (line  17)
* hcreate:                               Hash Search Function.
                                                              (line  12)
* hcreate_r:                             Hash Search Function.
                                                              (line 116)
* hdestroy:                              Hash Search Function.
                                                              (line  42)
* hdestroy_r:                            Hash Search Function.
                                                              (line 135)
* hsearch:                               Hash Search Function.
                                                              (line  85)
* hsearch_r:                             Hash Search Function.
                                                              (line 145)
* htonl:                                 Byte Order.          (line  50)
* htons:                                 Byte Order.          (line  34)
* hypot:                                 Exponents and Logarithms.
                                                              (line 222)
* hypotf:                                Exponents and Logarithms.
                                                              (line 223)
* hypotfN:                               Exponents and Logarithms.
                                                              (line 225)
* hypotfNx:                              Exponents and Logarithms.
                                                              (line 226)
* hypotl:                                Exponents and Logarithms.
                                                              (line 224)
* iconv:                                 Generic Conversion Interface.
                                                              (line 115)
* iconv_close:                           Generic Conversion Interface.
                                                              (line  91)
* iconv_open:                            Generic Conversion Interface.
                                                              (line  27)
* IFTODT:                                Directory Entries.   (line  71)
* if_freenameindex:                      Interface Naming.    (line  69)
* if_indextoname:                        Interface Naming.    (line  34)
* if_nameindex:                          Interface Naming.    (line  56)
* if_nametoindex:                        Interface Naming.    (line  25)
* ilogb:                                 Exponents and Logarithms.
                                                              (line 105)
* ilogbf:                                Exponents and Logarithms.
                                                              (line 106)
* ilogbfN:                               Exponents and Logarithms.
                                                              (line 108)
* ilogbfNx:                              Exponents and Logarithms.
                                                              (line 109)
* ilogbl:                                Exponents and Logarithms.
                                                              (line 107)
* imaxabs:                               Absolute Value.      (line  19)
* imaxdiv:                               Integer Division.    (line 114)
* index:                                 Search Functions.    (line 343)
* inet_addr:                             Host Address Functions.
                                                              (line  22)
* inet_aton:                             Host Address Functions.
                                                              (line  12)
* inet_lnaof:                            Host Address Functions.
                                                              (line  79)
* inet_makeaddr:                         Host Address Functions.
                                                              (line  69)
* inet_netof:                            Host Address Functions.
                                                              (line  91)
* inet_network:                          Host Address Functions.
                                                              (line  35)
* inet_ntoa:                             Host Address Functions.
                                                              (line  49)
* inet_ntop:                             Host Address Functions.
                                                              (line 115)
* inet_pton:                             Host Address Functions.
                                                              (line 103)
* initgroups:                            Setting Groups.      (line  96)
* initstate:                             BSD Random.          (line  38)
* initstate_r:                           BSD Random.          (line 112)
* innetgr:                               Netgroup Membership. (line  10)
* ioctl:                                 IOCTLs.              (line  31)
* isalnum:                               Classification of Characters.
                                                              (line  64)
* isalpha:                               Classification of Characters.
                                                              (line  43)
* isascii:                               Classification of Characters.
                                                              (line 152)
* isatty:                                Is It a Terminal.    (line  13)
* isblank:                               Classification of Characters.
                                                              (line 117)
* iscanonical:                           Floating Point Classes.
                                                              (line  49)
* iscntrl:                               Classification of Characters.
                                                              (line 144)
* isdigit:                               Classification of Characters.
                                                              (line  57)
* iseqsig:                               FP Comparison Functions.
                                                              (line  80)
* isfinite:                              Floating Point Classes.
                                                              (line  67)
* isgraph:                               Classification of Characters.
                                                              (line 127)
* isgreater:                             FP Comparison Functions.
                                                              (line  23)
* isgreaterequal:                        FP Comparison Functions.
                                                              (line  32)
* isinf:                                 Floating Point Classes.
                                                              (line 129)
* isinff:                                Floating Point Classes.
                                                              (line 130)
* isinfl:                                Floating Point Classes.
                                                              (line 131)
* isless:                                FP Comparison Functions.
                                                              (line  41)
* islessequal:                           FP Comparison Functions.
                                                              (line  50)
* islessgreater:                         FP Comparison Functions.
                                                              (line  59)
* islower:                               Classification of Characters.
                                                              (line  27)
* isnan:                                 Floating Point Classes.
                                                              (line  90)
* isnan <1>:                             Floating Point Classes.
                                                              (line 139)
* isnanf:                                Floating Point Classes.
                                                              (line 140)
* isnanl:                                Floating Point Classes.
                                                              (line 141)
* isnormal:                              Floating Point Classes.
                                                              (line  80)
* isprint:                               Classification of Characters.
                                                              (line 136)
* ispunct:                               Classification of Characters.
                                                              (line  82)
* issignaling:                           Floating Point Classes.
                                                              (line  99)
* isspace:                               Classification of Characters.
                                                              (line  90)
* issubnormal:                           Floating Point Classes.
                                                              (line 107)
* isunordered:                           FP Comparison Functions.
                                                              (line  72)
* isupper:                               Classification of Characters.
                                                              (line  35)
* iswalnum:                              Classification of Wide Characters.
                                                              (line  77)
* iswalpha:                              Classification of Wide Characters.
                                                              (line  93)
* iswblank:                              Classification of Wide Characters.
                                                              (line 275)
* iswcntrl:                              Classification of Wide Characters.
                                                              (line 113)
* iswctype:                              Classification of Wide Characters.
                                                              (line  60)
* iswdigit:                              Classification of Wide Characters.
                                                              (line 127)
* iswgraph:                              Classification of Wide Characters.
                                                              (line 151)
* iswlower:                              Classification of Wide Characters.
                                                              (line 166)
* iswprint:                              Classification of Wide Characters.
                                                              (line 180)
* iswpunct:                              Classification of Wide Characters.
                                                              (line 194)
* iswspace:                              Classification of Wide Characters.
                                                              (line 208)
* iswupper:                              Classification of Wide Characters.
                                                              (line 241)
* iswxdigit:                             Classification of Wide Characters.
                                                              (line 255)
* isxdigit:                              Classification of Characters.
                                                              (line  73)
* iszero:                                Floating Point Classes.
                                                              (line 115)
* j0:                                    Special Functions.   (line 104)
* j0f:                                   Special Functions.   (line 105)
* j0fN:                                  Special Functions.   (line 107)
* j0fNx:                                 Special Functions.   (line 108)
* j0l:                                   Special Functions.   (line 106)
* j1:                                    Special Functions.   (line 118)
* j1f:                                   Special Functions.   (line 119)
* j1fN:                                  Special Functions.   (line 121)
* j1fNx:                                 Special Functions.   (line 122)
* j1l:                                   Special Functions.   (line 120)
* jn:                                    Special Functions.   (line 132)
* jnf:                                   Special Functions.   (line 133)
* jnfN:                                  Special Functions.   (line 135)
* jnfNx:                                 Special Functions.   (line 136)
* jnl:                                   Special Functions.   (line 134)
* jrand48:                               SVID Random.         (line  96)
* jrand48_r:                             SVID Random.         (line 279)
* kill:                                  Signaling Another Process.
                                                              (line  26)
* killpg:                                Signaling Another Process.
                                                              (line  98)
* l64a:                                  Encode Binary Data.  (line  11)
* labs:                                  Absolute Value.      (line  17)
* lcong48:                               SVID Random.         (line 159)
* lcong48_r:                             SVID Random.         (line 347)
* ldexp:                                 Normalization Functions.
                                                              (line  40)
* ldexpf:                                Normalization Functions.
                                                              (line  41)
* ldexpfN:                               Normalization Functions.
                                                              (line  43)
* ldexpfNx:                              Normalization Functions.
                                                              (line  44)
* ldexpl:                                Normalization Functions.
                                                              (line  42)
* ldiv:                                  Integer Division.    (line  63)
* lfind:                                 Array Search Function.
                                                              (line  11)
* lgamma:                                Special Functions.   (line  34)
* lgammaf:                               Special Functions.   (line  35)
* lgammafN:                              Special Functions.   (line  37)
* lgammafNx:                             Special Functions.   (line  38)
* lgammafNx_r:                           Special Functions.   (line  65)
* lgammafN_r:                            Special Functions.   (line  64)
* lgammaf_r:                             Special Functions.   (line  62)
* lgammal:                               Special Functions.   (line  36)
* lgammal_r:                             Special Functions.   (line  63)
* lgamma_r:                              Special Functions.   (line  61)
* link:                                  Hard Links.          (line  27)
* linkat:                                Hard Links.          (line  79)
* lio_listio:                            Asynchronous Reads/Writes.
                                                              (line 180)
* lio_listio64:                          Asynchronous Reads/Writes.
                                                              (line 264)
* listen:                                Listening.           (line  29)
* llabs:                                 Absolute Value.      (line  18)
* lldiv:                                 Integer Division.    (line  86)
* llogb:                                 Exponents and Logarithms.
                                                              (line 110)
* llogbf:                                Exponents and Logarithms.
                                                              (line 111)
* llogbfN:                               Exponents and Logarithms.
                                                              (line 113)
* llogbfNx:                              Exponents and Logarithms.
                                                              (line 114)
* llogbl:                                Exponents and Logarithms.
                                                              (line 112)
* llrint:                                Rounding Functions.  (line 149)
* llrintf:                               Rounding Functions.  (line 150)
* llrintfN:                              Rounding Functions.  (line 152)
* llrintfNx:                             Rounding Functions.  (line 153)
* llrintl:                               Rounding Functions.  (line 151)
* llround:                               Rounding Functions.  (line 173)
* llroundf:                              Rounding Functions.  (line 174)
* llroundfN:                             Rounding Functions.  (line 176)
* llroundfNx:                            Rounding Functions.  (line 177)
* llroundl:                              Rounding Functions.  (line 175)
* localeconv:                            The Lame Way to Locale Data.
                                                              (line  15)
* localtime:                             Broken-down Time.    (line  87)
* localtime_r:                           Broken-down Time.    (line 112)
* log:                                   Exponents and Logarithms.
                                                              (line  47)
* log10:                                 Exponents and Logarithms.
                                                              (line  63)
* log10f:                                Exponents and Logarithms.
                                                              (line  64)
* log10fN:                               Exponents and Logarithms.
                                                              (line  66)
* log10fNx:                              Exponents and Logarithms.
                                                              (line  67)
* log10l:                                Exponents and Logarithms.
                                                              (line  65)
* log1p:                                 Exponents and Logarithms.
                                                              (line 252)
* log1pf:                                Exponents and Logarithms.
                                                              (line 253)
* log1pfN:                               Exponents and Logarithms.
                                                              (line 255)
* log1pfNx:                              Exponents and Logarithms.
                                                              (line 256)
* log1pl:                                Exponents and Logarithms.
                                                              (line 254)
* log2:                                  Exponents and Logarithms.
                                                              (line  75)
* log2f:                                 Exponents and Logarithms.
                                                              (line  76)
* log2fN:                                Exponents and Logarithms.
                                                              (line  78)
* log2fNx:                               Exponents and Logarithms.
                                                              (line  79)
* log2l:                                 Exponents and Logarithms.
                                                              (line  77)
* logb:                                  Exponents and Logarithms.
                                                              (line  87)
* logbf:                                 Exponents and Logarithms.
                                                              (line  88)
* logbfN:                                Exponents and Logarithms.
                                                              (line  90)
* logbfNx:                               Exponents and Logarithms.
                                                              (line  91)
* logbl:                                 Exponents and Logarithms.
                                                              (line  89)
* logf:                                  Exponents and Logarithms.
                                                              (line  48)
* logfN:                                 Exponents and Logarithms.
                                                              (line  50)
* logfNx:                                Exponents and Logarithms.
                                                              (line  51)
* login:                                 Logging In and Out.  (line  25)
* login_tty:                             Logging In and Out.  (line  13)
* logl:                                  Exponents and Logarithms.
                                                              (line  49)
* logout:                                Logging In and Out.  (line  42)
* logwtmp:                               Logging In and Out.  (line  53)
* longjmp:                               Non-Local Details.   (line  26)
* lrand48:                               SVID Random.         (line  60)
* lrand48_r:                             SVID Random.         (line 228)
* lrint:                                 Rounding Functions.  (line 137)
* lrintf:                                Rounding Functions.  (line 138)
* lrintfN:                               Rounding Functions.  (line 140)
* lrintfNx:                              Rounding Functions.  (line 141)
* lrintl:                                Rounding Functions.  (line 139)
* lround:                                Rounding Functions.  (line 161)
* lroundf:                               Rounding Functions.  (line 162)
* lroundfN:                              Rounding Functions.  (line 164)
* lroundfNx:                             Rounding Functions.  (line 165)
* lroundl:                               Rounding Functions.  (line 163)
* lsearch:                               Array Search Function.
                                                              (line  31)
* lseek:                                 File Position Primitive.
                                                              (line  15)
* lseek64:                               File Position Primitive.
                                                              (line  99)
* lstat:                                 Reading Attributes.  (line  84)
* lstat64:                               Reading Attributes.  (line  98)
* lutimes:                               File Times.          (line 114)
* madvise:                               Memory-mapped I/O.   (line 279)
* main:                                  Program Arguments.   (line   6)
* makecontext:                           System V contexts.   (line  81)
* mallinfo2:                             Statistics of Malloc.
                                                              (line  55)
* malloc:                                Basic Allocation.    (line   9)
* mallopt:                               Malloc Tunable Parameters.
                                                              (line  10)
* mblen:                                 Non-reentrant Character Conversion.
                                                              (line  80)
* mbrlen:                                Converting a Character.
                                                              (line 213)
* mbrtowc:                               Converting a Character.
                                                              (line  87)
* mbsinit:                               Keeping the state.   (line  48)
* mbsnrtowcs:                            Converting Strings.  (line 147)
* mbsrtowcs:                             Converting Strings.  (line  14)
* mbstowcs:                              Non-reentrant String Conversion.
                                                              (line  13)
* mbtowc:                                Non-reentrant Character Conversion.
                                                              (line   6)
* mcheck:                                Heap Consistency Checking.
                                                              (line  10)
* memalign:                              Aligned Memory Blocks.
                                                              (line  35)
* memccpy:                               Copying Strings and Arrays.
                                                              (line 172)
* memchr:                                Search Functions.    (line  10)
* memcmp:                                String/Array Comparison.
                                                              (line  24)
* memcpy:                                Copying Strings and Arrays.
                                                              (line  32)
* memfd_create:                          Memory-mapped I/O.   (line 384)
* memfrob:                               Obfuscating Data.    (line  22)
* memmem:                                Search Functions.    (line 234)
* memmove:                               Copying Strings and Arrays.
                                                              (line 133)
* mempcpy:                               Copying Strings and Arrays.
                                                              (line  78)
* memrchr:                               Search Functions.    (line  60)
* memset:                                Copying Strings and Arrays.
                                                              (line 183)
* merge:                                 Actions in the NSS configuration.
                                                              (line  57)
* mkdir:                                 Creating Directories.
                                                              (line   9)
* mkdtemp:                               Temporary Files.     (line 207)
* mkfifo:                                FIFO Special Files.  (line  19)
* mknod:                                 Making Special Files.
                                                              (line  12)
* mkstemp:                               Temporary Files.     (line 185)
* mktemp:                                Temporary Files.     (line 167)
* mktime:                                Broken-down Time.    (line 155)
* mlock:                                 Page Lock Functions. (line  19)
* mlock2:                                Page Lock Functions. (line  57)
* mlockall:                              Page Lock Functions. (line 102)
* mmap:                                  Memory-mapped I/O.   (line  37)
* mmap64:                                Memory-mapped I/O.   (line 157)
* modf:                                  Rounding Functions.  (line 237)
* modff:                                 Rounding Functions.  (line 238)
* modffN:                                Rounding Functions.  (line 241)
* modffNx:                               Rounding Functions.  (line 242)
* modfl:                                 Rounding Functions.  (line 239)
* mount:                                 Mount-Unmount-Remount.
                                                              (line  16)
* mprobe:                                Heap Consistency Checking.
                                                              (line  52)
* mprotect:                              Memory Protection.   (line  52)
* mrand48:                               SVID Random.         (line  87)
* mrand48_r:                             SVID Random.         (line 263)
* mremap:                                Memory-mapped I/O.   (line 233)
* msync:                                 Memory-mapped I/O.   (line 197)
* mtrace:                                Tracing malloc.      (line   6)
* mtx_destroy:                           ISO C Mutexes.       (line 133)
* mtx_init:                              ISO C Mutexes.       (line  35)
* mtx_lock:                              ISO C Mutexes.       (line  61)
* mtx_timedlock:                         ISO C Mutexes.       (line  77)
* mtx_trylock:                           ISO C Mutexes.       (line 101)
* mtx_unlock:                            ISO C Mutexes.       (line 118)
* munlock:                               Page Lock Functions. (line  92)
* munlockall:                            Page Lock Functions. (line 168)
* munmap:                                Memory-mapped I/O.   (line 175)
* muntrace:                              Tracing malloc.      (line  31)
* nan:                                   FP Bit Twiddling.    (line 113)
* nanf:                                  FP Bit Twiddling.    (line 114)
* nanfN:                                 FP Bit Twiddling.    (line 116)
* nanfNx:                                FP Bit Twiddling.    (line 117)
* nanl:                                  FP Bit Twiddling.    (line 115)
* nanosleep:                             Sleeping.            (line  57)
* nearbyint:                             Rounding Functions.  (line  99)
* nearbyintf:                            Rounding Functions.  (line 100)
* nearbyintfN:                           Rounding Functions.  (line 102)
* nearbyintfNx:                          Rounding Functions.  (line 103)
* nearbyintl:                            Rounding Functions.  (line 101)
* nextafter:                             FP Bit Twiddling.    (line  44)
* nextafterf:                            FP Bit Twiddling.    (line  45)
* nextafterfN:                           FP Bit Twiddling.    (line  47)
* nextafterfNx:                          FP Bit Twiddling.    (line  48)
* nextafterl:                            FP Bit Twiddling.    (line  46)
* nextdown:                              FP Bit Twiddling.    (line  95)
* nextdownf:                             FP Bit Twiddling.    (line  96)
* nextdownfN:                            FP Bit Twiddling.    (line  98)
* nextdownfNx:                           FP Bit Twiddling.    (line  99)
* nextdownl:                             FP Bit Twiddling.    (line  97)
* nexttoward:                            FP Bit Twiddling.    (line  67)
* nexttowardf:                           FP Bit Twiddling.    (line  68)
* nexttowardl:                           FP Bit Twiddling.    (line  69)
* nextup:                                FP Bit Twiddling.    (line  77)
* nextupf:                               FP Bit Twiddling.    (line  78)
* nextupfN:                              FP Bit Twiddling.    (line  80)
* nextupfNx:                             FP Bit Twiddling.    (line  81)
* nextupl:                               FP Bit Twiddling.    (line  79)
* nftw:                                  Working with Directory Trees.
                                                              (line 192)
* nftw64:                                Working with Directory Trees.
                                                              (line 255)
* ngettext:                              Advanced gettext functions.
                                                              (line  69)
* nice:                                  Traditional Scheduling Functions.
                                                              (line 101)
* nl_langinfo:                           The Elegant and Fast Way.
                                                              (line  12)
* notfound:                              Actions in the NSS configuration.
                                                              (line  25)
* nrand48:                               SVID Random.         (line  71)
* nrand48_r:                             SVID Random.         (line 245)
* ntohl:                                 Byte Order.          (line  60)
* ntohs:                                 Byte Order.          (line  42)
* ntp_adjtime:                           Setting and Adjusting the Time.
                                                              (line 215)
* ntp_gettime:                           Setting and Adjusting the Time.
                                                              (line  96)
* obstack_1grow:                         Growing Objects.     (line  56)
* obstack_1grow_fast:                    Extra Fast Growing.  (line  34)
* obstack_alignment_mask:                Obstacks Data Alignment.
                                                              (line  14)
* obstack_alloc:                         Allocation in an Obstack.
                                                              (line   9)
* obstack_base:                          Status of an Obstack.
                                                              (line  10)
* obstack_blank:                         Growing Objects.     (line  28)
* obstack_blank_fast:                    Extra Fast Growing.  (line  63)
* obstack_chunk_alloc:                   Preparing for Obstacks.
                                                              (line  11)
* obstack_chunk_free:                    Preparing for Obstacks.
                                                              (line  11)
* obstack_chunk_size:                    Obstack Chunks.      (line  37)
* obstack_copy:                          Allocation in an Obstack.
                                                              (line  43)
* obstack_copy0:                         Allocation in an Obstack.
                                                              (line  53)
* obstack_finish:                        Growing Objects.     (line  84)
* obstack_free:                          Freeing Obstack Objects.
                                                              (line  11)
* obstack_grow:                          Growing Objects.     (line  36)
* obstack_grow0:                         Growing Objects.     (line  46)
* obstack_init:                          Preparing for Obstacks.
                                                              (line  33)
* obstack_int_grow:                      Growing Objects.     (line  74)
* obstack_int_grow_fast:                 Extra Fast Growing.  (line  53)
* obstack_next_free:                     Status of an Obstack.
                                                              (line  25)
* obstack_object_size:                   Growing Objects.     (line 104)
* obstack_object_size <1>:               Status of an Obstack.
                                                              (line  35)
* obstack_printf:                        Dynamic Output.      (line  39)
* obstack_ptr_grow:                      Growing Objects.     (line  64)
* obstack_ptr_grow_fast:                 Extra Fast Growing.  (line  43)
* obstack_room:                          Extra Fast Growing.  (line  22)
* obstack_vprintf:                       Variable Arguments Output.
                                                              (line 125)
* offsetof:                              Structure Measurement.
                                                              (line   9)
* on_exit:                               Cleanups on Exit.    (line  26)
* open:                                  Opening and Closing Files.
                                                              (line  10)
* open64:                                Opening and Closing Files.
                                                              (line  94)
* opendir:                               Opening a Directory. (line  22)
* openlog:                               openlog.             (line   9)
* openpty:                               Pseudo-Terminal Pairs.
                                                              (line   9)
* open_memstream:                        String Streams.      (line  77)
* parse_printf_format:                   Parsing a Template String.
                                                              (line  15)
* pathconf:                              Pathconf.            (line  13)
* pause:                                 Using Pause.         (line  10)
* pclose:                                Pipe to a Subprocess.
                                                              (line  42)
* perror:                                Error Messages.      (line  54)
* pipe:                                  Creating a Pipe.     (line  16)
* pkey_alloc:                            Memory Protection.   (line 199)
* pkey_free:                             Memory Protection.   (line 233)
* pkey_get:                              Memory Protection.   (line 327)
* pkey_mprotect:                         Memory Protection.   (line 253)
* pkey_set:                              Memory Protection.   (line 287)
* popen:                                 Pipe to a Subprocess.
                                                              (line  17)
* posix_fallocate:                       Storage Allocation.  (line  27)
* posix_fallocate64:                     Storage Allocation.  (line  75)
* posix_memalign:                        Aligned Memory Blocks.
                                                              (line  59)
* pow:                                   Exponents and Logarithms.
                                                              (line 179)
* powf:                                  Exponents and Logarithms.
                                                              (line 180)
* powfN:                                 Exponents and Logarithms.
                                                              (line 182)
* powfNx:                                Exponents and Logarithms.
                                                              (line 183)
* powl:                                  Exponents and Logarithms.
                                                              (line 181)
* pread:                                 I/O Primitives.      (line 113)
* pread64:                               I/O Primitives.      (line 150)
* preadv:                                Scatter-Gather.      (line  64)
* preadv2:                               Scatter-Gather.      (line 148)
* preadv64:                              Scatter-Gather.      (line  86)
* preadv64v2:                            Scatter-Gather.      (line 199)
* printf:                                Formatted Output Functions.
                                                              (line  13)
* printf_size:                           Predefined Printf Handlers.
                                                              (line  10)
* printf_size_info:                      Predefined Printf Handlers.
                                                              (line  44)
* psignal:                               Signal Messages.     (line  29)
* pthread_attr_getsigmask_np:            Initial Thread Signal Mask.
                                                              (line  26)
* pthread_attr_setsigmask_np:            Initial Thread Signal Mask.
                                                              (line  10)
* pthread_clockjoin_np:                  Waiting with Explicit Clocks.
                                                              (line  73)
* pthread_cond_clockwait:                Waiting with Explicit Clocks.
                                                              (line  15)
* pthread_getattr_default_np:            Default Thread Attributes.
                                                              (line   9)
* pthread_key_create:                    Thread-specific Data.
                                                              (line  10)
* pthread_key_delete:                    Thread-specific Data.
                                                              (line  25)
* pthread_rwlock_clockrdlock:            Waiting with Explicit Clocks.
                                                              (line  27)
* pthread_rwlock_clockwrlock:            Waiting with Explicit Clocks.
                                                              (line  39)
* pthread_setattr_default_np:            Default Thread Attributes.
                                                              (line  17)
* pthread_setspecific:                   Thread-specific Data.
                                                              (line  42)
* pthread_timedjoin_np:                  Waiting with Explicit Clocks.
                                                              (line  61)
* pthread_tryjoin_np:                    Waiting with Explicit Clocks.
                                                              (line  51)
* ptsname:                               Allocation.          (line  83)
* ptsname_r:                             Allocation.          (line  94)
* putc:                                  Simple Output.       (line  48)
* putchar:                               Simple Output.       (line  88)
* putchar_unlocked:                      Simple Output.       (line 104)
* putc_unlocked:                         Simple Output.       (line  70)
* putenv:                                Environment Access.  (line  40)
* putpwent:                              Writing a User Entry.
                                                              (line   6)
* puts:                                  Simple Output.       (line 176)
* pututline:                             Manipulating the Database.
                                                              (line 212)
* pututxline:                            XPG Functions.       (line 128)
* putw:                                  Simple Output.       (line 193)
* putwc:                                 Simple Output.       (line  59)
* putwchar:                              Simple Output.       (line  96)
* putwchar_unlocked:                     Simple Output.       (line 112)
* putwc_unlocked:                        Simple Output.       (line  78)
* pwrite:                                I/O Primitives.      (line 278)
* pwrite64:                              I/O Primitives.      (line 319)
* pwritev:                               Scatter-Gather.      (line 104)
* pwritev2:                              Scatter-Gather.      (line 217)
* pwritev64:                             Scatter-Gather.      (line 130)
* pwritev64v2:                           Scatter-Gather.      (line 240)
* qecvt:                                 System V Number Conversion.
                                                              (line  78)
* qecvt_r:                               System V Number Conversion.
                                                              (line 142)
* qfcvt:                                 System V Number Conversion.
                                                              (line  88)
* qfcvt_r:                               System V Number Conversion.
                                                              (line 155)
* qgcvt:                                 System V Number Conversion.
                                                              (line  98)
* qsort:                                 Array Sort Function. (line   9)
* raise:                                 Signaling Yourself.  (line   9)
* rand:                                  ISO Random.          (line  20)
* random:                                BSD Random.          (line  12)
* random_r:                              BSD Random.          (line  93)
* rand_r:                                ISO Random.          (line  44)
* rawmemchr:                             Search Functions.    (line  31)
* read:                                  I/O Primitives.      (line  16)
* readdir:                               Reading/Closing Directory.
                                                              (line  10)
* readdir64:                             Reading/Closing Directory.
                                                              (line 119)
* readdir64_r:                           Reading/Closing Directory.
                                                              (line 131)
* readdir_r:                             Reading/Closing Directory.
                                                              (line  54)
* readlink:                              Symbolic Links.      (line  73)
* readv:                                 Scatter-Gather.      (line  30)
* realloc:                               Changing Block Size. (line  15)
* reallocarray:                          Changing Block Size. (line  35)
* realpath:                              Symbolic Links.      (line 167)
* recv:                                  Receiving Data.      (line  10)
* recvfrom:                              Receiving Datagrams. (line  10)
* regcomp:                               POSIX Regexp Compilation.
                                                              (line  31)
* regerror:                              Regexp Cleanup.      (line  27)
* regexec:                               Matching POSIX Regexps.
                                                              (line  11)
* regfree:                               Regexp Cleanup.      (line   9)
* register_printf_function:              Registering New Conversions.
                                                              (line   9)
* remainder:                             Remainder Functions. (line  32)
* remainderf:                            Remainder Functions. (line  33)
* remainderfN:                           Remainder Functions. (line  36)
* remainderfNx:                          Remainder Functions. (line  38)
* remainderl:                            Remainder Functions. (line  34)
* remove:                                Deleting Files.      (line  77)
* rename:                                Renaming Files.      (line   8)
* return:                                Actions in the NSS configuration.
                                                              (line  42)
* rewind:                                File Positioning.    (line 159)
* rewinddir:                             Random Access Directory.
                                                              (line  10)
* rindex:                                Search Functions.    (line 353)
* rint:                                  Rounding Functions.  (line  80)
* rintf:                                 Rounding Functions.  (line  81)
* rintfN:                                Rounding Functions.  (line  83)
* rintfNx:                               Rounding Functions.  (line  84)
* rintl:                                 Rounding Functions.  (line  82)
* rmdir:                                 Deleting Files.      (line  54)
* round:                                 Rounding Functions.  (line 111)
* roundeven:                             Rounding Functions.  (line 124)
* roundevenf:                            Rounding Functions.  (line 125)
* roundevenfN:                           Rounding Functions.  (line 127)
* roundevenfNx:                          Rounding Functions.  (line 128)
* roundevenl:                            Rounding Functions.  (line 126)
* roundf:                                Rounding Functions.  (line 112)
* roundfN:                               Rounding Functions.  (line 114)
* roundfNx:                              Rounding Functions.  (line 115)
* roundl:                                Rounding Functions.  (line 113)
* rpmatch:                               Yes-or-No Questions. (line  15)
* scalb:                                 Normalization Functions.
                                                              (line  61)
* scalbf:                                Normalization Functions.
                                                              (line  62)
* scalbl:                                Normalization Functions.
                                                              (line  63)
* scalbln:                               Normalization Functions.
                                                              (line  83)
* scalblnf:                              Normalization Functions.
                                                              (line  84)
* scalblnfN:                             Normalization Functions.
                                                              (line  86)
* scalblnfNx:                            Normalization Functions.
                                                              (line  87)
* scalblnl:                              Normalization Functions.
                                                              (line  85)
* scalbn:                                Normalization Functions.
                                                              (line  71)
* scalbnf:                               Normalization Functions.
                                                              (line  72)
* scalbnfN:                              Normalization Functions.
                                                              (line  74)
* scalbnfNx:                             Normalization Functions.
                                                              (line  75)
* scalbnl:                               Normalization Functions.
                                                              (line  73)
* scandir:                               Scanning Directory Content.
                                                              (line  11)
* scandir64:                             Scanning Directory Content.
                                                              (line  72)
* scanf:                                 Formatted Input Functions.
                                                              (line   9)
* sched_getaffinity:                     CPU Affinity.        (line 115)
* sched_getparam:                        Basic Scheduling Functions.
                                                              (line 133)
* sched_getscheduler:                    Basic Scheduling Functions.
                                                              (line  94)
* sched_get_priority_max:                Basic Scheduling Functions.
                                                              (line 173)
* sched_get_priority_min:                Basic Scheduling Functions.
                                                              (line 156)
* sched_rr_get_interval:                 Basic Scheduling Functions.
                                                              (line 190)
* sched_setaffinity:                     CPU Affinity.        (line 142)
* sched_setparam:                        Basic Scheduling Functions.
                                                              (line 122)
* sched_setscheduler:                    Basic Scheduling Functions.
                                                              (line  42)
* sched_yield:                           Basic Scheduling Functions.
                                                              (line 210)
* secure_getenv:                         Environment Access.  (line  27)
* seed48:                                SVID Random.         (line 130)
* seed48_r:                              SVID Random.         (line 329)
* seekdir:                               Random Access Directory.
                                                              (line  32)
* select:                                Waiting for I/O.     (line  91)
* semctl:                                Semaphores.          (line  14)
* semget:                                Semaphores.          (line  18)
* semop:                                 Semaphores.          (line  22)
* semtimedop:                            Semaphores.          (line  26)
* sem_clockwait:                         Waiting with Explicit Clocks.
                                                              (line   9)
* sem_close:                             Semaphores.          (line  47)
* sem_destroy:                           Semaphores.          (line  39)
* sem_getvalue:                          Semaphores.          (line  72)
* sem_init:                              Semaphores.          (line  34)
* sem_post:                              Semaphores.          (line  68)
* sem_timedwait:                         Semaphores.          (line  59)
* sem_trywait:                           Semaphores.          (line  64)
* sem_unlink:                            Semaphores.          (line  51)
* sem_wait:                              Semaphores.          (line  55)
* send:                                  Sending Data.        (line  12)
* sendto:                                Sending Datagrams.   (line  17)
* setbuf:                                Controlling Buffering.
                                                              (line  85)
* setbuffer:                             Controlling Buffering.
                                                              (line  98)
* setcontext:                            System V contexts.   (line 128)
* setdomainname:                         Host Identification. (line 117)
* setegid:                               Setting Groups.      (line  10)
* setenv:                                Environment Access.  (line  65)
* seteuid:                               Setting User ID.     (line  10)
* setfsent:                              fstab.               (line  79)
* setgid:                                Setting Groups.      (line  30)
* setgrent:                              Scanning All Groups. (line  51)
* setgroups:                             Setting Groups.      (line  81)
* sethostent:                            Host Names.          (line 231)
* sethostid:                             Host Identification. (line 148)
* sethostname:                           Host Identification. (line  82)
* setitimer:                             Setting an Alarm.    (line  67)
* setjmp:                                Non-Local Details.   (line  16)
* setlinebuf:                            Controlling Buffering.
                                                              (line 110)
* setlocale:                             Setting the Locale.  (line  25)
* setlogmask:                            setlogmask.          (line   9)
* setmntent:                             mtab.                (line 102)
* setnetent:                             Networks Database.   (line  63)
* setnetgrent:                           Lookup Netgroup.     (line  12)
* setpayload:                            FP Bit Twiddling.    (line 178)
* setpayloadf:                           FP Bit Twiddling.    (line 179)
* setpayloadfN:                          FP Bit Twiddling.    (line 181)
* setpayloadfNx:                         FP Bit Twiddling.    (line 182)
* setpayloadl:                           FP Bit Twiddling.    (line 180)
* setpayloadsig:                         FP Bit Twiddling.    (line 195)
* setpayloadsigf:                        FP Bit Twiddling.    (line 196)
* setpayloadsigfN:                       FP Bit Twiddling.    (line 198)
* setpayloadsigfNx:                      FP Bit Twiddling.    (line 199)
* setpayloadsigl:                        FP Bit Twiddling.    (line 197)
* setpgid:                               Process Group Functions.
                                                              (line  81)
* setpgrp:                               Process Group Functions.
                                                              (line 114)
* setpriority:                           Traditional Scheduling Functions.
                                                              (line  52)
* setprotoent:                           Protocols Database.  (line  75)
* setpwent:                              Scanning All Users.  (line  50)
* setregid:                              Setting Groups.      (line  45)
* setreuid:                              Setting User ID.     (line  55)
* setrlimit:                             Limits on Resources. (line  58)
* setrlimit64:                           Limits on Resources. (line  80)
* setservent:                            Services Database.   (line  66)
* setsid:                                Process Group Functions.
                                                              (line  10)
* setsockopt:                            Socket Option Functions.
                                                              (line  37)
* setstate:                              BSD Random.          (line  54)
* setstate_r:                            BSD Random.          (line 122)
* settimeofday:                          Setting and Adjusting the Time.
                                                              (line 315)
* setuid:                                Setting User ID.     (line  37)
* setutent:                              Manipulating the Database.
                                                              (line 125)
* setutxent:                             XPG Functions.       (line  85)
* setvbuf:                               Controlling Buffering.
                                                              (line  13)
* shm_open:                              Memory-mapped I/O.   (line 355)
* shm_unlink:                            Memory-mapped I/O.   (line 374)
* shutdown:                              Closing a Socket.    (line  16)
* sigabbrev_np:                          Signal Messages.     (line  62)
* sigaction:                             Advanced Signal Handling.
                                                              (line  40)
* sigaddset:                             Signal Sets.         (line  52)
* sigaltstack:                           Signal Stack.        (line  70)
* sigblock:                              BSD Signal Handling. (line  51)
* sigdelset:                             Signal Sets.         (line  67)
* sigdescr_np:                           Signal Messages.     (line  49)
* sigemptyset:                           Signal Sets.         (line  36)
* sigfillset:                            Signal Sets.         (line  44)
* siginterrupt:                          BSD Signal Handling. (line  20)
* sigismember:                           Signal Sets.         (line  80)
* siglongjmp:                            Non-Local Exits and Signals.
                                                              (line  34)
* sigmask:                               BSD Signal Handling. (line  34)
* signal:                                Basic Signal Handling.
                                                              (line  20)
* signbit:                               FP Bit Twiddling.    (line  31)
* significand:                           Normalization Functions.
                                                              (line  95)
* significandf:                          Normalization Functions.
                                                              (line  96)
* significandl:                          Normalization Functions.
                                                              (line  97)
* sigpause:                              BSD Signal Handling. (line  71)
* sigpending:                            Checking for Pending Signals.
                                                              (line   9)
* sigprocmask:                           Process Signal Mask. (line  20)
* sigsetjmp:                             Non-Local Exits and Signals.
                                                              (line  25)
* sigsetmask:                            BSD Signal Handling. (line  61)
* sigstack:                              Signal Stack.        (line 116)
* sigsuspend:                            Sigsuspend.          (line  11)
* sin:                                   Trig Functions.      (line  18)
* sincos:                                Trig Functions.      (line  63)
* sincosf:                               Trig Functions.      (line  64)
* sincosfN:                              Trig Functions.      (line  67)
* sincosfNx:                             Trig Functions.      (line  68)
* sincosl:                               Trig Functions.      (line  65)
* sinf:                                  Trig Functions.      (line  19)
* sinfN:                                 Trig Functions.      (line  21)
* sinfNx:                                Trig Functions.      (line  22)
* sinh:                                  Hyperbolic Functions.
                                                              (line   9)
* sinhf:                                 Hyperbolic Functions.
                                                              (line  10)
* sinhfN:                                Hyperbolic Functions.
                                                              (line  12)
* sinhfNx:                               Hyperbolic Functions.
                                                              (line  13)
* sinhl:                                 Hyperbolic Functions.
                                                              (line  11)
* sinl:                                  Trig Functions.      (line  20)
* sleep:                                 Sleeping.            (line  14)
* snprintf:                              Formatted Output Functions.
                                                              (line 100)
* socket:                                Creating a Socket.   (line   9)
* socketpair:                            Socket Pairs.        (line  13)
* sprintf:                               Formatted Output Functions.
                                                              (line  49)
* sqrt:                                  Exponents and Logarithms.
                                                              (line 196)
* sqrtf:                                 Exponents and Logarithms.
                                                              (line 197)
* sqrtfN:                                Exponents and Logarithms.
                                                              (line 199)
* sqrtfNx:                               Exponents and Logarithms.
                                                              (line 200)
* sqrtl:                                 Exponents and Logarithms.
                                                              (line 198)
* srand:                                 ISO Random.          (line  28)
* srand48:                               SVID Random.         (line 110)
* srand48_r:                             SVID Random.         (line 312)
* srandom:                               BSD Random.          (line  25)
* srandom_r:                             BSD Random.          (line 103)
* sscanf:                                Formatted Input Functions.
                                                              (line  55)
* ssignal:                               Basic Signal Handling.
                                                              (line 145)
* stat:                                  Reading Attributes.  (line  11)
* stat64:                                Reading Attributes.  (line  36)
* stime:                                 Setting and Adjusting the Time.
                                                              (line 283)
* stpcpy:                                Copying Strings and Arrays.
                                                              (line 248)
* stpncpy:                               Truncating Strings.  (line 101)
* strcasecmp:                            String/Array Comparison.
                                                              (line 127)
* strcasestr:                            Search Functions.    (line 217)
* strcat:                                Concatenating Strings.
                                                              (line  12)
* strchr:                                Search Functions.    (line  71)
* strchrnul:                             Search Functions.    (line 112)
* strcmp:                                String/Array Comparison.
                                                              (line  87)
* strcoll:                               Collation Functions. (line  39)
* strcpy:                                Copying Strings and Arrays.
                                                              (line 202)
* strcspn:                               Search Functions.    (line 276)
* strdup:                                Copying Strings and Arrays.
                                                              (line 224)
* strdupa:                               Copying Strings and Arrays.
                                                              (line 301)
* strerror:                              Error Messages.      (line  14)
* strerrordesc_np:                       Error Messages.      (line  86)
* strerrorname_np:                       Error Messages.      (line  75)
* strerror_r:                            Error Messages.      (line  32)
* strfmon:                               Formatting Numbers.  (line  15)
* strfromd:                              Printing of Floats.  (line   8)
* strfromf:                              Printing of Floats.  (line  10)
* strfromfN:                             Printing of Floats.  (line  43)
* strfromfNx:                            Printing of Floats.  (line  45)
* strfroml:                              Printing of Floats.  (line  12)
* strfry:                                Shuffling Bytes.     (line  15)
* strftime:                              Formatting Calendar Time.
                                                              (line  75)
* strlen:                                String Length.       (line   9)
* strncasecmp:                           String/Array Comparison.
                                                              (line 174)
* strncat:                               Truncating Strings.  (line 162)
* strncmp:                               String/Array Comparison.
                                                              (line 154)
* strncpy:                               Truncating Strings.  (line  13)
* strndup:                               Truncating Strings.  (line  62)
* strndupa:                              Truncating Strings.  (line  82)
* strnlen:                               String Length.       (line  86)
* strpbrk:                               Search Functions.    (line 308)
* strptime:                              Low-Level Time String Parsing.
                                                              (line  11)
* strrchr:                               Search Functions.    (line 153)
* strsep:                                Finding Tokens in a String.
                                                              (line 158)
* strsignal:                             Signal Messages.     (line  14)
* strspn:                                Search Functions.    (line 246)
* strstr:                                Search Functions.    (line 175)
* strtod:                                Parsing of Floats.   (line  13)
* strtof:                                Parsing of Floats.   (line  85)
* strtofN:                               Parsing of Floats.   (line 100)
* strtofNx:                              Parsing of Floats.   (line 101)
* strtoimax:                             Parsing of Integers. (line 203)
* strtok:                                Finding Tokens in a String.
                                                              (line  11)
* strtok_r:                              Finding Tokens in a String.
                                                              (line 140)
* strtol:                                Parsing of Integers. (line  13)
* strtold:                               Parsing of Floats.   (line  86)
* strtoll:                               Parsing of Integers. (line 114)
* strtoq:                                Parsing of Integers. (line 143)
* strtoul:                               Parsing of Integers. (line  84)
* strtoull:                              Parsing of Integers. (line 162)
* strtoumax:                             Parsing of Integers. (line 232)
* strtouq:                               Parsing of Integers. (line 184)
* strverscmp:                            String/Array Comparison.
                                                              (line 218)
* strxfrm:                               Collation Functions. (line  86)
* stty:                                  BSD Terminal Modes.  (line  41)
* success:                               Actions in the NSS configuration.
                                                              (line  21)
* SUN_LEN:                               Local Namespace Details.
                                                              (line  50)
* swapcontext:                           System V contexts.   (line 163)
* swprintf:                              Formatted Output Functions.
                                                              (line  74)
* swscanf:                               Formatted Input Functions.
                                                              (line  69)
* symlink:                               Symbolic Links.      (line  46)
* sync:                                  Synchronizing I/O.   (line  15)
* syscall:                               System Calls.        (line  39)
* sysconf:                               Sysconf Definition.  (line   6)
* syslog:                                syslog; vsyslog.     (line   9)
* system:                                Running a Command.   (line  11)
* sysv_signal:                           Basic Signal Handling.
                                                              (line 132)
* S_ISBLK:                               Testing File Type.   (line  41)
* S_ISCHR:                               Testing File Type.   (line  33)
* S_ISDIR:                               Testing File Type.   (line  26)
* S_ISFIFO:                              Testing File Type.   (line  56)
* S_ISLNK:                               Testing File Type.   (line  64)
* S_ISREG:                               Testing File Type.   (line  49)
* S_ISSOCK:                              Testing File Type.   (line  72)
* S_TYPEISMQ:                            Testing File Type.   (line 134)
* S_TYPEISSEM:                           Testing File Type.   (line 143)
* S_TYPEISSHM:                           Testing File Type.   (line 152)
* tan:                                   Trig Functions.      (line  42)
* tanf:                                  Trig Functions.      (line  43)
* tanfN:                                 Trig Functions.      (line  45)
* tanfNx:                                Trig Functions.      (line  46)
* tanh:                                  Hyperbolic Functions.
                                                              (line  37)
* tanhf:                                 Hyperbolic Functions.
                                                              (line  38)
* tanhfN:                                Hyperbolic Functions.
                                                              (line  40)
* tanhfNx:                               Hyperbolic Functions.
                                                              (line  41)
* tanhl:                                 Hyperbolic Functions.
                                                              (line  39)
* tanl:                                  Trig Functions.      (line  44)
* tcdrain:                               Line Control.        (line  38)
* tcflow:                                Line Control.        (line 108)
* tcflush:                               Line Control.        (line  67)
* tcgetattr:                             Mode Functions.      (line   6)
* tcgetpgrp:                             Terminal Access Functions.
                                                              (line  14)
* tcgetsid:                              Terminal Access Functions.
                                                              (line  82)
* tcsendbreak:                           Line Control.        (line  14)
* tcsetattr:                             Mode Functions.      (line  25)
* tcsetpgrp:                             Terminal Access Functions.
                                                              (line  43)
* tdelete:                               Tree Search Function.
                                                              (line  72)
* tdestroy:                              Tree Search Function.
                                                              (line  87)
* telldir:                               Random Access Directory.
                                                              (line  23)
* tempnam:                               Temporary Files.     (line 111)
* TEMP_FAILURE_RETRY:                    Interrupted Primitives.
                                                              (line  20)
* textdomain:                            Locating gettext catalog.
                                                              (line  69)
* tfind:                                 Tree Search Function.
                                                              (line  57)
* tgamma:                                Special Functions.   (line  88)
* tgammaf:                               Special Functions.   (line  89)
* tgammafN:                              Special Functions.   (line  91)
* tgammafNx:                             Special Functions.   (line  92)
* tgammal:                               Special Functions.   (line  90)
* tgkill:                                Signaling Another Process.
                                                              (line  83)
* thrd_create:                           ISO C Thread Management.
                                                              (line  24)
* thrd_current:                          ISO C Thread Management.
                                                              (line  37)
* thrd_detach:                           ISO C Thread Management.
                                                              (line  95)
* thrd_equal:                            ISO C Thread Management.
                                                              (line  44)
* thrd_exit:                             ISO C Thread Management.
                                                              (line  82)
* thrd_join:                             ISO C Thread Management.
                                                              (line 110)
* thrd_sleep:                            ISO C Thread Management.
                                                              (line  53)
* thrd_yield:                            ISO C Thread Management.
                                                              (line  74)
* time:                                  Getting the Time.    (line   9)
* timegm:                                Broken-down Time.    (line 195)
* timelocal:                             Broken-down Time.    (line 183)
* times:                                 Processor Time.      (line  49)
* tmpfile:                               Temporary Files.     (line  19)
* tmpfile64:                             Temporary Files.     (line  36)
* tmpnam:                                Temporary Files.     (line  52)
* tmpnam_r:                              Temporary Files.     (line  78)
* toascii:                               Case Conversion.     (line  40)
* tolower:                               Case Conversion.     (line  23)
* totalorder:                            FP Comparison Functions.
                                                              (line  89)
* totalorderf:                           FP Comparison Functions.
                                                              (line  90)
* totalorderfN:                          FP Comparison Functions.
                                                              (line  93)
* totalorderfNx:                         FP Comparison Functions.
                                                              (line  94)
* totalorderl:                           FP Comparison Functions.
                                                              (line  91)
* totalordermag:                         FP Comparison Functions.
                                                              (line 112)
* totalordermagf:                        FP Comparison Functions.
                                                              (line 113)
* totalordermagfN:                       FP Comparison Functions.
                                                              (line 116)
* totalordermagfNx:                      FP Comparison Functions.
                                                              (line 117)
* totalordermagl:                        FP Comparison Functions.
                                                              (line 114)
* toupper:                               Case Conversion.     (line  32)
* towctrans:                             Wide Character Case Conversion.
                                                              (line  38)
* towlower:                              Wide Character Case Conversion.
                                                              (line  53)
* towupper:                              Wide Character Case Conversion.
                                                              (line  68)
* trunc:                                 Rounding Functions.  (line  67)
* truncate:                              File Size.           (line  25)
* truncate64:                            File Size.           (line  66)
* truncf:                                Rounding Functions.  (line  68)
* truncfN:                               Rounding Functions.  (line  70)
* truncfNx:                              Rounding Functions.  (line  71)
* truncl:                                Rounding Functions.  (line  69)
* tryagain:                              Actions in the NSS configuration.
                                                              (line  35)
* tsearch:                               Tree Search Function.
                                                              (line  26)
* tss_create:                            ISO C Thread-local Storage.
                                                              (line  46)
* tss_delete:                            ISO C Thread-local Storage.
                                                              (line  86)
* tss_get:                               ISO C Thread-local Storage.
                                                              (line  76)
* tss_set:                               ISO C Thread-local Storage.
                                                              (line  65)
* ttyname:                               Is It a Terminal.    (line  25)
* ttyname_r:                             Is It a Terminal.    (line  37)
* twalk:                                 Tree Search Function.
                                                              (line 138)
* twalk_r:                               Tree Search Function.
                                                              (line 162)
* tzset:                                 Time Zone Functions. (line  32)
* ufromfp:                               Rounding Functions.  (line 193)
* ufromfpf:                              Rounding Functions.  (line 195)
* ufromfpfN:                             Rounding Functions.  (line 199)
* ufromfpfNx:                            Rounding Functions.  (line 201)
* ufromfpl:                              Rounding Functions.  (line 197)
* ufromfpx:                              Rounding Functions.  (line 211)
* ufromfpxf:                             Rounding Functions.  (line 213)
* ufromfpxfN:                            Rounding Functions.  (line 217)
* ufromfpxfNx:                           Rounding Functions.  (line 219)
* ufromfpxl:                             Rounding Functions.  (line 215)
* ulimit:                                Limits on Resources. (line 206)
* umask:                                 Setting Permissions. (line  42)
* umount:                                Mount-Unmount-Remount.
                                                              (line 234)
* umount2:                               Mount-Unmount-Remount.
                                                              (line 178)
* uname:                                 Platform Type.       (line  69)
* unavail:                               Actions in the NSS configuration.
                                                              (line  29)
* ungetc:                                How Unread.          (line   9)
* ungetwc:                               How Unread.          (line  48)
* unlink:                                Deleting Files.      (line  12)
* unlockpt:                              Allocation.          (line  61)
* unsetenv:                              Environment Access.  (line  91)
* updwtmp:                               Manipulating the Database.
                                                              (line 327)
* utime:                                 File Times.          (line  50)
* utimes:                                File Times.          (line  99)
* utmpname:                              Manipulating the Database.
                                                              (line 300)
* utmpxname:                             XPG Functions.       (line 137)
* valloc:                                Aligned Memory Blocks.
                                                              (line  86)
* vasprintf:                             Variable Arguments Output.
                                                              (line 116)
* va_arg:                                Argument Macros.     (line  22)
* va_copy:                               Argument Macros.     (line  56)
* va_end:                                Argument Macros.     (line  36)
* va_start:                              Argument Macros.     (line  13)
* verr:                                  Error Messages.      (line 369)
* verrx:                                 Error Messages.      (line 389)
* versionsort:                           Scanning Directory Content.
                                                              (line  57)
* versionsort64:                         Scanning Directory Content.
                                                              (line 109)
* vfork:                                 Creating a Process.  (line  62)
* vfprintf:                              Variable Arguments Output.
                                                              (line  72)
* vfscanf:                               Variable Arguments Input.
                                                              (line  35)
* vfwprintf:                             Variable Arguments Output.
                                                              (line  81)
* vfwscanf:                              Variable Arguments Input.
                                                              (line  44)
* vlimit:                                Limits on Resources. (line 246)
* vprintf:                               Variable Arguments Output.
                                                              (line  54)
* vscanf:                                Variable Arguments Input.
                                                              (line  17)
* vsnprintf:                             Variable Arguments Output.
                                                              (line 107)
* vsprintf:                              Variable Arguments Output.
                                                              (line  90)
* vsscanf:                               Variable Arguments Input.
                                                              (line  53)
* vswprintf:                             Variable Arguments Output.
                                                              (line  98)
* vswscanf:                              Variable Arguments Input.
                                                              (line  62)
* vsyslog:                               syslog; vsyslog.     (line 124)
* vwarn:                                 Error Messages.      (line 330)
* vwarnx:                                Error Messages.      (line 350)
* vwprintf:                              Variable Arguments Output.
                                                              (line  63)
* vwscanf:                               Variable Arguments Input.
                                                              (line  26)
* wait:                                  Process Completion.  (line 107)
* wait3:                                 BSD Wait Functions.  (line  11)
* wait4:                                 Process Completion.  (line 128)
* waitpid:                               Process Completion.  (line  10)
* warn:                                  Error Messages.      (line 320)
* warnx:                                 Error Messages.      (line 339)
* WCOREDUMP:                             Process Completion Status.
                                                              (line  46)
* wcpcpy:                                Copying Strings and Arrays.
                                                              (line 283)
* wcpncpy:                               Truncating Strings.  (line 130)
* wcrtomb:                               Converting a Character.
                                                              (line 292)
* wcscasecmp:                            String/Array Comparison.
                                                              (line 141)
* wcscat:                                Concatenating Strings.
                                                              (line  36)
* wcschr:                                Search Functions.    (line  96)
* wcschrnul:                             Search Functions.    (line 123)
* wcscmp:                                String/Array Comparison.
                                                              (line 107)
* wcscoll:                               Collation Functions. (line  48)
* wcscpy:                                Copying Strings and Arrays.
                                                              (line 213)
* wcscspn:                               Search Functions.    (line 295)
* wcsdup:                                Copying Strings and Arrays.
                                                              (line 235)
* wcsftime:                              Formatting Calendar Time.
                                                              (line 459)
* wcslen:                                String Length.       (line  70)
* wcsncasecmp:                           String/Array Comparison.
                                                              (line 186)
* wcsncat:                               Truncating Strings.  (line 193)
* wcsncmp:                               String/Array Comparison.
                                                              (line 163)
* wcsncpy:                               Truncating Strings.  (line  38)
* wcsnlen:                               String Length.       (line 106)
* wcsnrtombs:                            Converting Strings.  (line 206)
* wcspbrk:                               Search Functions.    (line 328)
* wcsrchr:                               Search Functions.    (line 166)
* wcsrtombs:                             Converting Strings.  (line  99)
* wcsspn:                                Search Functions.    (line 264)
* wcsstr:                                Search Functions.    (line 192)
* wcstod:                                Parsing of Floats.   (line 111)
* wcstof:                                Parsing of Floats.   (line 113)
* wcstofN:                               Parsing of Floats.   (line 116)
* wcstofNx:                              Parsing of Floats.   (line 117)
* wcstoimax:                             Parsing of Integers. (line 221)
* wcstok:                                Finding Tokens in a String.
                                                              (line  53)
* wcstol:                                Parsing of Integers. (line  73)
* wcstold:                               Parsing of Floats.   (line 114)
* wcstoll:                               Parsing of Integers. (line 132)
* wcstombs:                              Non-reentrant String Conversion.
                                                              (line  60)
* wcstoq:                                Parsing of Integers. (line 151)
* wcstoul:                               Parsing of Integers. (line 103)
* wcstoull:                              Parsing of Integers. (line 173)
* wcstoumax:                             Parsing of Integers. (line 244)
* wcstouq:                               Parsing of Integers. (line 192)
* wcswcs:                                Search Functions.    (line 205)
* wcsxfrm:                               Collation Functions. (line 118)
* wctob:                                 Converting a Character.
                                                              (line  68)
* wctomb:                                Non-reentrant Character Conversion.
                                                              (line  41)
* wctrans:                               Wide Character Case Conversion.
                                                              (line  20)
* wctype:                                Classification of Wide Characters.
                                                              (line  38)
* WEXITSTATUS:                           Process Completion Status.
                                                              (line  20)
* WIFEXITED:                             Process Completion Status.
                                                              (line  12)
* WIFSIGNALED:                           Process Completion Status.
                                                              (line  29)
* WIFSTOPPED:                            Process Completion Status.
                                                              (line  54)
* wmemchr:                               Search Functions.    (line  20)
* wmemcmp:                               String/Array Comparison.
                                                              (line  37)
* wmemcpy:                               Copying Strings and Arrays.
                                                              (line  53)
* wmemmove:                              Copying Strings and Arrays.
                                                              (line 146)
* wmempcpy:                              Copying Strings and Arrays.
                                                              (line 105)
* wmemset:                               Copying Strings and Arrays.
                                                              (line 192)
* wordexp:                               Calling Wordexp.     (line  40)
* wordfree:                              Calling Wordexp.     (line 101)
* wprintf:                               Formatted Output Functions.
                                                              (line  23)
* write:                                 I/O Primitives.      (line 168)
* writev:                                Scatter-Gather.      (line  48)
* wscanf:                                Formatted Input Functions.
                                                              (line  24)
* WSTOPSIG:                              Process Completion Status.
                                                              (line  61)
* WTERMSIG:                              Process Completion Status.
                                                              (line  38)
* y0:                                    Special Functions.   (line 146)
* y0f:                                   Special Functions.   (line 147)
* y0fN:                                  Special Functions.   (line 149)
* y0fNx:                                 Special Functions.   (line 150)
* y0l:                                   Special Functions.   (line 148)
* y1:                                    Special Functions.   (line 162)
* y1f:                                   Special Functions.   (line 163)
* y1fN:                                  Special Functions.   (line 165)
* y1fNx:                                 Special Functions.   (line 166)
* y1l:                                   Special Functions.   (line 164)
* yn:                                    Special Functions.   (line 178)
* ynf:                                   Special Functions.   (line 179)
* ynfN:                                  Special Functions.   (line 181)
* ynfNx:                                 Special Functions.   (line 182)
* ynl:                                   Special Functions.   (line 180)