summaryrefslogtreecommitdiff
path: root/tags
blob: 9b0c655263fdf29ddb4ca13fb4914468010c27e2 (plain)
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
!_TAG_FILE_FORMAT	2	/extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED	1	/0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR	Darren Hiebert	/dhiebert@users.sourceforge.net/
!_TAG_PROGRAM_NAME	Exuberant Ctags	//
!_TAG_PROGRAM_URL	http://ctags.sourceforge.net	/official site/
!_TAG_PROGRAM_VERSION	5.9~svn20110310	//
ABDAY_1	src/langinfo/ABDAY_1.c	2;"	d	file:
ABDAY_2	src/langinfo/ABDAY_2.c	2;"	d	file:
ABDAY_3	src/langinfo/ABDAY_3.c	2;"	d	file:
ABDAY_4	src/langinfo/ABDAY_4.c	2;"	d	file:
ABDAY_5	src/langinfo/ABDAY_5.c	2;"	d	file:
ABDAY_6	src/langinfo/ABDAY_6.c	2;"	d	file:
ABDAY_7	src/langinfo/ABDAY_7.c	2;"	d	file:
ABMON_1	src/langinfo/ABMON_1.c	2;"	d	file:
ABMON_10	src/langinfo/ABMON_10.c	2;"	d	file:
ABMON_11	src/langinfo/ABMON_11.c	2;"	d	file:
ABMON_12	src/langinfo/ABMON_12.c	2;"	d	file:
ABMON_2	src/langinfo/ABMON_2.c	2;"	d	file:
ABMON_3	src/langinfo/ABMON_3.c	2;"	d	file:
ABMON_4	src/langinfo/ABMON_4.c	2;"	d	file:
ABMON_5	src/langinfo/ABMON_5.c	2;"	d	file:
ABMON_6	src/langinfo/ABMON_6.c	2;"	d	file:
ABMON_7	src/langinfo/ABMON_7.c	2;"	d	file:
ABMON_8	src/langinfo/ABMON_8.c	2;"	d	file:
ABMON_9	src/langinfo/ABMON_9.c	2;"	d	file:
ACTION	src/search/ACTION.c	/^} ACTION;$/;"	t	typeref:enum:__anon13	file:
ALLOCED	src/nonstd/struct_FILE.c	/^	enum { SUPPLIED, ALLOCED, UNSET } buftype;$/;"	e	enum:__FILE::__anon6	file:
ALPHA	src/nonstd/ctype_t.c	/^	ALPHA = (1 << 0),$/;"	e	enum:__anon5	file:
ALT_DIGITS	src/langinfo/ALT_DIGITS.c	2;"	d	file:
AM_STR	src/langinfo/AM_STR.c	2;"	d	file:
ANYMARK	src/stropts/ANYMARK.c	2;"	d	file:
AREGTYPE	src/tar/AREGTYPE.c	3;"	d	file:
ASSERT_NONNULL	src/nonstd/ASSERT_NONNULL.c	13;"	d	file:
ASSERT_NONNULL	src/nonstd/ASSERT_NONNULL.c	4;"	d	file:
ASSERT_NONZERO	src/nonstd/ASSERT_NONZERO.c	13;"	d	file:
ASSERT_NONZERO	src/nonstd/ASSERT_NONZERO.c	4;"	d	file:
ASSERT_NOOVERLAP	src/nonstd/ASSERT_NOOVERLAP.c	4;"	d	file:
ASSERT_NOOVERLAP	src/nonstd/ASSERT_NOOVERLAP.c	8;"	d	file:
ASSERT_REPRESENTABLE	src/nonstd/ASSERT_REPRESENTABLE.c	20;"	d	file:
ASSERT_REPRESENTABLE	src/nonstd/ASSERT_REPRESENTABLE.c	4;"	d	file:
ATEXIT	src/nonstd/LIBC_INTERNAL.c	/^	ATEXIT,$/;"	e	enum:__anon4	file:
B0	src/termios/B0.c	2;"	d	file:
B110	src/termios/B110.c	2;"	d	file:
B1200	src/termios/B1200.c	2;"	d	file:
B134	src/termios/B134.c	2;"	d	file:
B150	src/termios/B150.c	2;"	d	file:
B1800	src/termios/B1800.c	2;"	d	file:
B19200	src/termios/B19200.c	2;"	d	file:
B200	src/termios/B200.c	2;"	d	file:
B2400	src/termios/B2400.c	2;"	d	file:
B300	src/termios/B300.c	2;"	d	file:
B38400	src/termios/B38400.c	2;"	d	file:
B4800	src/termios/B4800.c	2;"	d	file:
B50	src/termios/B50.c	2;"	d	file:
B600	src/termios/B600.c	2;"	d	file:
B75	src/termios/B75.c	2;"	d	file:
B9600	src/termios/B9600.c	2;"	d	file:
BC_BASE_MAX	src/limits/BC_BASE_MAX.c	2;"	d	file:
BC_DIM_MAX	src/limits/BC_DIM_MAX.c	2;"	d	file:
BC_SCALE_MAX	src/limits/BC_SCALE_MAX.c	2;"	d	file:
BC_STRING_MAX	src/limits/BC_STRING_MAX.c	2;"	d	file:
BLANK	src/nonstd/ctype_t.c	/^	BLANK = (1 << 10),$/;"	e	enum:__anon5	file:
BLKTYPE	src/tar/BLKTYPE.c	3;"	d	file:
BOOT_TIME	src/utmpx/BOOT_TIME.c	2;"	d	file:
BRKINT	src/termios/BRKINT.c	2;"	d	file:
BS0	src/termios/BS0.c	2;"	d	file:
BS1	src/termios/BS1.c	2;"	d	file:
BSDLY	src/termios/BSDLY.c	2;"	d	file:
BUFSIZ	src/stdio/BUFSIZ.c	2;"	d	file:
BUS_ADRALN	src/signal/BUS_ADRALN.c	2;"	d	file:
BUS_ADRERR	src/signal/BUS_ADRERR.c	2;"	d	file:
BUS_OBJERR	src/signal/BUS_OBJERR.c	2;"	d	file:
CHARCLASS_NAME_MAX	src/limits/CHARCLASS_NAME_MAX.c	2;"	d	file:
CHAR_BIT	src/limits/CHAR_BIT.c	2;"	d	file:
CHAR_MAX	src/limits/CHAR_MAX.c	3;"	d	file:
CHAR_MAX	src/limits/CHAR_MAX.c	5;"	d	file:
CHAR_MIN	src/limits/CHAR_MIN.c	3;"	d	file:
CHAR_MIN	src/limits/CHAR_MIN.c	5;"	d	file:
CHRTYPE	src/tar/CHRTYPE.c	3;"	d	file:
CLD_CONTINUED	src/signal/CLD_CONTINUED.c	2;"	d	file:
CLD_DUMPED	src/signal/CLD_DUMPED.c	2;"	d	file:
CLD_EXITED	src/signal/CLD_EXITED.c	2;"	d	file:
CLD_KILLED	src/signal/CLD_KILLED.c	2;"	d	file:
CLD_STOPPED	src/signal/CLD_STOPPED.c	2;"	d	file:
CLD_TRAPPED	src/signal/CLD_TRAPPED.c	2;"	d	file:
CLK_TCK	src/time/CLK_TCK.c	2;"	d	file:
CLOCAL	src/termios/CLOCAL.c	2;"	d	file:
CLOCKS_PER_SEC	src/time/CLOCKS_PER_SEC.c	2;"	d	file:
CNTRL	src/nonstd/ctype_t.c	/^	CNTRL = (1 << 1),$/;"	e	enum:__anon5	file:
CODESET	src/langinfo/CODESET.c	2;"	d	file:
COLL_WEIGHTS_MAX	src/limits/COLL_WEIGHTS_MAX.c	2;"	d	file:
CONTTYPE	src/tar/CONTTYPE.c	3;"	d	file:
CR0	src/termios/CR0.c	2;"	d	file:
CR1	src/termios/CR1.c	2;"	d	file:
CR2	src/termios/CR2.c	2;"	d	file:
CR3	src/termios/CR3.c	2;"	d	file:
CRDLY	src/termios/CRDLY.c	2;"	d	file:
CREAD	src/termios/CREAD.c	2;"	d	file:
CRNCYSTR	src/langinfo/CRNCYSTR.c	2;"	d	file:
CS5	src/termios/CS5.c	2;"	d	file:
CS6	src/termios/CS6.c	2;"	d	file:
CS7	src/termios/CS7.c	2;"	d	file:
CS8	src/termios/CS8.c	2;"	d	file:
CSIZE	src/termios/CSIZE.c	2;"	d	file:
CSTOPB	src/termios/CSTOPB.c	2;"	d	file:
CTYPE	src/nonstd/LIBC_INTERNAL.c	/^	CTYPE,$/;"	e	enum:__anon4	file:
C_IRGRP	src/cpio/C_IRGRP.c	2;"	d	file:
C_IROTH	src/cpio/C_IROTH.c	2;"	d	file:
C_IRUSR	src/cpio/C_IRUSR.c	2;"	d	file:
C_ISBLK	src/cpio/C_ISBLK.c	2;"	d	file:
C_ISCHR	src/cpio/C_ISCHR.c	2;"	d	file:
C_ISCTG	src/cpio/C_ISCTG.c	2;"	d	file:
C_ISDIR	src/cpio/C_ISDIR.c	2;"	d	file:
C_ISFIFO	src/cpio/C_ISFIFO.c	2;"	d	file:
C_ISGID	src/cpio/C_ISGID.c	2;"	d	file:
C_ISLNK	src/cpio/C_ISLNK.c	2;"	d	file:
C_ISREG	src/cpio/C_ISREG.c	2;"	d	file:
C_ISSOCK	src/cpio/C_ISSOCK.c	2;"	d	file:
C_ISUID	src/cpio/C_ISUID.c	2;"	d	file:
C_ISVTX	src/cpio/C_ISVTX.c	2;"	d	file:
C_IWGRP	src/cpio/C_IWGRP.c	2;"	d	file:
C_IWOTH	src/cpio/C_IWOTH.c	2;"	d	file:
C_IWUSR	src/cpio/C_IWUSR.c	2;"	d	file:
C_IXGRP	src/cpio/C_IXGRP.c	2;"	d	file:
C_IXOTH	src/cpio/C_IXOTH.c	2;"	d	file:
C_IXUSR	src/cpio/C_IXUSR.c	2;"	d	file:
DAY_1	src/langinfo/DAY_1.c	2;"	d	file:
DAY_2	src/langinfo/DAY_2.c	2;"	d	file:
DAY_3	src/langinfo/DAY_3.c	2;"	d	file:
DAY_4	src/langinfo/DAY_4.c	2;"	d	file:
DAY_5	src/langinfo/DAY_5.c	2;"	d	file:
DAY_6	src/langinfo/DAY_6.c	2;"	d	file:
DAY_7	src/langinfo/DAY_7.c	2;"	d	file:
DAY_PER_YEAR	src/time/gmtime.c	9;"	d	file:
DBL_DIG	src/float/DBL_DIG.c	2;"	d	file:
DBL_EPSILON	src/float/DBL_EPSILON.c	2;"	d	file:
DBL_MANT_DIG	src/float/DBL_MANT_DIG.c	2;"	d	file:
DBL_MAX	src/float/DBL_MAX.c	2;"	d	file:
DBL_MAX_10_EXP	src/float/DBL_MAX_10_EXP.c	2;"	d	file:
DBL_MAX_EXP	src/float/DBL_MAX_EXP.c	2;"	d	file:
DBL_MIN	src/float/DBL_MIN.c	2;"	d	file:
DBL_MIN_10_EXP	src/float/DBL_MIN_10_EXP.c	2;"	d	file:
DBL_MIN_EXP	src/float/DBL_MIN_EXP.c	2;"	d	file:
DBM	src/ndbm/DBM.c	/^typedef struct __DBM                                                        DBM;$/;"	t	typeref:struct:__DBM	file:
DBM_INSERT	src/ndbm/DBM_INSERT.c	2;"	d	file:
DBM_REPLACE	src/ndbm/DBM_REPLACE.c	2;"	d	file:
DEAD_PROCESS	src/utmpx/DEAD_PROCESS.c	2;"	d	file:
DECIMAL_DIG	src/float/DECIMAL_DIG.c	3;"	d	file:
DIGIT	src/nonstd/ctype_t.c	/^	DIGIT = (1 << 2),$/;"	e	enum:__anon5	file:
DIR	src/dirent/DIR.c	/^typedef struct __DIR                                                        DIR;$/;"	t	typeref:struct:__DIR	file:
DIRTYPE	src/tar/DIRTYPE.c	3;"	d	file:
D_FMT	src/langinfo/D_FMT.c	2;"	d	file:
D_T_FMT	src/langinfo/D_T_FMT.c	2;"	d	file:
E2BIG	src/errno/E2BIG.c	3;"	d	file:
EACCES	src/errno/EACCES.c	3;"	d	file:
EADDRINUSE	src/errno/EADDRINUSE.c	2;"	d	file:
EADDRNOTAVAIL	src/errno/EADDRNOTAVAIL.c	2;"	d	file:
EAFNOSUPPORT	src/errno/EAFNOSUPPORT.c	2;"	d	file:
EAGAIN	src/errno/EAGAIN.c	3;"	d	file:
EALREADY	src/errno/EALREADY.c	2;"	d	file:
EBADF	src/errno/EBADF.c	3;"	d	file:
EBADMSG	src/errno/EBADMSG.c	2;"	d	file:
EBUSY	src/errno/EBUSY.c	3;"	d	file:
ECHILD	src/errno/ECHILD.c	3;"	d	file:
ECHO	src/termios/ECHO.c	2;"	d	file:
ECHOE	src/termios/ECHOE.c	2;"	d	file:
ECHOK	src/termios/ECHOK.c	2;"	d	file:
ECHONL	src/termios/ECHONL.c	2;"	d	file:
ECONNABORTED	src/errno/ECONNABORTED.c	2;"	d	file:
ECONNREFUSED	src/errno/ECONNREFUSED.c	2;"	d	file:
ECONNRESET	src/errno/ECONNRESET.c	2;"	d	file:
EDEADLK	src/errno/EDEADLK.c	3;"	d	file:
EDESTADDRREQ	src/errno/EDESTADDRREQ.c	2;"	d	file:
EDOM	src/errno/EDOM.c	2;"	d	file:
EDQUOT	src/errno/EDQUOT.c	2;"	d	file:
EEXIST	src/errno/EEXIST.c	3;"	d	file:
EFAULT	src/errno/EFAULT.c	3;"	d	file:
EFBIG	src/errno/EFBIG.c	3;"	d	file:
EHOSTUNREACH	src/errno/EHOSTUNREACH.c	2;"	d	file:
EIDRM	src/errno/EIDRM.c	2;"	d	file:
EILSEQ	src/errno/EILSEQ.c	2;"	d	file:
EINPROGRESS	src/errno/EINPROGRESS.c	2;"	d	file:
EINTR	src/errno/EINTR.c	3;"	d	file:
EINVAL	src/errno/EINVAL.c	3;"	d	file:
EIO	src/errno/EIO.c	3;"	d	file:
EISCONN	src/errno/EISCONN.c	2;"	d	file:
EISDIR	src/errno/EISDIR.c	3;"	d	file:
ELOOP	src/errno/ELOOP.c	2;"	d	file:
EMFILE	src/errno/EMFILE.c	3;"	d	file:
EMLINK	src/errno/EMLINK.c	3;"	d	file:
EMPTY	src/utmpx/EMPTY.c	2;"	d	file:
EMSGSIZE	src/errno/EMSGSIZE.c	2;"	d	file:
EMULTIHOP	src/errno/EMULTIHOP.c	2;"	d	file:
ENAMETOOLONG	src/errno/ENAMETOOLONG.c	3;"	d	file:
ENETDOWN	src/errno/ENETDOWN.c	2;"	d	file:
ENETUNREACH	src/errno/ENETUNREACH.c	2;"	d	file:
ENFILE	src/errno/ENFILE.c	3;"	d	file:
ENOBUFS	src/errno/ENOBUFS.c	2;"	d	file:
ENODATA	src/errno/ENODATA.c	2;"	d	file:
ENODEV	src/errno/ENODEV.c	3;"	d	file:
ENOENT	src/errno/ENOENT.c	3;"	d	file:
ENOEXEC	src/errno/ENOEXEC.c	3;"	d	file:
ENOLCK	src/errno/ENOLCK.c	3;"	d	file:
ENOLINK	src/errno/ENOLINK.c	2;"	d	file:
ENOMEM	src/errno/ENOMEM.c	3;"	d	file:
ENOMSG	src/errno/ENOMSG.c	2;"	d	file:
ENOPROTOOPT	src/errno/ENOPROTOOPT.c	2;"	d	file:
ENOSPC	src/errno/ENOSPC.c	3;"	d	file:
ENOSR	src/errno/ENOSR.c	2;"	d	file:
ENOSTR	src/errno/ENOSTR.c	2;"	d	file:
ENOSYS	src/errno/ENOSYS.c	3;"	d	file:
ENOTCONN	src/errno/ENOTCONN.c	2;"	d	file:
ENOTDIR	src/errno/ENOTDIR.c	3;"	d	file:
ENOTEMPTY	src/errno/ENOTEMPTY.c	3;"	d	file:
ENOTSOCK	src/errno/ENOTSOCK.c	2;"	d	file:
ENOTTY	src/errno/ENOTTY.c	3;"	d	file:
ENTER	src/search/ACTION.c	/^	ENTER$/;"	e	enum:__anon13	file:
ENTRY	src/search/ENTRY.c	/^} ENTRY;$/;"	t	typeref:struct:__anon14	file:
ENXIO	src/errno/ENXIO.c	3;"	d	file:
EOF	src/stdio/EOF.c	2;"	d	file:
EOPNOTSUPP	src/errno/EOPNOTSUPP.c	2;"	d	file:
EOVERFLOW	src/errno/EOVERFLOW.c	2;"	d	file:
EPERM	src/errno/EPERM.c	3;"	d	file:
EPIPE	src/errno/EPIPE.c	3;"	d	file:
EPOCH_YEAR	src/time/gmtime.c	12;"	d	file:
EPROTO	src/errno/EPROTO.c	2;"	d	file:
EPROTONOSUPPORT	src/errno/EPROTONOSUPPORT.c	2;"	d	file:
EPROTOTYPE	src/errno/EPROTOTYPE.c	2;"	d	file:
ERA	src/langinfo/ERA.c	2;"	d	file:
ERANGE	src/errno/ERANGE.c	2;"	d	file:
ERA_D_FMT	src/langinfo/ERA_D_FMT.c	2;"	d	file:
ERA_D_T_FMT	src/langinfo/ERA_D_T_FMT.c	2;"	d	file:
ERA_T_FMT	src/langinfo/ERA_T_FMT.c	2;"	d	file:
EROFS	src/errno/EROFS.c	3;"	d	file:
ERRNO	src/nonstd/LIBC_INTERNAL.c	/^	ERRNO,$/;"	e	enum:__anon4	file:
ERROR	src/regexp/ERROR.c	1;"	d	file:
ESPIPE	src/errno/ESPIPE.c	3;"	d	file:
ESRCH	src/errno/ESRCH.c	3;"	d	file:
ESTALE	src/errno/ESTALE.c	2;"	d	file:
ETIME	src/errno/ETIME.c	2;"	d	file:
ETIMEDOUT	src/errno/ETIMEDOUT.c	2;"	d	file:
ETXTBSY	src/errno/ETXTBSY.c	2;"	d	file:
EWOULDBLOCK	src/errno/EWOULDBLOCK.c	2;"	d	file:
EXDEV	src/errno/EXDEV.c	3;"	d	file:
EXIT_FAILURE	src/stdlib/EXIT_FAILURE.c	5;"	d	file:
EXIT_SUCCESS	src/stdlib/EXIT_SUCCESS.c	5;"	d	file:
EXPR_NEST_MAX	src/limits/EXPR_NEST_MAX.c	2;"	d	file:
FD_CLOEXEC	src/fcntl/FD_CLOEXEC.c	3;"	d	file:
FD_CLR	src/sys/time/FD_CLR.c	2;"	d	file:
FD_ISSET	src/sys/time/FD_ISSET.c	2;"	d	file:
FD_SET	src/sys/time/FD_SET.c	2;"	d	file:
FD_SETSIZE	src/sys/time/FD_SETSIZE.c	2;"	d	file:
FD_ZERO	src/sys/time/FD_ZERO.c	2;"	d	file:
FE_ALL_EXCEPT	src/fenv/FE_ALL_EXCEPT.c	3;"	d	file:
FE_DFL_ENV	src/fenv/FE_DFL_ENV.c	3;"	d	file:
FE_DIVBYZERO	src/fenv/FE_DIVBYZERO.c	6;"	d	file:
FE_DOWNWARD	src/fenv/FE_DOWNWARD.c	6;"	d	file:
FE_INEXACT	src/fenv/FE_INEXACT.c	6;"	d	file:
FE_INVALID	src/fenv/FE_INVALID.c	6;"	d	file:
FE_OVERFLOW	src/fenv/FE_OVERFLOW.c	6;"	d	file:
FE_TONEAREST	src/fenv/FE_TONEAREST.c	6;"	d	file:
FE_TOWARDZERO	src/fenv/FE_TOWARDZERO.c	6;"	d	file:
FE_UNDERFLOW	src/fenv/FE_UNDERFLOW.c	6;"	d	file:
FE_UPWARD	src/fenv/FE_UPWARD.c	6;"	d	file:
FF0	src/termios/FF0.c	2;"	d	file:
FF1	src/termios/FF1.c	2;"	d	file:
FFDLY	src/termios/FFDLY.c	2;"	d	file:
FIFOTYPE	src/tar/FIFOTYPE.c	3;"	d	file:
FILE	src/stdio/FILE.c	/^typedef struct __FILE                                                      FILE;$/;"	t	typeref:struct:__FILE	file:
FILENAME_MAX	src/stdio/FILENAME_MAX.c	2;"	d	file:
FILE_TAIL	src/nonstd/LIBC_INTERNAL.c	/^	FILE_TAIL,$/;"	e	enum:__anon4	file:
FIND	src/search/ACTION.c	/^	FIND,$/;"	e	enum:__anon13	file:
FLT_DIG	src/float/FLT_DIG.c	2;"	d	file:
FLT_EPSILON	src/float/FLT_EPSILON.c	2;"	d	file:
FLT_EVAL_METHOD	src/float/FLT_EVAL_METHOD.c	3;"	d	file:
FLT_MANT_DIG	src/float/FLT_MANT_DIG.c	2;"	d	file:
FLT_MAX	src/float/FLT_MAX.c	2;"	d	file:
FLT_MAX_10_EXP	src/float/FLT_MAX_10_EXP.c	2;"	d	file:
FLT_MAX_EXP	src/float/FLT_MAX_EXP.c	2;"	d	file:
FLT_MIN	src/float/FLT_MIN.c	2;"	d	file:
FLT_MIN_10_EXP	src/float/FLT_MIN_10_EXP.c	2;"	d	file:
FLT_MIN_EXP	src/float/FLT_MIN_EXP.c	2;"	d	file:
FLT_RADIX	src/float/FLT_RADIX.c	2;"	d	file:
FLT_ROUNDS	src/float/FLT_ROUNDS.c	3;"	d	file:
FLUSHR	src/stropts/FLUSHR.c	2;"	d	file:
FLUSHRW	src/stropts/FLUSHRW.c	2;"	d	file:
FLUSHW	src/stropts/FLUSHW.c	2;"	d	file:
FMNAMESZ	src/stropts/FMNAMESZ.c	2;"	d	file:
FNM_NOESCAPE	src/fnmatch/FNM_NOESCAPE.c	2;"	d	file:
FNM_NOMATCH	src/fnmatch/FNM_NOMATCH.c	2;"	d	file:
FNM_NOSYS	src/fnmatch/FNM_NOSYS.c	2;"	d	file:
FNM_PATHNAME	src/fnmatch/FNM_PATHNAME.c	2;"	d	file:
FNM_PERIOD	src/fnmatch/FNM_PERIOD.c	2;"	d	file:
FOPEN	src/nonstd/LIBC_INTERNAL.c	/^	FOPEN,$/;"	e	enum:__anon4	file:
FOPEN_MAX	src/stdio/FOPEN_MAX.c	2;"	d	file:
FPE_FLTDIV	src/signal/FPE_FLTDIV.c	2;"	d	file:
FPE_FLTINV	src/signal/FPE_FLTINV.c	2;"	d	file:
FPE_FLTOVF	src/signal/FPE_FLTOVF.c	2;"	d	file:
FPE_FLTRES	src/signal/FPE_FLTRES.c	2;"	d	file:
FPE_FLTSUB	src/signal/FPE_FLTSUB.c	2;"	d	file:
FPE_FLTUND	src/signal/FPE_FLTUND.c	2;"	d	file:
FPE_INTDIV	src/signal/FPE_INTDIV.c	2;"	d	file:
FPE_INTOVF	src/signal/FPE_INTOVF.c	2;"	d	file:
FP_FAST_FMA	src/math/FP_FAST_FMA.c	6;"	d	file:
FP_FAST_FMAF	src/math/FP_FAST_FMAF.c	6;"	d	file:
FP_FAST_FMAL	src/math/FP_FAST_FMAL.c	6;"	d	file:
FP_ILOGB0	src/math/FP_ILOGB0.c	2;"	d	file:
FP_ILOGBNAN	src/math/FP_ILOGBNAN.c	2;"	d	file:
FP_INFINITE	src/math/FP_INFINITE.c	2;"	d	file:
FP_NAN	src/math/FP_NAN.c	2;"	d	file:
FP_NORMAL	src/math/FP_NORMAL.c	2;"	d	file:
FP_SUBNORMAL	src/math/FP_SUBNORMAL.c	2;"	d	file:
FP_ZERO	src/math/FP_ZERO.c	2;"	d	file:
FTW	src/ftw/struct_FTW.c	/^struct FTW {$/;"	s	file:
FTW_CHDIR	src/ftw/FTW_CHDIR.c	2;"	d	file:
FTW_D	src/ftw/FTW_D.c	2;"	d	file:
FTW_DEPTH	src/ftw/FTW_DEPTH.c	2;"	d	file:
FTW_DNR	src/ftw/FTW_DNR.c	2;"	d	file:
FTW_F	src/ftw/FTW_F.c	2;"	d	file:
FTW_MOUNT	src/ftw/FTW_MOUNT.c	2;"	d	file:
FTW_NS	src/ftw/FTW_NS.c	2;"	d	file:
FTW_PHYS	src/ftw/FTW_PHYS.c	2;"	d	file:
FTW_SL	src/ftw/FTW_SL.c	2;"	d	file:
FTW_SLN	src/ftw/FTW_SLN.c	2;"	d	file:
F_DUPFD	src/fcntl/F_DUPFD.c	3;"	d	file:
F_GETFD	src/fcntl/F_GETFD.c	3;"	d	file:
F_GETFL	src/fcntl/F_GETFL.c	3;"	d	file:
F_GETLK	src/fcntl/F_GETLK.c	3;"	d	file:
F_LOCK	src/unistd/F_LOCK.c	2;"	d	file:
F_OK	src/unistd/F_OK.c	2;"	d	file:
F_RDLCK	src/fcntl/F_RDLCK.c	3;"	d	file:
F_SETFD	src/fcntl/F_SETFD.c	3;"	d	file:
F_SETFL	src/fcntl/F_SETFL.c	3;"	d	file:
F_SETLK	src/fcntl/F_SETLK.c	3;"	d	file:
F_SETLKW	src/fcntl/F_SETLKW.c	3;"	d	file:
F_TEST	src/unistd/F_TEST.c	2;"	d	file:
F_TLOCK	src/unistd/F_TLOCK.c	2;"	d	file:
F_ULOCK	src/unistd/F_ULOCK.c	2;"	d	file:
F_UNLCK	src/fcntl/F_UNLCK.c	3;"	d	file:
F_WRLCK	src/fcntl/F_WRLCK.c	3;"	d	file:
GETALL	src/sys/sem/GETALL.c	2;"	d	file:
GETC	src/regexp/GETC.c	1;"	d	file:
GETNCNT	src/sys/sem/GETNCNT.c	2;"	d	file:
GETPID	src/sys/sem/GETPID.c	2;"	d	file:
GETVAL	src/sys/sem/GETVAL.c	2;"	d	file:
GETZCNT	src/sys/sem/GETZCNT.c	2;"	d	file:
GLOBAL_LOCALE	src/nonstd/LIBC_INTERNAL.c	/^	GLOBAL_LOCALE,$/;"	e	enum:__anon4	file:
GLOB_ABORTED	src/glob/GLOB_ABORTED.c	2;"	d	file:
GLOB_APPEND	src/glob/GLOB_APPEND.c	2;"	d	file:
GLOB_DOOFFS	src/glob/GLOB_DOOFFS.c	2;"	d	file:
GLOB_ERR	src/glob/GLOB_ERR.c	2;"	d	file:
GLOB_MARK	src/glob/GLOB_MARK.c	2;"	d	file:
GLOB_NOCHECK	src/glob/GLOB_NOCHECK.c	2;"	d	file:
GLOB_NOESCAPE	src/glob/GLOB_NOESCAPE.c	2;"	d	file:
GLOB_NOMATCH	src/glob/GLOB_NOMATCH.c	2;"	d	file:
GLOB_NOSORT	src/glob/GLOB_NOSORT.c	2;"	d	file:
GLOB_NOSPACE	src/glob/GLOB_NOSPACE.c	2;"	d	file:
GLOB_NOSYS	src/glob/GLOB_NOSYS.c	2;"	d	file:
GRAPH	src/nonstd/ctype_t.c	/^	GRAPH = (1 << 3),$/;"	e	enum:__anon5	file:
HR_PER_DAY	src/time/gmtime.c	7;"	d	file:
HUGE_VAL	src/math/HUGE_VAL.c	2;"	d	file:
HUGE_VALF	src/math/HUGE_VALF.c	2;"	d	file:
HUGE_VALL	src/math/HUGE_VALL.c	2;"	d	file:
HUPCL	src/termios/HUPCL.c	2;"	d	file:
I	src/complex/I.c	4;"	d	file:
I	src/complex/I.c	6;"	d	file:
ICANON	src/termios/ICANON.c	2;"	d	file:
ICRNL	src/termios/ICRNL.c	2;"	d	file:
IEXTEN	src/termios/IEXTEN.c	2;"	d	file:
IGNBRK	src/termios/IGNBRK.c	2;"	d	file:
IGNCR	src/termios/IGNCR.c	2;"	d	file:
IGNPAR	src/termios/IGNPAR.c	2;"	d	file:
ILL_BADSTK	src/signal/ILL_BADSTK.c	2;"	d	file:
ILL_COPROC	src/signal/ILL_COPROC.c	2;"	d	file:
ILL_ILLADR	src/signal/ILL_ILLADR.c	2;"	d	file:
ILL_ILLOPC	src/signal/ILL_ILLOPC.c	2;"	d	file:
ILL_ILLOPN	src/signal/ILL_ILLOPN.c	2;"	d	file:
ILL_ILLTRP	src/signal/ILL_ILLTRP.c	2;"	d	file:
ILL_PRVOPC	src/signal/ILL_PRVOPC.c	2;"	d	file:
ILL_PRVREG	src/signal/ILL_PRVREG.c	2;"	d	file:
INFINITY	src/math/INFINITY.c	2;"	d	file:
INIT	src/regexp/INIT.c	1;"	d	file:
INIT_PROCESS	src/utmpx/INIT_PROCESS.c	2;"	d	file:
INLCR	src/termios/INLCR.c	2;"	d	file:
INPCK	src/termios/INPCK.c	2;"	d	file:
INT16_C	src/stdint/INT16_C.c	2;"	d	file:
INT16_MAX	src/stdint/INT16_MAX.c	2;"	d	file:
INT16_MIN	src/stdint/INT16_MIN.c	2;"	d	file:
INT32_C	src/stdint/INT32_C.c	2;"	d	file:
INT32_MAX	src/stdint/INT32_MAX.c	2;"	d	file:
INT32_MIN	src/stdint/INT32_MIN.c	2;"	d	file:
INT64_C	src/stdint/INT64_C.c	2;"	d	file:
INT64_MAX	src/stdint/INT64_MAX.c	2;"	d	file:
INT64_MIN	src/stdint/INT64_MIN.c	2;"	d	file:
INT8_C	src/stdint/INT8_C.c	2;"	d	file:
INT8_MAX	src/stdint/INT8_MAX.c	2;"	d	file:
INT8_MIN	src/stdint/INT8_MIN.c	2;"	d	file:
INTMAX_C	src/stdint/INTMAX_C.c	2;"	d	file:
INTMAX_MAX	src/stdint/INTMAX_MAX.c	2;"	d	file:
INTMAX_MIN	src/stdint/INTMAX_MIN.c	2;"	d	file:
INTPTR_MAX	src/stdint/INTPTR_MAX.c	2;"	d	file:
INTPTR_MIN	src/stdint/INTPTR_MIN.c	2;"	d	file:
INT_FAST16_MAX	src/stdint/INT_FAST16_MAX.c	2;"	d	file:
INT_FAST16_MIN	src/stdint/INT_FAST16_MIN.c	2;"	d	file:
INT_FAST32_MAX	src/stdint/INT_FAST32_MAX.c	2;"	d	file:
INT_FAST32_MIN	src/stdint/INT_FAST32_MIN.c	2;"	d	file:
INT_FAST64_MAX	src/stdint/INT_FAST64_MAX.c	2;"	d	file:
INT_FAST64_MIN	src/stdint/INT_FAST64_MIN.c	2;"	d	file:
INT_FAST8_MAX	src/stdint/INT_FAST8_MAX.c	2;"	d	file:
INT_FAST8_MIN	src/stdint/INT_FAST8_MIN.c	2;"	d	file:
INT_LEAST16_MAX	src/stdint/INT_LEAST16_MAX.c	2;"	d	file:
INT_LEAST16_MIN	src/stdint/INT_LEAST16_MIN.c	2;"	d	file:
INT_LEAST32_MAX	src/stdint/INT_LEAST32_MAX.c	2;"	d	file:
INT_LEAST32_MIN	src/stdint/INT_LEAST32_MIN.c	2;"	d	file:
INT_LEAST64_MAX	src/stdint/INT_LEAST64_MAX.c	2;"	d	file:
INT_LEAST64_MIN	src/stdint/INT_LEAST64_MIN.c	2;"	d	file:
INT_LEAST8_MAX	src/stdint/INT_LEAST8_MAX.c	2;"	d	file:
INT_LEAST8_MIN	src/stdint/INT_LEAST8_MIN.c	2;"	d	file:
INT_MAX	src/limits/INT_MAX.c	3;"	d	file:
INT_MAX	src/limits/INT_MAX.c	5;"	d	file:
INT_MAX	src/limits/INT_MAX.c	7;"	d	file:
INT_MIN	src/limits/INT_MIN.c	2;"	d	file:
IPC_CREAT	src/sys/ipc/IPC_CREAT.c	2;"	d	file:
IPC_EXCL	src/sys/ipc/IPC_EXCL.c	2;"	d	file:
IPC_NOWAIT	src/sys/ipc/IPC_NOWAIT.c	2;"	d	file:
IPC_PRIVATE	src/sys/ipc/IPC_PRIVATE.c	2;"	d	file:
IPC_RMID	src/sys/ipc/IPC_RMID.c	2;"	d	file:
IPC_SET	src/sys/ipc/IPC_SET.c	2;"	d	file:
IPC_STAT	src/sys/ipc/IPC_STAT.c	2;"	d	file:
ISIG	src/termios/ISIG.c	2;"	d	file:
ISLEAPYEAR	src/time/gmtime.c	11;"	d	file:
ISTRIP	src/termios/ISTRIP.c	2;"	d	file:
ITIMER_PROF	src/sys/time/ITIMER_PROF.c	2;"	d	file:
ITIMER_REAL	src/sys/time/ITIMER_REAL.c	2;"	d	file:
ITIMER_VIRTUAL	src/sys/time/ITIMER_VIRTUAL.c	2;"	d	file:
IUCLC	src/termios/IUCLC.c	2;"	d	file:
IXANY	src/termios/IXANY.c	2;"	d	file:
IXOFF	src/termios/IXOFF.c	2;"	d	file:
IXON	src/termios/IXON.c	2;"	d	file:
I_ATMARK	src/stropts/I_ATMARK.c	2;"	d	file:
I_CANPUT	src/stropts/I_CANPUT.c	2;"	d	file:
I_CKBAND	src/stropts/I_CKBAND.c	2;"	d	file:
I_FDINSERT	src/stropts/I_FDINSERT.c	2;"	d	file:
I_FIND	src/stropts/I_FIND.c	2;"	d	file:
I_FLUSH	src/stropts/I_FLUSH.c	2;"	d	file:
I_FLUSHBAND	src/stropts/I_FLUSHBAND.c	2;"	d	file:
I_GETBAND	src/stropts/I_GETBAND.c	2;"	d	file:
I_GETCLTIME	src/stropts/I_GETCLTIME.c	2;"	d	file:
I_GETSIG	src/stropts/I_GETSIG.c	2;"	d	file:
I_GRDOPT	src/stropts/I_GRDOPT.c	2;"	d	file:
I_GWROPT	src/stropts/I_GWROPT.c	2;"	d	file:
I_LINK	src/stropts/I_LINK.c	2;"	d	file:
I_LIST	src/stropts/I_LIST.c	2;"	d	file:
I_LOOK	src/stropts/I_LOOK.c	2;"	d	file:
I_NREAD	src/stropts/I_NREAD.c	2;"	d	file:
I_PEEK	src/stropts/I_PEEK.c	2;"	d	file:
I_PLINK	src/stropts/I_PLINK.c	2;"	d	file:
I_POP	src/stropts/I_POP.c	2;"	d	file:
I_PUNLINK	src/stropts/I_PUNLINK.c	2;"	d	file:
I_PUSH	src/stropts/I_PUSH.c	2;"	d	file:
I_RECVFD	src/stropts/I_RECVFD.c	2;"	d	file:
I_SENDFD	src/stropts/I_SENDFD.c	2;"	d	file:
I_SETCLTIME	src/stropts/I_SETCLTIME.c	2;"	d	file:
I_SETSIG	src/stropts/I_SETSIG.c	2;"	d	file:
I_SRDOPT	src/stropts/I_SRDOPT.c	2;"	d	file:
I_STR	src/stropts/I_STR.c	2;"	d	file:
I_SWROPT	src/stropts/I_SWROPT.c	2;"	d	file:
I_UNLINK	src/stropts/I_UNLINK.c	2;"	d	file:
LASTMARK	src/stropts/LASTMARK.c	2;"	d	file:
LC_ALL	src/locale/LC_ALL.c	2;"	d	file:
LC_COLLATE	src/locale/LC_COLLATE.c	2;"	d	file:
LC_CTYPE	src/locale/LC_CTYPE.c	2;"	d	file:
LC_MESSAGES	src/locale/LC_MESSAGES.c	2;"	d	file:
LC_MONETARY	src/locale/LC_MONETARY.c	2;"	d	file:
LC_NUMERIC	src/locale/LC_NUMERIC.c	2;"	d	file:
LC_TIME	src/locale/LC_TIME.c	2;"	d	file:
LDBL_DIG	src/float/LDBL_DIG.c	2;"	d	file:
LDBL_EPSILON	src/float/LDBL_EPSILON.c	2;"	d	file:
LDBL_MANT_DIG	src/float/LDBL_MANT_DIG.c	2;"	d	file:
LDBL_MAX	src/float/LDBL_MAX.c	2;"	d	file:
LDBL_MAX_10_EXP	src/float/LDBL_MAX_10_EXP.c	2;"	d	file:
LDBL_MAX_EXP	src/float/LDBL_MAX_EXP.c	2;"	d	file:
LDBL_MIN	src/float/LDBL_MIN.c	2;"	d	file:
LDBL_MIN_10_EXP	src/float/LDBL_MIN_10_EXP.c	2;"	d	file:
LDBL_MIN_EXP	src/float/LDBL_MIN_EXP.c	2;"	d	file:
LIBC_INTERNAL	src/nonstd/LIBC_INTERNAL.c	/^} LIBC_INTERNAL;$/;"	t	typeref:enum:__anon4	file:
LINE_MAX	src/limits/LINE_MAX.c	2;"	d	file:
LLONG_MAX	src/limits/LLONG_MAX.c	3;"	d	file:
LLONG_MIN	src/limits/LLONG_MIN.c	2;"	d	file:
LNKTYPE	src/tar/LNKTYPE.c	3;"	d	file:
LOGIN_PROCESS	src/utmpx/LOGIN_PROCESS.c	2;"	d	file:
LOG_ALERT	src/syslog/LOG_ALERT.c	2;"	d	file:
LOG_AUTH	src/syslog/LOG_AUTH.c	2;"	d	file:
LOG_CONS	src/syslog/LOG_CONS.c	2;"	d	file:
LOG_CRIT	src/syslog/LOG_CRIT.c	2;"	d	file:
LOG_CRON	src/syslog/LOG_CRON.c	2;"	d	file:
LOG_DAEMON	src/syslog/LOG_DAEMON.c	2;"	d	file:
LOG_DEBUG	src/syslog/LOG_DEBUG.c	2;"	d	file:
LOG_EMERG	src/syslog/LOG_EMERG.c	2;"	d	file:
LOG_ERR	src/syslog/LOG_ERR.c	2;"	d	file:
LOG_INFO	src/syslog/LOG_INFO.c	2;"	d	file:
LOG_KERN	src/syslog/LOG_KERN.c	2;"	d	file:
LOG_LOCAL0	src/syslog/LOG_LOCAL0.c	2;"	d	file:
LOG_LOCAL1	src/syslog/LOG_LOCAL1.c	2;"	d	file:
LOG_LOCAL2	src/syslog/LOG_LOCAL2.c	2;"	d	file:
LOG_LOCAL3	src/syslog/LOG_LOCAL3.c	2;"	d	file:
LOG_LOCAL4	src/syslog/LOG_LOCAL4.c	2;"	d	file:
LOG_LOCAL5	src/syslog/LOG_LOCAL5.c	2;"	d	file:
LOG_LOCAL6	src/syslog/LOG_LOCAL6.c	2;"	d	file:
LOG_LOCAL7	src/syslog/LOG_LOCAL7.c	2;"	d	file:
LOG_LPR	src/syslog/LOG_LPR.c	2;"	d	file:
LOG_MAIL	src/syslog/LOG_MAIL.c	2;"	d	file:
LOG_MASK	src/syslog/LOG_MASK.c	2;"	d	file:
LOG_NDELAY	src/syslog/LOG_NDELAY.c	2;"	d	file:
LOG_NEWS	src/syslog/LOG_NEWS.c	2;"	d	file:
LOG_NOTICE	src/syslog/LOG_NOTICE.c	2;"	d	file:
LOG_NOWAIT	src/syslog/LOG_NOWAIT.c	2;"	d	file:
LOG_ODELAY	src/syslog/LOG_ODELAY.c	2;"	d	file:
LOG_PID	src/syslog/LOG_PID.c	2;"	d	file:
LOG_UPTO	src/syslog/LOG_UPTO.c	2;"	d	file:
LOG_USER	src/syslog/LOG_USER.c	2;"	d	file:
LOG_UUCP	src/syslog/LOG_UUCP.c	2;"	d	file:
LOG_WARNING	src/syslog/LOG_WARNING.c	2;"	d	file:
LONG_BIT	src/limits/LONG_BIT.c	2;"	d	file:
LONG_MAX	src/limits/LONG_MAX.c	3;"	d	file:
LONG_MAX	src/limits/LONG_MAX.c	5;"	d	file:
LONG_MIN	src/limits/LONG_MIN.c	2;"	d	file:
LOWER	src/nonstd/ctype_t.c	/^	LOWER = (1 << 4),$/;"	e	enum:__anon5	file:
L_ctermid	src/stdio/L_ctermid.c	2;"	d	file:
L_cuserid	src/stdio/L_cuserid.c	2;"	d	file:
L_tmpnam	src/stdio/L_tmpnam.c	2;"	d	file:
MAGIC	src/cpio/MAGIC.c	2;"	d	file:
MAP_FIXED	src/sys/mman/MAP_FIXED.c	2;"	d	file:
MAP_PRIVATE	src/sys/mman/MAP_PRIVATE.c	2;"	d	file:
MAP_SHARED	src/sys/mman/MAP_SHARED.c	2;"	d	file:
MATH_ERREXCEPT	src/math/MATH_ERREXCEPT.c	2;"	d	file:
MATH_ERRNO	src/math/MATH_ERRNO.c	2;"	d	file:
MAXFLOAT	src/math/MAXFLOAT.c	2;"	d	file:
MB_CUR_MAX	src/stdlib/MB_CUR_MAX.c	5;"	d	file:
MB_LEN_MAX	src/limits/MB_LEN_MAX.c	2;"	d	file:
MINSIGSTKSZ	src/signal/MINSIGSTKSZ.c	2;"	d	file:
MIN_PER_HR	src/time/gmtime.c	5;"	d	file:
MM_APPL	src/fmtmsg/MM_APPL.c	2;"	d	file:
MM_CONSOLE	src/fmtmsg/MM_CONSOLE.c	2;"	d	file:
MM_ERROR	src/fmtmsg/MM_ERROR.c	2;"	d	file:
MM_FIRM	src/fmtmsg/MM_FIRM.c	2;"	d	file:
MM_HALT	src/fmtmsg/MM_HALT.c	2;"	d	file:
MM_HARD	src/fmtmsg/MM_HARD.c	2;"	d	file:
MM_INFO	src/fmtmsg/MM_INFO.c	2;"	d	file:
MM_NOCON	src/fmtmsg/MM_NOCON.c	2;"	d	file:
MM_NOMSG	src/fmtmsg/MM_NOMSG.c	2;"	d	file:
MM_NOSEV	src/fmtmsg/MM_NOSEV.c	2;"	d	file:
MM_NOTOK	src/fmtmsg/MM_NOTOK.c	2;"	d	file:
MM_NRECOV	src/fmtmsg/MM_NRECOV.c	2;"	d	file:
MM_NULLACT	src/fmtmsg/MM_NULLACT.c	2;"	d	file:
MM_NULLLBL	src/fmtmsg/MM_NULLLBL.c	2;"	d	file:
MM_NULLMC	src/fmtmsg/MM_NULLMC.c	2;"	d	file:
MM_NULLSEV	src/fmtmsg/MM_NULLSEV.c	2;"	d	file:
MM_NULLTAG	src/fmtmsg/MM_NULLTAG.c	2;"	d	file:
MM_NULLTXT	src/fmtmsg/MM_NULLTXT.c	2;"	d	file:
MM_OK	src/fmtmsg/MM_OK.c	2;"	d	file:
MM_OPSYS	src/fmtmsg/MM_OPSYS.c	2;"	d	file:
MM_PRINT	src/fmtmsg/MM_PRINT.c	2;"	d	file:
MM_RECOVER	src/fmtmsg/MM_RECOVER.c	2;"	d	file:
MM_SOFT	src/fmtmsg/MM_SOFT.c	2;"	d	file:
MM_UTIL	src/fmtmsg/MM_UTIL.c	2;"	d	file:
MM_WARNING	src/fmtmsg/MM_WARNING.c	2;"	d	file:
MON_1	src/langinfo/MON_1.c	2;"	d	file:
MON_10	src/langinfo/MON_10.c	2;"	d	file:
MON_11	src/langinfo/MON_11.c	2;"	d	file:
MON_12	src/langinfo/MON_12.c	2;"	d	file:
MON_2	src/langinfo/MON_2.c	2;"	d	file:
MON_3	src/langinfo/MON_3.c	2;"	d	file:
MON_4	src/langinfo/MON_4.c	2;"	d	file:
MON_5	src/langinfo/MON_5.c	2;"	d	file:
MON_6	src/langinfo/MON_6.c	2;"	d	file:
MON_7	src/langinfo/MON_7.c	2;"	d	file:
MON_8	src/langinfo/MON_8.c	2;"	d	file:
MON_9	src/langinfo/MON_9.c	2;"	d	file:
MORECTL	src/stropts/MORECTL.c	2;"	d	file:
MOREDATA	src/stropts/MOREDATA.c	2;"	d	file:
MSG_ANY	src/stropts/MSG_ANY.c	2;"	d	file:
MSG_BAND	src/stropts/MSG_BAND.c	2;"	d	file:
MSG_HIPRI	src/stropts/MSG_HIPRI.c	2;"	d	file:
MSG_NOERROR	src/sys/msg/MSG_NOERROR.c	2;"	d	file:
MS_ASYNC	src/sys/mman/MS_ASYNC.c	2;"	d	file:
MS_INVALIDATE	src/sys/mman/MS_INVALIDATE.c	2;"	d	file:
MS_SYNC	src/sys/mman/MS_SYNC.c	2;"	d	file:
MUXID_ALL	src/stropts/MUXID_ALL.c	2;"	d	file:
M_1_PI	src/math/M_1_PI.c	2;"	d	file:
M_2_PI	src/math/M_2_PI.c	2;"	d	file:
M_2_SQRTPI	src/math/M_2_SQRTPI.c	2;"	d	file:
M_E	src/math/M_E.c	2;"	d	file:
M_LN10	src/math/M_LN10.c	2;"	d	file:
M_LN2	src/math/M_LN2.c	2;"	d	file:
M_LOG10E	src/math/M_LOG10E.c	2;"	d	file:
M_LOG2E	src/math/M_LOG2E.c	2;"	d	file:
M_PI	src/math/M_PI.c	2;"	d	file:
M_PI_2	src/math/M_PI_2.c	2;"	d	file:
M_PI_4	src/math/M_PI_4.c	2;"	d	file:
M_SQRT1_2	src/math/M_SQRT1_2.c	2;"	d	file:
M_SQRT2	src/math/M_SQRT2.c	2;"	d	file:
NAN	src/math/NAN.c	2;"	d	file:
NCCS	src/termios/NCCS.c	2;"	d	file:
NDEBUG	src/assert/NDEBUG.c	3;"	d	file:
NEW_TIME	src/utmpx/NEW_TIME.c	2;"	d	file:
NGROUPS_MAX	src/limits/NGROUPS_MAX.c	2;"	d	file:
NL0	src/termios/NL0.c	2;"	d	file:
NL1	src/termios/NL1.c	2;"	d	file:
NLDLY	src/termios/NLDLY.c	2;"	d	file:
NL_ARGMAX	src/limits/NL_ARGMAX.c	2;"	d	file:
NL_CAT_LOCALE	src/nl_types/NL_CAT_LOCALE.c	2;"	d	file:
NL_LANGMAX	src/limits/NL_LANGMAX.c	2;"	d	file:
NL_MSGMAX	src/limits/NL_MSGMAX.c	2;"	d	file:
NL_NMAX	src/limits/NL_NMAX.c	2;"	d	file:
NL_SETD	src/nl_types/NL_SETD.c	2;"	d	file:
NL_SETMAX	src/limits/NL_SETMAX.c	2;"	d	file:
NL_TEXTMAX	src/limits/NL_TEXTMAX.c	2;"	d	file:
NOEXPR	src/langinfo/NOEXPR.c	2;"	d	file:
NOFLSH	src/termios/NOFLSH.c	2;"	d	file:
NOSTR	src/langinfo/NOSTR.c	2;"	d	file:
NULL	src/stddef/NULL.c	2;"	d	file:
NZERO	src/limits/NZERO.c	2;"	d	file:
OCRNL	src/termios/OCRNL.c	2;"	d	file:
OFILL	src/termios/OFILL.c	2;"	d	file:
OLCUC	src/termios/OLCUC.c	2;"	d	file:
OLD_TIME	src/utmpx/OLD_TIME.c	2;"	d	file:
ONLCR	src/termios/ONLCR.c	2;"	d	file:
ONLRET	src/termios/ONLRET.c	2;"	d	file:
ONOCR	src/termios/ONOCR.c	2;"	d	file:
OPOST	src/termios/OPOST.c	2;"	d	file:
O_ACCMODE	src/fcntl/O_ACCMODE.c	3;"	d	file:
O_APPEND	src/fcntl/O_APPEND.c	3;"	d	file:
O_CREAT	src/fcntl/O_CREAT.c	3;"	d	file:
O_EXCL	src/fcntl/O_EXCL.c	3;"	d	file:
O_NOCTTY	src/fcntl/O_NOCTTY.c	3;"	d	file:
O_NONBLOCK	src/fcntl/O_NONBLOCK.c	3;"	d	file:
O_RDONLY	src/fcntl/O_RDONLY.c	3;"	d	file:
O_RDWR	src/fcntl/O_RDWR.c	3;"	d	file:
O_SYNC	src/fcntl/O_SYNC.c	3;"	d	file:
O_TRUNC	src/fcntl/O_TRUNC.c	3;"	d	file:
O_WRONLY	src/fcntl/O_WRONLY.c	3;"	d	file:
PAGESIZE	src/limits/PAGESIZE.c	2;"	d	file:
PARENB	src/termios/PARENB.c	2;"	d	file:
PARMRK	src/termios/PARMRK.c	2;"	d	file:
PARODD	src/termios/PARODD.c	2;"	d	file:
PEEK	src/regexp/PEEK.c	1;"	d	file:
PM_STR	src/langinfo/PM_STR.c	2;"	d	file:
POLLERR	src/poll/POLLERR.c	2;"	d	file:
POLLHUP	src/poll/POLLHUP.c	2;"	d	file:
POLLIN	src/poll/POLLIN.c	2;"	d	file:
POLLNVAL	src/poll/POLLNVAL.c	2;"	d	file:
POLLOUT	src/poll/POLLOUT.c	2;"	d	file:
POLLPRI	src/poll/POLLPRI.c	2;"	d	file:
POLLRDBAND	src/poll/POLLRDBAND.c	2;"	d	file:
POLLRDNORM	src/poll/POLLRDNORM.c	2;"	d	file:
POLLWRBAND	src/poll/POLLWRBAND.c	2;"	d	file:
POLLWRNORM	src/poll/POLLWRNORM.c	2;"	d	file:
POLL_ERR	src/signal/POLL_ERR.c	2;"	d	file:
POLL_HUP	src/signal/POLL_HUP.c	2;"	d	file:
POLL_IN	src/signal/POLL_IN.c	2;"	d	file:
POLL_MSG	src/signal/POLL_MSG.c	2;"	d	file:
POLL_OUT	src/signal/POLL_OUT.c	2;"	d	file:
POLL_PRI	src/signal/POLL_PRI.c	2;"	d	file:
PRINT	src/nonstd/ctype_t.c	/^	PRINT = (1 << 5),$/;"	e	enum:__anon5	file:
PRINTF	src/nonstd/LIBC_INTERNAL.c	/^	PRINTF,$/;"	e	enum:__anon4	file:
PRIO_PGRP	src/sys/resource/PRIO_PGRP.c	2;"	d	file:
PRIO_PROCESS	src/sys/resource/PRIO_PROCESS.c	2;"	d	file:
PRIO_USER	src/sys/resource/PRIO_USER.c	2;"	d	file:
PRIX16	src/inttypes/PRIX16.c	2;"	d	file:
PRIX32	src/inttypes/PRIX32.c	2;"	d	file:
PRIX64	src/inttypes/PRIX64.c	2;"	d	file:
PRIX8	src/inttypes/PRIX8.c	2;"	d	file:
PRIXFAST16	src/inttypes/PRIXFAST16.c	2;"	d	file:
PRIXFAST32	src/inttypes/PRIXFAST32.c	2;"	d	file:
PRIXFAST64	src/inttypes/PRIXFAST64.c	2;"	d	file:
PRIXFAST8	src/inttypes/PRIXFAST8.c	2;"	d	file:
PRIXLEAST16	src/inttypes/PRIXLEAST16.c	2;"	d	file:
PRIXLEAST32	src/inttypes/PRIXLEAST32.c	2;"	d	file:
PRIXLEAST64	src/inttypes/PRIXLEAST64.c	2;"	d	file:
PRIXLEAST8	src/inttypes/PRIXLEAST8.c	2;"	d	file:
PRIXMAX	src/inttypes/PRIXMAX.c	2;"	d	file:
PRIXPTR	src/inttypes/PRIXPTR.c	3;"	d	file:
PRIXPTR	src/inttypes/PRIXPTR.c	5;"	d	file:
PRId16	src/inttypes/PRId16.c	2;"	d	file:
PRId32	src/inttypes/PRId32.c	2;"	d	file:
PRId64	src/inttypes/PRId64.c	2;"	d	file:
PRId8	src/inttypes/PRId8.c	2;"	d	file:
PRIdFAST16	src/inttypes/PRIdFAST16.c	2;"	d	file:
PRIdFAST32	src/inttypes/PRIdFAST32.c	2;"	d	file:
PRIdFAST64	src/inttypes/PRIdFAST64.c	2;"	d	file:
PRIdFAST8	src/inttypes/PRIdFAST8.c	2;"	d	file:
PRIdLEAST16	src/inttypes/PRIdLEAST16.c	2;"	d	file:
PRIdLEAST32	src/inttypes/PRIdLEAST32.c	2;"	d	file:
PRIdLEAST64	src/inttypes/PRIdLEAST64.c	2;"	d	file:
PRIdLEAST8	src/inttypes/PRIdLEAST8.c	2;"	d	file:
PRIdMAX	src/inttypes/PRIdMAX.c	2;"	d	file:
PRIdPTR	src/inttypes/PRIdPTR.c	3;"	d	file:
PRIdPTR	src/inttypes/PRIdPTR.c	5;"	d	file:
PRIi16	src/inttypes/PRIi16.c	2;"	d	file:
PRIi32	src/inttypes/PRIi32.c	2;"	d	file:
PRIi64	src/inttypes/PRIi64.c	2;"	d	file:
PRIi8	src/inttypes/PRIi8.c	2;"	d	file:
PRIiFAST16	src/inttypes/PRIiFAST16.c	2;"	d	file:
PRIiFAST32	src/inttypes/PRIiFAST32.c	2;"	d	file:
PRIiFAST64	src/inttypes/PRIiFAST64.c	2;"	d	file:
PRIiFAST8	src/inttypes/PRIiFAST8.c	2;"	d	file:
PRIiLEAST16	src/inttypes/PRIiLEAST16.c	2;"	d	file:
PRIiLEAST32	src/inttypes/PRIiLEAST32.c	2;"	d	file:
PRIiLEAST64	src/inttypes/PRIiLEAST64.c	2;"	d	file:
PRIiLEAST8	src/inttypes/PRIiLEAST8.c	2;"	d	file:
PRIiMAX	src/inttypes/PRIiMAX.c	2;"	d	file:
PRIiPTR	src/inttypes/PRIiPTR.c	3;"	d	file:
PRIiPTR	src/inttypes/PRIiPTR.c	5;"	d	file:
PRIo16	src/inttypes/PRIo16.c	2;"	d	file:
PRIo32	src/inttypes/PRIo32.c	2;"	d	file:
PRIo64	src/inttypes/PRIo64.c	2;"	d	file:
PRIo8	src/inttypes/PRIo8.c	2;"	d	file:
PRIoFAST16	src/inttypes/PRIoFAST16.c	2;"	d	file:
PRIoFAST32	src/inttypes/PRIoFAST32.c	2;"	d	file:
PRIoFAST64	src/inttypes/PRIoFAST64.c	2;"	d	file:
PRIoFAST8	src/inttypes/PRIoFAST8.c	2;"	d	file:
PRIoLEAST16	src/inttypes/PRIoLEAST16.c	2;"	d	file:
PRIoLEAST32	src/inttypes/PRIoLEAST32.c	2;"	d	file:
PRIoLEAST64	src/inttypes/PRIoLEAST64.c	2;"	d	file:
PRIoLEAST8	src/inttypes/PRIoLEAST8.c	2;"	d	file:
PRIoMAX	src/inttypes/PRIoMAX.c	2;"	d	file:
PRIoPTR	src/inttypes/PRIoPTR.c	3;"	d	file:
PRIoPTR	src/inttypes/PRIoPTR.c	5;"	d	file:
PRIu16	src/inttypes/PRIu16.c	2;"	d	file:
PRIu32	src/inttypes/PRIu32.c	2;"	d	file:
PRIu64	src/inttypes/PRIu64.c	2;"	d	file:
PRIu8	src/inttypes/PRIu8.c	2;"	d	file:
PRIuFAST16	src/inttypes/PRIuFAST16.c	2;"	d	file:
PRIuFAST32	src/inttypes/PRIuFAST32.c	2;"	d	file:
PRIuFAST64	src/inttypes/PRIuFAST64.c	2;"	d	file:
PRIuFAST8	src/inttypes/PRIuFAST8.c	2;"	d	file:
PRIuLEAST16	src/inttypes/PRIuLEAST16.c	2;"	d	file:
PRIuLEAST32	src/inttypes/PRIuLEAST32.c	2;"	d	file:
PRIuLEAST64	src/inttypes/PRIuLEAST64.c	2;"	d	file:
PRIuLEAST8	src/inttypes/PRIuLEAST8.c	2;"	d	file:
PRIuMAX	src/inttypes/PRIuMAX.c	2;"	d	file:
PRIuPTR	src/inttypes/PRIuPTR.c	3;"	d	file:
PRIuPTR	src/inttypes/PRIuPTR.c	5;"	d	file:
PRIx16	src/inttypes/PRIx16.c	2;"	d	file:
PRIx32	src/inttypes/PRIx32.c	2;"	d	file:
PRIx64	src/inttypes/PRIx64.c	2;"	d	file:
PRIx8	src/inttypes/PRIx8.c	2;"	d	file:
PRIxFAST16	src/inttypes/PRIxFAST16.c	2;"	d	file:
PRIxFAST32	src/inttypes/PRIxFAST32.c	2;"	d	file:
PRIxFAST64	src/inttypes/PRIxFAST64.c	2;"	d	file:
PRIxFAST8	src/inttypes/PRIxFAST8.c	2;"	d	file:
PRIxLEAST16	src/inttypes/PRIxLEAST16.c	2;"	d	file:
PRIxLEAST32	src/inttypes/PRIxLEAST32.c	2;"	d	file:
PRIxLEAST64	src/inttypes/PRIxLEAST64.c	2;"	d	file:
PRIxLEAST8	src/inttypes/PRIxLEAST8.c	2;"	d	file:
PRIxMAX	src/inttypes/PRIxMAX.c	2;"	d	file:
PRIxPTR	src/inttypes/PRIxPTR.c	3;"	d	file:
PRIxPTR	src/inttypes/PRIxPTR.c	5;"	d	file:
PROT_EXEC	src/sys/mman/PROT_EXEC.c	2;"	d	file:
PROT_NONE	src/sys/mman/PROT_NONE.c	2;"	d	file:
PROT_READ	src/sys/mman/PROT_READ.c	2;"	d	file:
PROT_WRITE	src/sys/mman/PROT_WRITE.c	2;"	d	file:
PTRDIFF_MAX	src/stdint/PTRDIFF_MAX.c	2;"	d	file:
PTRDIFF_MIN	src/stdint/PTRDIFF_MIN.c	2;"	d	file:
PUNCT	src/nonstd/ctype_t.c	/^	PUNCT = (1 << 6),$/;"	e	enum:__anon5	file:
P_ALL	src/sys/wait/idtype_t.c	/^	P_ALL,$/;"	e	enum:__anon22	file:
P_PGID	src/sys/wait/idtype_t.c	/^	P_PGID,$/;"	e	enum:__anon22	file:
P_PID	src/sys/wait/idtype_t.c	/^	P_PID$/;"	e	enum:__anon22	file:
P_tmpdir	src/stdio/P_tmpdir.c	2;"	d	file:
RADIXCHAR	src/langinfo/RADIXCHAR.c	2;"	d	file:
RAND	src/nonstd/LIBC_INTERNAL.c	/^	RAND,$/;"	e	enum:__anon4	file:
RAND_MAX	src/stdlib/RAND_MAX.c	5;"	d	file:
REGTYPE	src/tar/REGTYPE.c	3;"	d	file:
REG_BADBR	src/regex/REG_BADBR.c	2;"	d	file:
REG_BADPAT	src/regex/REG_BADPAT.c	2;"	d	file:
REG_BADRPT	src/regex/REG_BADRPT.c	2;"	d	file:
REG_EBRACE	src/regex/REG_EBRACE.c	2;"	d	file:
REG_EBRACK	src/regex/REG_EBRACK.c	2;"	d	file:
REG_ECOLLATE	src/regex/REG_ECOLLATE.c	2;"	d	file:
REG_ECTYPE	src/regex/REG_ECTYPE.c	2;"	d	file:
REG_EESCAPE	src/regex/REG_EESCAPE.c	2;"	d	file:
REG_ENOSYS	src/regex/REG_ENOSYS.c	2;"	d	file:
REG_EPAREN	src/regex/REG_EPAREN.c	2;"	d	file:
REG_ERANGE	src/regex/REG_ERANGE.c	2;"	d	file:
REG_ESPACE	src/regex/REG_ESPACE.c	2;"	d	file:
REG_ESUBREG	src/regex/REG_ESUBREG.c	2;"	d	file:
REG_EXTENDED	src/regex/REG_EXTENDED.c	2;"	d	file:
REG_ICASE	src/regex/REG_ICASE.c	2;"	d	file:
REG_NEWLINE	src/regex/REG_NEWLINE.c	2;"	d	file:
REG_NOMATCH	src/regex/REG_NOMATCH.c	2;"	d	file:
REG_NOSUB	src/regex/REG_NOSUB.c	2;"	d	file:
REG_NOTBOL	src/regex/REG_NOTBOL.c	2;"	d	file:
REG_NOTEOL	src/regex/REG_NOTEOL.c	2;"	d	file:
RETURN	src/regexp/RETURN.c	1;"	d	file:
RE_DUP_MAX	src/limits/RE_DUP_MAX.c	2;"	d	file:
RLIMIT_AS	src/sys/resource/RLIMIT_AS.c	2;"	d	file:
RLIMIT_CORE	src/sys/resource/RLIMIT_CORE.c	2;"	d	file:
RLIMIT_CPU	src/sys/resource/RLIMIT_CPU.c	2;"	d	file:
RLIMIT_DATA	src/sys/resource/RLIMIT_DATA.c	2;"	d	file:
RLIMIT_FSIZE	src/sys/resource/RLIMIT_FSIZE.c	2;"	d	file:
RLIMIT_NOFILE	src/sys/resource/RLIMIT_NOFILE.c	2;"	d	file:
RLIMIT_STACK	src/sys/resource/RLIMIT_STACK.c	2;"	d	file:
RLIM_INFINITY	src/sys/resource/RLIM_INFINITY.c	2;"	d	file:
RMSGD	src/stropts/RMSGD.c	2;"	d	file:
RMSGN	src/stropts/RMSGN.c	2;"	d	file:
RNORM	src/stropts/RNORM.c	2;"	d	file:
RPOTNORM	src/stropts/RPOTNORM.c	2;"	d	file:
RPROTDAT	src/stropts/RPROTDAT.c	2;"	d	file:
RPROTDIS	src/stropts/RPROTDIS.c	2;"	d	file:
RS_HIPRI	src/stropts/RS_HIPRI.c	2;"	d	file:
RUSAGE_CHILDREN	src/sys/resource/RUSAGE_CHILDREN.c	2;"	d	file:
RUSAGE_SELF	src/sys/resource/RUSAGE_SELF.c	2;"	d	file:
R_OK	src/unistd/R_OK.c	2;"	d	file:
SA_NOCLDSTOP	src/signal/SA_NOCLDSTOP.c	3;"	d	file:
SA_NOCLDWAIT	src/signal/SA_NOCLDWAIT.c	2;"	d	file:
SA_NODEFER	src/signal/SA_NODEFER.c	2;"	d	file:
SA_ONSTACK	src/signal/SA_ONSTACK.c	2;"	d	file:
SA_RESETHAND	src/signal/SA_RESETHAND.c	2;"	d	file:
SA_RESTART	src/signal/SA_RESTART.c	2;"	d	file:
SA_SIGINFO	src/signal/SA_SIGINFO.c	2;"	d	file:
SCANF	src/nonstd/LIBC_INTERNAL.c	/^	SCANF,$/;"	e	enum:__anon4	file:
SCHAR_MAX	src/limits/SCHAR_MAX.c	2;"	d	file:
SCHAR_MIN	src/limits/SCHAR_MIN.c	2;"	d	file:
SCNX16	src/inttypes/SCNX16.c	2;"	d	file:
SCNX32	src/inttypes/SCNX32.c	2;"	d	file:
SCNX64	src/inttypes/SCNX64.c	2;"	d	file:
SCNX8	src/inttypes/SCNX8.c	2;"	d	file:
SCNXFAST16	src/inttypes/SCNXFAST16.c	2;"	d	file:
SCNXFAST32	src/inttypes/SCNXFAST32.c	2;"	d	file:
SCNXFAST64	src/inttypes/SCNXFAST64.c	2;"	d	file:
SCNXFAST8	src/inttypes/SCNXFAST8.c	2;"	d	file:
SCNXLEAST16	src/inttypes/SCNXLEAST16.c	2;"	d	file:
SCNXLEAST32	src/inttypes/SCNXLEAST32.c	2;"	d	file:
SCNXLEAST64	src/inttypes/SCNXLEAST64.c	2;"	d	file:
SCNXLEAST8	src/inttypes/SCNXLEAST8.c	2;"	d	file:
SCNXMAX	src/inttypes/SCNXMAX.c	2;"	d	file:
SCNXPTR	src/inttypes/SCNXPTR.c	3;"	d	file:
SCNXPTR	src/inttypes/SCNXPTR.c	5;"	d	file:
SCNd16	src/inttypes/SCNd16.c	2;"	d	file:
SCNd32	src/inttypes/SCNd32.c	2;"	d	file:
SCNd64	src/inttypes/SCNd64.c	2;"	d	file:
SCNd8	src/inttypes/SCNd8.c	2;"	d	file:
SCNdFAST16	src/inttypes/SCNdFAST16.c	2;"	d	file:
SCNdFAST32	src/inttypes/SCNdFAST32.c	2;"	d	file:
SCNdFAST64	src/inttypes/SCNdFAST64.c	2;"	d	file:
SCNdFAST8	src/inttypes/SCNdFAST8.c	2;"	d	file:
SCNdLEAST16	src/inttypes/SCNdLEAST16.c	2;"	d	file:
SCNdLEAST32	src/inttypes/SCNdLEAST32.c	2;"	d	file:
SCNdLEAST64	src/inttypes/SCNdLEAST64.c	2;"	d	file:
SCNdLEAST8	src/inttypes/SCNdLEAST8.c	2;"	d	file:
SCNdMAX	src/inttypes/SCNdMAX.c	2;"	d	file:
SCNdPTR	src/inttypes/SCNdPTR.c	3;"	d	file:
SCNdPTR	src/inttypes/SCNdPTR.c	5;"	d	file:
SCNi16	src/inttypes/SCNi16.c	2;"	d	file:
SCNi32	src/inttypes/SCNi32.c	2;"	d	file:
SCNi64	src/inttypes/SCNi64.c	2;"	d	file:
SCNi8	src/inttypes/SCNi8.c	2;"	d	file:
SCNiFAST16	src/inttypes/SCNiFAST16.c	2;"	d	file:
SCNiFAST32	src/inttypes/SCNiFAST32.c	2;"	d	file:
SCNiFAST64	src/inttypes/SCNiFAST64.c	2;"	d	file:
SCNiFAST8	src/inttypes/SCNiFAST8.c	2;"	d	file:
SCNiLEAST16	src/inttypes/SCNiLEAST16.c	2;"	d	file:
SCNiLEAST32	src/inttypes/SCNiLEAST32.c	2;"	d	file:
SCNiLEAST64	src/inttypes/SCNiLEAST64.c	2;"	d	file:
SCNiLEAST8	src/inttypes/SCNiLEAST8.c	2;"	d	file:
SCNiMAX	src/inttypes/SCNiMAX.c	2;"	d	file:
SCNiPTR	src/inttypes/SCNiPTR.c	3;"	d	file:
SCNiPTR	src/inttypes/SCNiPTR.c	5;"	d	file:
SCNo16	src/inttypes/SCNo16.c	2;"	d	file:
SCNo32	src/inttypes/SCNo32.c	2;"	d	file:
SCNo64	src/inttypes/SCNo64.c	2;"	d	file:
SCNo8	src/inttypes/SCNo8.c	2;"	d	file:
SCNoFAST16	src/inttypes/SCNoFAST16.c	2;"	d	file:
SCNoFAST32	src/inttypes/SCNoFAST32.c	2;"	d	file:
SCNoFAST64	src/inttypes/SCNoFAST64.c	2;"	d	file:
SCNoFAST8	src/inttypes/SCNoFAST8.c	2;"	d	file:
SCNoLEAST16	src/inttypes/SCNoLEAST16.c	2;"	d	file:
SCNoLEAST32	src/inttypes/SCNoLEAST32.c	2;"	d	file:
SCNoLEAST64	src/inttypes/SCNoLEAST64.c	2;"	d	file:
SCNoLEAST8	src/inttypes/SCNoLEAST8.c	2;"	d	file:
SCNoMAX	src/inttypes/SCNoMAX.c	2;"	d	file:
SCNoPTR	src/inttypes/SCNoPTR.c	3;"	d	file:
SCNoPTR	src/inttypes/SCNoPTR.c	5;"	d	file:
SCNu16	src/inttypes/SCNu16.c	2;"	d	file:
SCNu32	src/inttypes/SCNu32.c	2;"	d	file:
SCNu64	src/inttypes/SCNu64.c	2;"	d	file:
SCNu8	src/inttypes/SCNu8.c	2;"	d	file:
SCNuFAST16	src/inttypes/SCNuFAST16.c	2;"	d	file:
SCNuFAST32	src/inttypes/SCNuFAST32.c	2;"	d	file:
SCNuFAST64	src/inttypes/SCNuFAST64.c	2;"	d	file:
SCNuFAST8	src/inttypes/SCNuFAST8.c	2;"	d	file:
SCNuLEAST16	src/inttypes/SCNuLEAST16.c	2;"	d	file:
SCNuLEAST32	src/inttypes/SCNuLEAST32.c	2;"	d	file:
SCNuLEAST64	src/inttypes/SCNuLEAST64.c	2;"	d	file:
SCNuLEAST8	src/inttypes/SCNuLEAST8.c	2;"	d	file:
SCNuMAX	src/inttypes/SCNuMAX.c	2;"	d	file:
SCNuPTR	src/inttypes/SCNuPTR.c	3;"	d	file:
SCNuPTR	src/inttypes/SCNuPTR.c	5;"	d	file:
SCNx16	src/inttypes/SCNx16.c	2;"	d	file:
SCNx32	src/inttypes/SCNx32.c	2;"	d	file:
SCNx64	src/inttypes/SCNx64.c	2;"	d	file:
SCNx8	src/inttypes/SCNx8.c	2;"	d	file:
SCNxFAST16	src/inttypes/SCNxFAST16.c	2;"	d	file:
SCNxFAST32	src/inttypes/SCNxFAST32.c	2;"	d	file:
SCNxFAST64	src/inttypes/SCNxFAST64.c	2;"	d	file:
SCNxFAST8	src/inttypes/SCNxFAST8.c	2;"	d	file:
SCNxLEAST16	src/inttypes/SCNxLEAST16.c	2;"	d	file:
SCNxLEAST32	src/inttypes/SCNxLEAST32.c	2;"	d	file:
SCNxLEAST64	src/inttypes/SCNxLEAST64.c	2;"	d	file:
SCNxLEAST8	src/inttypes/SCNxLEAST8.c	2;"	d	file:
SCNxMAX	src/inttypes/SCNxMAX.c	2;"	d	file:
SCNxPTR	src/inttypes/SCNxPTR.c	3;"	d	file:
SCNxPTR	src/inttypes/SCNxPTR.c	5;"	d	file:
SEC_PER_DAY	src/time/gmtime.c	8;"	d	file:
SEC_PER_HR	src/time/gmtime.c	6;"	d	file:
SEC_PER_MIN	src/time/gmtime.c	4;"	d	file:
SEC_PER_YEAR	src/time/gmtime.c	10;"	d	file:
SEEK_CUR	src/stdio/SEEK_CUR.c	2;"	d	file:
SEEK_END	src/stdio/SEEK_END.c	2;"	d	file:
SEEK_SET	src/stdio/SEEK_SET.c	2;"	d	file:
SEGV_ACCERR	src/signal/SEGV_ACCERR.c	2;"	d	file:
SEGV_MAPERR	src/signal/SEGV_MAPERR.c	2;"	d	file:
SEM_UNDO	src/sys/sem/SEM_UNDO.c	2;"	d	file:
SETALL	src/sys/sem/SETALL.c	2;"	d	file:
SETVAL	src/sys/sem/SETVAL.c	2;"	d	file:
SHMLBA	src/sys/shm/SHMLBA.c	2;"	d	file:
SHM_RDONLY	src/sys/shm/SHM_RDONLY.c	2;"	d	file:
SHM_RND	src/sys/shm/SHM_RND.c	2;"	d	file:
SHRT_MAX	src/limits/SHRT_MAX.c	2;"	d	file:
SHRT_MIN	src/limits/SHRT_MIN.c	2;"	d	file:
SIGABRT	src/signal/SIGABRT.c	2;"	d	file:
SIGALRM	src/signal/SIGALRM.c	2;"	d	file:
SIGBUS	src/signal/SIGBUS.c	2;"	d	file:
SIGCHLD	src/signal/SIGCHLD.c	2;"	d	file:
SIGCONT	src/signal/SIGCONT.c	2;"	d	file:
SIGFPE	src/signal/SIGFPE.c	2;"	d	file:
SIGHUP	src/signal/SIGHUP.c	2;"	d	file:
SIGILL	src/signal/SIGILL.c	2;"	d	file:
SIGINT	src/signal/SIGINT.c	2;"	d	file:
SIGKILL	src/signal/SIGKILL.c	2;"	d	file:
SIGPIPE	src/signal/SIGPIPE.c	2;"	d	file:
SIGPOLL	src/signal/SIGPOLL.c	2;"	d	file:
SIGPROF	src/signal/SIGPROF.c	2;"	d	file:
SIGQUIT	src/signal/SIGQUIT.c	2;"	d	file:
SIGSEGV	src/signal/SIGSEGV.c	2;"	d	file:
SIGSTKSZ	src/signal/SIGSTKSZ.c	2;"	d	file:
SIGSTOP	src/signal/SIGSTOP.c	2;"	d	file:
SIGSYS	src/signal/SIGSYS.c	2;"	d	file:
SIGTERM	src/signal/SIGTERM.c	2;"	d	file:
SIGTRAP	src/signal/SIGTRAP.c	2;"	d	file:
SIGTSTP	src/signal/SIGTSTP.c	2;"	d	file:
SIGTTIN	src/signal/SIGTTIN.c	2;"	d	file:
SIGTTOU	src/signal/SIGTTOU.c	2;"	d	file:
SIGURG	src/signal/SIGURG.c	2;"	d	file:
SIGUSR1	src/signal/SIGUSR1.c	2;"	d	file:
SIGUSR2	src/signal/SIGUSR2.c	2;"	d	file:
SIGVTALRM	src/signal/SIGVTALRM.c	2;"	d	file:
SIGXCPU	src/signal/SIGXCPU.c	2;"	d	file:
SIGXFSZ	src/signal/SIGXFSZ.c	2;"	d	file:
SIG_ATOMIC_MAX	src/stdint/SIG_ATOMIC_MAX.c	2;"	d	file:
SIG_ATOMIC_MIN	src/stdint/SIG_ATOMIC_MIN.c	2;"	d	file:
SIG_BLOCK	src/signal/SIG_BLOCK.c	2;"	d	file:
SIG_DFL	src/signal/SIG_DFL.c	2;"	d	file:
SIG_ERR	src/signal/SIG_ERR.c	2;"	d	file:
SIG_HOLD	src/signal/SIG_HOLD.c	2;"	d	file:
SIG_IGN	src/signal/SIG_IGN.c	2;"	d	file:
SIG_SETMASK	src/signal/SIG_SETMASK.c	2;"	d	file:
SIG_UNBLOCK	src/signal/SIG_UNBLOCK.c	2;"	d	file:
SIZE_MAX	src/stdint/SIZE_MAX.c	2;"	d	file:
SNDZERO	src/stropts/SNDZERO.c	2;"	d	file:
SPACE	src/nonstd/ctype_t.c	/^	SPACE = (1 << 7),$/;"	e	enum:__anon5	file:
SSIZE_MAX	src/limits/SSIZE_MAX.c	3;"	d	file:
SS_DISABLE	src/signal/SS_DISABLE.c	2;"	d	file:
SS_ONSTACK	src/signal/SS_ONSTACK.c	2;"	d	file:
STDERR_FILENO	src/unistd/STDERR_FILENO.c	2;"	d	file:
STDIN_FILENO	src/unistd/STDIN_FILENO.c	2;"	d	file:
STDOUT_FILENO	src/unistd/STDOUT_FILENO.c	2;"	d	file:
ST_NOSUID	src/sys/statvfs/ST_NOSUID.c	2;"	d	file:
ST_RDONLY	src/sys/statvfs/ST_RDONLY.c	2;"	d	file:
SUPPLIED	src/nonstd/struct_FILE.c	/^	enum { SUPPLIED, ALLOCED, UNSET } buftype;$/;"	e	enum:__FILE::__anon6	file:
SYMTYPE	src/tar/SYMTYPE.c	3;"	d	file:
SYSCALL	src/nonstd/SYSCALL.c	3;"	d	file:
SYSCALL0	src/nonstd/SYSCALL0.c	3;"	d	file:
SYSCALL_LOOKUP	src/nonstd/LIBC_INTERNAL.c	/^	SYSCALL_LOOKUP,$/;"	e	enum:__anon4	file:
SYSCALL_NOFAIL	src/nonstd/SYSCALL_NOFAIL.c	3;"	d	file:
SYSCALL_NUMBER	src/nonstd/SYSCALL_NUMBER.c	3;"	d	file:
S_BANDURG	src/stropts/S_BANDURG.c	2;"	d	file:
S_ERROR	src/stropts/S_ERROR.c	2;"	d	file:
S_HANGUP	src/stropts/S_HANGUP.c	2;"	d	file:
S_HIPRI	src/stropts/S_HIPRI.c	2;"	d	file:
S_IFBLK	src/sys/stat/S_IFBLK.c	2;"	d	file:
S_IFCHR	src/sys/stat/S_IFCHR.c	2;"	d	file:
S_IFDIR	src/sys/stat/S_IFDIR.c	2;"	d	file:
S_IFIFO	src/sys/stat/S_IFIFO.c	2;"	d	file:
S_IFLNK	src/sys/stat/S_IFLNK.c	2;"	d	file:
S_IFMT	src/sys/stat/S_IFMT.c	2;"	d	file:
S_IFREG	src/sys/stat/S_IFREG.c	2;"	d	file:
S_INPUT	src/stropts/S_INPUT.c	2;"	d	file:
S_IRGRP	src/sys/stat/S_IRGRP.c	3;"	d	file:
S_IROTH	src/sys/stat/S_IROTH.c	3;"	d	file:
S_IRUSR	src/sys/stat/S_IRUSR.c	3;"	d	file:
S_IRWXG	src/sys/stat/S_IRWXG.c	3;"	d	file:
S_IRWXO	src/sys/stat/S_IRWXO.c	3;"	d	file:
S_IRWXU	src/sys/stat/S_IRWXU.c	3;"	d	file:
S_ISBLK	src/sys/stat/S_ISBLK.c	2;"	d	file:
S_ISCHR	src/sys/stat/S_ISCHR.c	2;"	d	file:
S_ISDIR	src/stdio/remove.c	10;"	d	file:
S_ISDIR	src/sys/stat/S_ISDIR.c	2;"	d	file:
S_ISFIFO	src/sys/stat/S_ISFIFO.c	2;"	d	file:
S_ISGID	src/sys/stat/S_ISGID.c	2;"	d	file:
S_ISLNK	src/sys/stat/S_ISLNK.c	2;"	d	file:
S_ISREG	src/sys/stat/S_ISREG.c	2;"	d	file:
S_ISUID	src/sys/stat/S_ISUID.c	2;"	d	file:
S_ISVTX	src/sys/stat/S_ISVTX.c	2;"	d	file:
S_IWGRP	src/sys/stat/S_IWGRP.c	2;"	d	file:
S_IWOTH	src/sys/stat/S_IWOTH.c	2;"	d	file:
S_IWUSR	src/sys/stat/S_IWUSR.c	2;"	d	file:
S_IXGRP	src/sys/stat/S_IXGRP.c	2;"	d	file:
S_IXOTH	src/sys/stat/S_IXOTH.c	2;"	d	file:
S_IXUSR	src/sys/stat/S_IXUSR.c	2;"	d	file:
S_MSG	src/stropts/S_MSG.c	2;"	d	file:
S_OUTPUT	src/stropts/S_OUTPUT.c	2;"	d	file:
S_RDBAND	src/stropts/S_RDBAND.c	2;"	d	file:
S_RDNORM	src/stropts/S_RDNORM.c	2;"	d	file:
S_WRBAND	src/stropts/S_WRBAND.c	2;"	d	file:
S_WRNORM	src/stropts/S_WRNORM.c	2;"	d	file:
TAB0	src/termios/TAB0.c	2;"	d	file:
TAB1	src/termios/TAB1.c	2;"	d	file:
TAB2	src/termios/TAB2.c	2;"	d	file:
TAB3	src/termios/TAB3.c	2;"	d	file:
TABDLY	src/termios/TABDLY.c	2;"	d	file:
TCIFLUSH	src/termios/TCIFLUSH.c	2;"	d	file:
TCIOFF	src/termios/TCIOFF.c	2;"	d	file:
TCIOFLUSH	src/termios/TCIOFLUSH.c	2;"	d	file:
TCION	src/termios/TCION.c	2;"	d	file:
TCOFLUSH	src/termios/TCOFLUSH.c	2;"	d	file:
TCOOFF	src/termios/TCOOFF.c	2;"	d	file:
TCOON	src/termios/TCOON.c	2;"	d	file:
TCSADRAIN	src/termios/TCSADRAIN.c	2;"	d	file:
TCSAFLUSH	src/termios/TCSAFLUSH.c	2;"	d	file:
TCSANOW	src/termios/TCSANOW.c	2;"	d	file:
TGEXEC	src/tar/TGEXEC.c	3;"	d	file:
TGREAD	src/tar/TGREAD.c	3;"	d	file:
TGSOURCE	src/complex/cabs.c	1;"	d	file:
TGSOURCE	src/complex/cacos.c	1;"	d	file:
TGSOURCE	src/complex/cacosh.c	1;"	d	file:
TGSOURCE	src/complex/carg.c	1;"	d	file:
TGSOURCE	src/complex/casin.c	1;"	d	file:
TGSOURCE	src/complex/casinh.c	1;"	d	file:
TGSOURCE	src/complex/catan.c	1;"	d	file:
TGSOURCE	src/complex/catanh.c	1;"	d	file:
TGSOURCE	src/complex/ccos.c	1;"	d	file:
TGSOURCE	src/complex/ccosh.c	1;"	d	file:
TGSOURCE	src/complex/cexp.c	1;"	d	file:
TGSOURCE	src/complex/cimag.c	1;"	d	file:
TGSOURCE	src/complex/clog.c	1;"	d	file:
TGSOURCE	src/complex/conj.c	1;"	d	file:
TGSOURCE	src/complex/cpow.c	1;"	d	file:
TGSOURCE	src/complex/cproj.c	1;"	d	file:
TGSOURCE	src/complex/creal.c	1;"	d	file:
TGSOURCE	src/complex/csin.c	1;"	d	file:
TGSOURCE	src/complex/csinh.c	1;"	d	file:
TGSOURCE	src/complex/csqrt.c	1;"	d	file:
TGSOURCE	src/complex/ctan.c	1;"	d	file:
TGSOURCE	src/complex/ctanh.c	1;"	d	file:
TGSOURCE	src/math/acos.c	1;"	d	file:
TGSOURCE	src/math/acosh.c	1;"	d	file:
TGSOURCE	src/math/asin.c	1;"	d	file:
TGSOURCE	src/math/asinh.c	1;"	d	file:
TGSOURCE	src/math/atan.c	1;"	d	file:
TGSOURCE	src/math/atan2.c	1;"	d	file:
TGSOURCE	src/math/atanh.c	1;"	d	file:
TGSOURCE	src/math/cbrt.c	1;"	d	file:
TGSOURCE	src/math/ceil.c	1;"	d	file:
TGSOURCE	src/math/copysign.c	1;"	d	file:
TGSOURCE	src/math/cos.c	1;"	d	file:
TGSOURCE	src/math/cosh.c	1;"	d	file:
TGSOURCE	src/math/erf.c	1;"	d	file:
TGSOURCE	src/math/erfc.c	1;"	d	file:
TGSOURCE	src/math/exp.c	1;"	d	file:
TGSOURCE	src/math/exp2.c	1;"	d	file:
TGSOURCE	src/math/expm1.c	1;"	d	file:
TGSOURCE	src/math/fabs.c	1;"	d	file:
TGSOURCE	src/math/fdim.c	1;"	d	file:
TGSOURCE	src/math/floor.c	1;"	d	file:
TGSOURCE	src/math/fma.c	1;"	d	file:
TGSOURCE	src/math/fmax.c	1;"	d	file:
TGSOURCE	src/math/fmin.c	1;"	d	file:
TGSOURCE	src/math/fmod.c	1;"	d	file:
TGSOURCE	src/math/frexp.c	1;"	d	file:
TGSOURCE	src/math/hypot.c	1;"	d	file:
TGSOURCE	src/math/ilogb.c	1;"	d	file:
TGSOURCE	src/math/ldexp.c	1;"	d	file:
TGSOURCE	src/math/lgamma.c	1;"	d	file:
TGSOURCE	src/math/llrint.c	1;"	d	file:
TGSOURCE	src/math/llround.c	1;"	d	file:
TGSOURCE	src/math/log.c	1;"	d	file:
TGSOURCE	src/math/log10.c	1;"	d	file:
TGSOURCE	src/math/log1p.c	1;"	d	file:
TGSOURCE	src/math/log2.c	1;"	d	file:
TGSOURCE	src/math/logb.c	1;"	d	file:
TGSOURCE	src/math/lrint.c	1;"	d	file:
TGSOURCE	src/math/lround.c	1;"	d	file:
TGSOURCE	src/math/modf.c	1;"	d	file:
TGSOURCE	src/math/nan.c	1;"	d	file:
TGSOURCE	src/math/nearbyint.c	1;"	d	file:
TGSOURCE	src/math/nextafter.c	1;"	d	file:
TGSOURCE	src/math/nexttoward.c	1;"	d	file:
TGSOURCE	src/math/pow.c	1;"	d	file:
TGSOURCE	src/math/remainder.c	2;"	d	file:
TGSOURCE	src/math/remquo.c	1;"	d	file:
TGSOURCE	src/math/rint.c	1;"	d	file:
TGSOURCE	src/math/round.c	1;"	d	file:
TGSOURCE	src/math/scalbln.c	1;"	d	file:
TGSOURCE	src/math/scalbn.c	1;"	d	file:
TGSOURCE	src/math/sin.c	1;"	d	file:
TGSOURCE	src/math/sinh.c	1;"	d	file:
TGSOURCE	src/math/sqrt.c	1;"	d	file:
TGSOURCE	src/math/tan.c	1;"	d	file:
TGSOURCE	src/math/tanh.c	1;"	d	file:
TGSOURCE	src/math/tgamma.c	1;"	d	file:
TGSOURCE	src/math/trunc.c	1;"	d	file:
TGWRITE	src/tar/TGWRITE.c	3;"	d	file:
THOUSEP	src/langinfo/THOUSEP.c	2;"	d	file:
THREAD_LOCAL	src/nonstd/__libc_per_thread.c	6;"	d	file:
THREAD_LOCAL	src/nonstd/__libc_per_thread.c	8;"	d	file:
THREAD_LOCALE	src/nonstd/LIBC_INTERNAL.c	/^	THREAD_LOCALE,$/;"	e	enum:__anon4	file:
TMAGIC	src/tar/TMAGIC.c	3;"	d	file:
TMAGLEN	src/tar/TMAGLEN.c	3;"	d	file:
TMP_MAX	src/limits/TMP_MAX.c	2;"	d	file:
TMP_MAX	src/stdio/TMP_MAX.c	2;"	d	file:
TOEXEC	src/tar/TOEXEC.c	3;"	d	file:
TOLOWER	src/nonstd/LIBC_INTERNAL.c	/^	TOLOWER,$/;"	e	enum:__anon4	file:
TOREAD	src/tar/TOREAD.c	3;"	d	file:
TOSTOP	src/termios/TOSTOP.c	2;"	d	file:
TOUPPER	src/nonstd/LIBC_INTERNAL.c	/^	TOUPPER,$/;"	e	enum:__anon4	file:
TOWRITE	src/tar/TOWRITE.c	3;"	d	file:
TRAP_BRKPT	src/signal/TRAP_BRKPT.c	2;"	d	file:
TRAP_TRACE	src/signal/TRAP_TRACE.c	2;"	d	file:
TSGID	src/tar/TSGID.c	3;"	d	file:
TSUID	src/tar/TSUID.c	3;"	d	file:
TSVTX	src/tar/TSVTX.c	3;"	d	file:
TUEXEC	src/tar/TUEXEC.c	3;"	d	file:
TUREAD	src/tar/TUREAD.c	3;"	d	file:
TUWRITE	src/tar/TUWRITE.c	3;"	d	file:
TVERSION	src/tar/TVERSION.c	3;"	d	file:
TVERSLEN	src/tar/TVERSLEN.c	3;"	d	file:
T_FMT	src/langinfo/T_FMT.c	2;"	d	file:
T_FMT_AMPM	src/langinfo/T_FMT_AMPM.c	2;"	d	file:
UCHAR_MAX	src/limits/UCHAR_MAX.c	2;"	d	file:
UINT16_C	src/stdint/UINT16_C.c	2;"	d	file:
UINT16_MAX	src/stdint/UINT16_MAX.c	2;"	d	file:
UINT32_C	src/stdint/UINT32_C.c	2;"	d	file:
UINT32_MAX	src/stdint/UINT32_MAX.c	2;"	d	file:
UINT64_C	src/stdint/UINT64_C.c	2;"	d	file:
UINT64_MAX	src/stdint/UINT64_MAX.c	2;"	d	file:
UINT8_C	src/stdint/UINT8_C.c	2;"	d	file:
UINT8_MAX	src/stdint/UINT8_MAX.c	2;"	d	file:
UINTMAX_C	src/stdint/UINTMAX_C.c	2;"	d	file:
UINTMAX_MAX	src/stdint/UINTMAX_MAX.c	2;"	d	file:
UINTPTR_MAX	src/stdint/UINTPTR_MAX.c	2;"	d	file:
UINT_FAST16_MAX	src/stdint/UINT_FAST16_MAX.c	2;"	d	file:
UINT_FAST32_MAX	src/stdint/UINT_FAST32_MAX.c	2;"	d	file:
UINT_FAST64_MAX	src/stdint/UINT_FAST64_MAX.c	2;"	d	file:
UINT_FAST8_MAX	src/stdint/UINT_FAST8_MAX.c	2;"	d	file:
UINT_LEAST16_MAX	src/stdint/UINT_LEAST16_MAX.c	2;"	d	file:
UINT_LEAST32_MAX	src/stdint/UINT_LEAST32_MAX.c	2;"	d	file:
UINT_LEAST64_MAX	src/stdint/UINT_LEAST64_MAX.c	2;"	d	file:
UINT_LEAST8_MAX	src/stdint/UINT_LEAST8_MAX.c	2;"	d	file:
UINT_MAX	src/limits/UINT_MAX.c	3;"	d	file:
UINT_MAX	src/limits/UINT_MAX.c	5;"	d	file:
UINT_MAX	src/limits/UINT_MAX.c	7;"	d	file:
ULLONG_MAX	src/limits/ULLONG_MAX.c	2;"	d	file:
ULONG_MAX	src/limits/ULONG_MAX.c	3;"	d	file:
ULONG_MAX	src/limits/ULONG_MAX.c	5;"	d	file:
UL_GETFSIZE	src/ulimit/UL_GETFSIZE.c	2;"	d	file:
UL_SETFSIZE	src/ulimit/UL_SETFSIZE.c	2;"	d	file:
UNGETC	src/regexp/UNGETC.c	1;"	d	file:
UNSET	src/nonstd/struct_FILE.c	/^	enum { SUPPLIED, ALLOCED, UNSET } buftype;$/;"	e	enum:__FILE::__anon6	file:
UPPER	src/nonstd/ctype_t.c	/^	UPPER = (1 << 8),$/;"	e	enum:__anon5	file:
USER_PROCESS	src/utmpx/USER_PROCESS.c	2;"	d	file:
USE_FORK	src/stdlib/system.c	8;"	d	file:
USHRT_MAX	src/limits/USHRT_MAX.c	2;"	d	file:
VEOF	src/termios/VEOF.c	2;"	d	file:
VEOL	src/termios/VEOL.c	2;"	d	file:
VERASE	src/termios/VERASE.c	2;"	d	file:
VINTR	src/termios/VINTR.c	2;"	d	file:
VISIT	src/search/VISIT.c	/^} VISIT;$/;"	t	typeref:enum:__anon15	file:
VKILL	src/termios/VKILL.c	2;"	d	file:
VMIN	src/termios/VMIN.c	2;"	d	file:
VQUIT	src/termios/VQUIT.c	2;"	d	file:
VSTART	src/termios/VSTART.c	2;"	d	file:
VSTOP	src/termios/VSTOP.c	2;"	d	file:
VSUSP	src/termios/VSUSP.c	2;"	d	file:
VT0	src/termios/VT0.c	2;"	d	file:
VT1	src/termios/VT1.c	2;"	d	file:
VTDLY	src/termios/VTDLY.c	2;"	d	file:
VTIME	src/termios/VTIME.c	2;"	d	file:
WCHAR_MAX	src/stdint/WCHAR_MAX.c	2;"	d	file:
WCHAR_MAX	src/wchar/WCHAR_MAX.c	2;"	d	file:
WCHAR_MIN	src/stdint/WCHAR_MIN.c	2;"	d	file:
WCHAR_MIN	src/wchar/WCHAR_MIN.c	2;"	d	file:
WCONTINUED	src/sys/wait/WCONTINUED.c	2;"	d	file:
WEOF	src/wctype/WEOF.c	2;"	d	file:
WEXITED	src/sys/wait/WEXITED.c	2;"	d	file:
WEXITSTATUS	src/sys/wait/WEXITSTATUS.c	3;"	d	file:
WIFCONTINUED	src/sys/wait/WIFCONTINUED.c	2;"	d	file:
WIFEXITED	src/sys/wait/WIFEXITED.c	3;"	d	file:
WIFSIGNALED	src/sys/wait/WIFSIGNALED.c	3;"	d	file:
WIFSTOPPED	src/sys/wait/WIFSTOPPED.c	3;"	d	file:
WINT_MAX	src/stdint/WINT_MAX.c	2;"	d	file:
WINT_MIN	src/stdint/WINT_MIN.c	2;"	d	file:
WNOHANG	src/sys/wait/WNOHANG.c	3;"	d	file:
WNOWAIT	src/sys/wait/WNOWAIT.c	2;"	d	file:
WORD_BIT	src/limits/WORD_BIT.c	2;"	d	file:
WRDE_APPEND	src/wordexp/WRDE_APPEND.c	2;"	d	file:
WRDE_BADCHAR	src/wordexp/WRDE_BADCHAR.c	2;"	d	file:
WRDE_BADVAL	src/wordexp/WRDE_BADVAL.c	2;"	d	file:
WRDE_CMDSUB	src/wordexp/WRDE_CMDSUB.c	2;"	d	file:
WRDE_DOOFFS	src/wordexp/WRDE_DOOFFS.c	2;"	d	file:
WRDE_NOCMD	src/wordexp/WRDE_NOCMD.c	2;"	d	file:
WRDE_NOSPACE	src/wordexp/WRDE_NOSPACE.c	2;"	d	file:
WRDE_NOSYS	src/wordexp/WRDE_NOSYS.c	2;"	d	file:
WRDE_REUSE	src/wordexp/WRDE_REUSE.c	2;"	d	file:
WRDE_SHOWERR	src/wordexp/WRDE_SHOWERR.c	2;"	d	file:
WRDE_SYNTAX	src/wordexp/WRDE_SYNTAX.c	2;"	d	file:
WRDE_UNDEF	src/wordexp/WRDE_UNDEF.c	2;"	d	file:
WSTOPPED	src/sys/wait/WSTOPPED.c	2;"	d	file:
WSTOPSIG	src/sys/wait/WSTOPSIG.c	3;"	d	file:
WTERMSIG	src/sys/wait/WTERMSIG.c	3;"	d	file:
WUNTRACED	src/sys/wait/WUNTRACED.c	3;"	d	file:
W_OK	src/unistd/W_OK.c	2;"	d	file:
XCASE	src/termios/XCASE.c	2;"	d	file:
XDIGIT	src/nonstd/ctype_t.c	/^	XDIGIT = (1 << 9),$/;"	e	enum:__anon5	file:
X_OK	src/unistd/X_OK.c	2;"	d	file:
YESEXPR	src/langinfo/YESEXPR.c	2;"	d	file:
YESSTR	src/langinfo/YESSTR.c	2;"	d	file:
_CS_PATH	src/unistd/_CS_PATH.c	2;"	d	file:
_Complex_I	src/complex/_Complex_I.c	3;"	d	file:
_Exit	src/stdlib/_Exit.c	/^_Noreturn void _Exit(int status)$/;"	f
_IOFBF	src/stdio/_IOFBF.c	2;"	d	file:
_IOLBF	src/stdio/_IOLBF.c	2;"	d	file:
_IONBF	src/stdio/_IONBF.c	2;"	d	file:
_Imaginary_I	src/complex/_Imaginary_I.c	4;"	d	file:
_PC_CHOWN_RESTRICTED	src/unistd/_PC_CHOWN_RESTRICTED.c	2;"	d	file:
_PC_LINK_MAX	src/unistd/_PC_LINK_MAX.c	2;"	d	file:
_PC_MAX_CANON	src/unistd/_PC_MAX_CANON.c	2;"	d	file:
_PC_MAX_INPUT	src/unistd/_PC_MAX_INPUT.c	2;"	d	file:
_PC_NAME_MAX	src/unistd/_PC_NAME_MAX.c	2;"	d	file:
_PC_NO_TRUNC	src/unistd/_PC_NO_TRUNC.c	2;"	d	file:
_PC_PATH_MAX	src/unistd/_PC_PATH_MAX.c	2;"	d	file:
_PC_PIPE_BUF	src/unistd/_PC_PIPE_BUF.c	2;"	d	file:
_PC_VDISABLE	src/unistd/_PC_VDISABLE.c	2;"	d	file:
_POSIX2_BC_BASE_MAX	src/limits/_POSIX2_BC_BASE_MAX.c	2;"	d	file:
_POSIX2_BC_DIM_MAX	src/limits/_POSIX2_BC_DIM_MAX.c	2;"	d	file:
_POSIX2_BC_SCALE_MAX	src/limits/_POSIX2_BC_SCALE_MAX.c	2;"	d	file:
_POSIX2_BC_STRING_MAX	src/limits/_POSIX2_BC_STRING_MAX.c	2;"	d	file:
_POSIX2_CHAR_TERM	src/unistd/_POSIX2_CHAR_TERM.c	2;"	d	file:
_POSIX2_COLL_WEIGHTS_MAX	src/limits/_POSIX2_COLL_WEIGHTS_MAX.c	2;"	d	file:
_POSIX2_C_DEV	src/unistd/_POSIX2_C_DEV.c	2;"	d	file:
_POSIX2_C_VERSION	src/unistd/_POSIX2_C_BIND.c	11;"	d	file:
_POSIX2_C_VERSION	src/unistd/_POSIX2_C_BIND.c	13;"	d	file:
_POSIX2_C_VERSION	src/unistd/_POSIX2_C_BIND.c	5;"	d	file:
_POSIX2_C_VERSION	src/unistd/_POSIX2_C_BIND.c	7;"	d	file:
_POSIX2_C_VERSION	src/unistd/_POSIX2_C_BIND.c	9;"	d	file:
_POSIX2_C_VERSION	src/unistd/_POSIX2_C_VERSION.c	11;"	d	file:
_POSIX2_C_VERSION	src/unistd/_POSIX2_C_VERSION.c	13;"	d	file:
_POSIX2_C_VERSION	src/unistd/_POSIX2_C_VERSION.c	5;"	d	file:
_POSIX2_C_VERSION	src/unistd/_POSIX2_C_VERSION.c	7;"	d	file:
_POSIX2_C_VERSION	src/unistd/_POSIX2_C_VERSION.c	9;"	d	file:
_POSIX2_EXPR_NEST_MAX	src/limits/_POSIX2_EXPR_NEST_MAX.c	2;"	d	file:
_POSIX2_FORT_DEV	src/unistd/_POSIX2_FORT_DEV.c	2;"	d	file:
_POSIX2_FORT_RUN	src/unistd/_POSIX2_FORT_RUN.c	2;"	d	file:
_POSIX2_LINE_MAX	src/limits/_POSIX2_LINE_MAX.c	2;"	d	file:
_POSIX2_LOCALEDEF	src/unistd/_POSIX2_LOCALEDEF.c	2;"	d	file:
_POSIX2_RE_DUP_MAX	src/limits/_POSIX2_RE_DUP_MAX.c	2;"	d	file:
_POSIX2_SW_DEV	src/unistd/_POSIX2_SW_DEV.c	2;"	d	file:
_POSIX2_UPE	src/unistd/_POSIX2_UPE.c	2;"	d	file:
_POSIX2_VERSION	src/unistd/_POSIX2_VERSION.c	11;"	d	file:
_POSIX2_VERSION	src/unistd/_POSIX2_VERSION.c	13;"	d	file:
_POSIX2_VERSION	src/unistd/_POSIX2_VERSION.c	5;"	d	file:
_POSIX2_VERSION	src/unistd/_POSIX2_VERSION.c	7;"	d	file:
_POSIX2_VERSION	src/unistd/_POSIX2_VERSION.c	9;"	d	file:
_POSIX_ARG_MAX	src/limits/_POSIX_ARG_MAX.c	2;"	d	file:
_POSIX_CHILD_MAX	src/limits/_POSIX_CHILD_MAX.c	2;"	d	file:
_POSIX_CHOWN_RESTRICTED	src/unistd/_POSIX_CHOWN_RESTRICTED.c	2;"	d	file:
_POSIX_JOB_CONTROL	src/unistd/_POSIX_JOB_CONTROL.c	2;"	d	file:
_POSIX_LINK_MAX	src/limits/_POSIX_LINK_MAX.c	2;"	d	file:
_POSIX_MAX_CANON	src/limits/_POSIX_MAX_CANON.c	2;"	d	file:
_POSIX_MAX_INPUT	src/limits/_POSIX_MAX_INPUT.c	2;"	d	file:
_POSIX_NAME_MAX	src/limits/_POSIX_NAME_MAX.c	2;"	d	file:
_POSIX_NGROUPS_MAX	src/limits/_POSIX_NGROUPS_MAX.c	2;"	d	file:
_POSIX_NO_TRUNC	src/unistd/_POSIX_NO_TRUNC.c	2;"	d	file:
_POSIX_OPEN_MAX	src/limits/_POSIX_OPEN_MAX.c	2;"	d	file:
_POSIX_PATH_MAX	src/limits/_POSIX_PATH_MAX.c	2;"	d	file:
_POSIX_PIPE_BUF	src/limits/_POSIX_PIPE_BUF.c	2;"	d	file:
_POSIX_SAVED_IDS	src/unistd/_POSIX_SAVED_IDS.c	2;"	d	file:
_POSIX_SOURCE	src/nonstd/_FTM/_POSIX_SOURCE.c	1;"	d	file:
_POSIX_SSIZE_MAX	src/limits/_POSIX_SSIZE_MAX.c	3;"	d	file:
_POSIX_STREAM_MAX	src/limits/_POSIX_STREAM_MAX.c	2;"	d	file:
_POSIX_TZNAME_MAX	src/limits/_POSIX_TZNAME_MAX.c	3;"	d	file:
_POSIX_VDISABLE	src/unistd/_POSIX_VDISABLE.c	2;"	d	file:
_POSIX_VERISON	src/unistd/_POSIX_VERSION.c	3;"	d	file:
_POSIX_VERSION	src/unistd/_POSIX_VERSION.c	11;"	d	file:
_POSIX_VERSION	src/unistd/_POSIX_VERSION.c	13;"	d	file:
_POSIX_VERSION	src/unistd/_POSIX_VERSION.c	5;"	d	file:
_POSIX_VERSION	src/unistd/_POSIX_VERSION.c	7;"	d	file:
_POSIX_VERSION	src/unistd/_POSIX_VERSION.c	9;"	d	file:
_SC_2_CHAR_TERM	src/unistd/_SC_2_CHAR_TERM.c	2;"	d	file:
_SC_2_C_BIND	src/unistd/_SC_2_C_BIND.c	2;"	d	file:
_SC_2_C_DEV	src/unistd/_SC_2_C_DEV.c	2;"	d	file:
_SC_2_C_VERSION	src/unistd/_SC_2_C_VERSION.c	2;"	d	file:
_SC_2_FORT_DEV	src/unistd/_SC_2_FORT_DEV.c	2;"	d	file:
_SC_2_FORT_RUN	src/unistd/_SC_2_FORT_RUN.c	2;"	d	file:
_SC_2_LOCALEDEF	src/unistd/_SC_2_LOCALEDEF.c	2;"	d	file:
_SC_2_SW_DEV	src/unistd/_SC_2_SW_DEV.c	2;"	d	file:
_SC_2_UPE	src/unistd/_SC_2_UPE.c	2;"	d	file:
_SC_2_VERSION	src/unistd/_SC_2_VERSION.c	2;"	d	file:
_SC_ARG_MAX	src/unistd/_SC_ARG_MAX.c	2;"	d	file:
_SC_ATEXIT_MAX	src/unistd/_SC_ATEXIT_MAX.c	2;"	d	file:
_SC_BC_BASE_MAX	src/unistd/_SC_BC_BASE_MAX.c	2;"	d	file:
_SC_BC_DIM_MAX	src/unistd/_SC_BC_DIM_MAX.c	2;"	d	file:
_SC_BC_SCALE_MAX	src/unistd/_SC_BC_SCALE_MAX.c	2;"	d	file:
_SC_BC_STRING_MAX	src/unistd/_SC_BC_STRING_MAX.c	2;"	d	file:
_SC_CHILD_MAX	src/unistd/_SC_CHILD_MAX.c	2;"	d	file:
_SC_CLK_TCK	src/unistd/_SC_CLK_TCK.c	2;"	d	file:
_SC_COLL_WEIGHTS_MAX	src/unistd/_SC_COLL_WEIGHTS_MAX.c	2;"	d	file:
_SC_EXPR_NEST_MAX	src/unistd/_SC_EXPR_NEST_MAX.c	2;"	d	file:
_SC_IOV_MAX	src/unistd/_SC_IOV_MAX.c	2;"	d	file:
_SC_JOB_CONTROL	src/unistd/_SC_JOB_CONTROL.c	2;"	d	file:
_SC_LINE_MAX	src/unistd/_SC_LINE_MAX.c	2;"	d	file:
_SC_NGROUPS_MAX	src/unistd/_SC_NGROUPS_MAX.c	2;"	d	file:
_SC_OPEN_MAX	src/unistd/_SC_OPEN_MAX.c	2;"	d	file:
_SC_PAGESIZE	src/unistd/_SC_PAGESIZE.c	2;"	d	file:
_SC_PAGE_SIZE	src/unistd/_SC_PAGE_SIZE.c	2;"	d	file:
_SC_PASS_MAX	src/unistd/_SC_PASS_MAX.c	2;"	d	file:
_SC_RE_DUP_MAX	src/unistd/_SC_RE_DUP_MAX.c	2;"	d	file:
_SC_SAVED_IDS	src/unistd/_SC_SAVED_IDS.c	2;"	d	file:
_SC_STREAM_MAX	src/unistd/_SC_STREAM_MAX.c	3;"	d	file:
_SC_TZNAME_MAX	src/unistd/_SC_TZNAME_MAX.c	3;"	d	file:
_SC_VERSION	src/unistd/_SC_VERSION.c	2;"	d	file:
_SC_XOPEN_CRYPT	src/unistd/_SC_XOPEN_CRYPT.c	2;"	d	file:
_SC_XOPEN_ENH_I18N	src/unistd/_SC_XOPEN_ENH_I18N.c	2;"	d	file:
_SC_XOPEN_SHM	src/unistd/_SC_XOPEN_SHM.c	2;"	d	file:
_SC_XOPEN_UNIX	src/unistd/_SC_XOPEN_UNIX.c	2;"	d	file:
_SC_XOPEN_VERSION	src/unistd/_SC_XOPEN_VERSION.c	2;"	d	file:
_SC_XOPEN_XCU_VERSION	src/unistd/_SC_XOPEN_XCU_VERSION.c	2;"	d	file:
_XOPEN_CRYPT	src/unistd/_XOPEN_CRYPT.c	2;"	d	file:
_XOPEN_ENH_I18N	src/unistd/_XOPEN_ENH_I18N.c	2;"	d	file:
_XOPEN_IOV_MAX	src/limits/_XOPEN_IOV_MAX.c	2;"	d	file:
_XOPEN_LEGACY	src/re_comp/re_exec.c	3;"	d	file:
_XOPEN_LEGACY	src/regexp/advance.c	3;"	d	file:
_XOPEN_LEGACY	src/regexp/compile.c	3;"	d	file:
_XOPEN_LEGACY	src/regexp/step.c	3;"	d	file:
_XOPEN_LEGACY	src/stdio/getw.c	3;"	d	file:
_XOPEN_LEGACY	src/stdio/putw.c	3;"	d	file:
_XOPEN_SHM	src/unistd/_XOPEN_SHM.c	2;"	d	file:
_XOPEN_UNIX	src/unistd/_XOPEN_UNIX.c	2;"	d	file:
_XOPEN_VERSION	src/unistd/_XOPEN_VERSION.c	11;"	d	file:
_XOPEN_VERSION	src/unistd/_XOPEN_VERSION.c	5;"	d	file:
_XOPEN_VERSION	src/unistd/_XOPEN_VERSION.c	7;"	d	file:
_XOPEN_VERSION	src/unistd/_XOPEN_VERSION.c	9;"	d	file:
_XOPEN_XCU_VERSION	src/unistd/_XOPEN_XCU_VERSION.c	2;"	d	file:
__DATE__	src/nonstd/_PREDEF/__DATE__.c	1;"	d	file:
__FILE	src/nonstd/struct_FILE.c	/^struct __FILE {$/;"	s	file:
__FILE__	src/nonstd/_PREDEF/__FILE__.c	1;"	d	file:
__LINE__	src/nonstd/_PREDEF/__LINE__.c	1;"	d	file:
__LONGEST_STRERR	src/string/strerror.c	4;"	d	file:
__PLATFORM__	src/sys/utsname/uname.c	5;"	d	file:
__STDC_HOSTED__	src/nonstd/_PREDEF/__STDC_HOSTED__.c	1;"	d	file:
__STDC_IEC_559_COMPLEX__	src/nonstd/_PREDEF/__STDC_IEC_559_COMPLEX__.c	1;"	d	file:
__STDC_IEC_559__	src/nonstd/_PREDEF/__STDC_IEC_559__.c	1;"	d	file:
__STDC_ISO_10646__	src/nonstd/_PREDEF/__STDC_ISO_10646__.c	1;"	d	file:
__STDC_VERSION__	src/nonstd/_PREDEF/__STDC_VERSION__.c	1;"	d	file:
__STDC__	src/nonstd/_PREDEF/__STDC__.c	1;"	d	file:
__TIME__	src/nonstd/_PREDEF/__TIME__.c	1;"	d	file:
__assert	src/assert/__assert.c	/^void __assert(const char *expr, const char *file, int line, const char *func)$/;"	f
__bool_true_false_are_defined	src/stdbool/__bool_true_false_are_defined.c	2;"	d	file:
__errno	src/errno/__errno.c	/^int *__errno(void)$/;"	f
__func__	src/assert/assert.c	12;"	d	file:
__int_n_cs_precedes	src/locale/struct_lconv.c	/^	char __int_n_cs_precedes;$/;"	m	struct:lconv	file:
__int_n_sep_by_space	src/locale/struct_lconv.c	/^	char __int_n_sep_by_space;$/;"	m	struct:lconv	file:
__int_n_sign_posn	src/locale/struct_lconv.c	/^	char __int_n_sign_posn;$/;"	m	struct:lconv	file:
__int_p_cs_precedes	src/locale/struct_lconv.c	/^	char __int_p_cs_precedes;$/;"	m	struct:lconv	file:
__int_p_sep_by_space	src/locale/struct_lconv.c	/^	char __int_p_sep_by_space;$/;"	m	struct:lconv	file:
__int_p_sign_posn	src/locale/struct_lconv.c	/^	char __int_p_sign_posn;$/;"	m	struct:lconv	file:
__libc	src/nonstd/__libc.c	/^void *__libc(LIBC_INTERNAL variable)$/;"	f
__libc_per_thread	src/nonstd/__libc_per_thread.c	/^void *__libc_per_thread(LIBC_INTERNAL variable)$/;"	f
__libc_start	src/nonstd/__libc_start.c	/^void __libc_start(int argc, char **argv)$/;"	f
__loc1	src/libgen/__loc1.c	/^char *__loc1;$/;"	v
__locale_t	src/nonstd/struct_locale_t.c	/^struct __locale_t {$/;"	s	file:
__make_key	src/nonstd/__pthread_per_thread.c	/^static void __make_key(void)$/;"	f	file:
__padding	src/signal/struct_sigaction.c	/^	void (*__padding)(int, void *, void *);$/;"	m	struct:sigaction	file:
__per_thread_key	src/nonstd/__pthread_per_thread.c	/^static pthread_key_t __per_thread_key;$/;"	v	file:
__printf	src/nonstd/__printf.c	3;"	d	file:
__scanf	src/nonstd/__scanf.c	3;"	d	file:
__sem_anonymous	src/sys/sem/struct_sem_anonymous.c	/^struct __sem_anonymous {$/;"	s	file:
__stderr	src/stdio/__stderr.c	/^FILE *__stderr;$/;"	v
__stdin	src/stdio/__stdin.c	/^FILE *__stdin;$/;"	v
__stdout	src/stdio/__stdout.c	/^FILE *__stdout;$/;"	v
_exit	src/unistd/_exit.c	/^void _exit(int status)$/;"	f
_longjmp	src/setjmp/_longjmp.c	/^void _longjmp(jmp_buf env, int val)$/;"	f
_setjmp	src/setjmp/_setjmp.c	/^int _setjmp(jmp_buf env)$/;"	f
_tolower	src/ctype/_tolower.c	2;"	d	file:
_toupper	src/ctype/_toupper.c	2;"	d	file:
a64l	src/stdlib/a64l.c	/^long a64l(const char *s)$/;"	f
abday	src/nonstd/struct_locale_t.c	/^		char *abday[7];$/;"	m	struct:__locale_t::__anon9	file:
abmon	src/nonstd/struct_locale_t.c	/^		char *abmon[12];$/;"	m	struct:__locale_t::__anon9	file:
abort	src/stdlib/abort.c	/^_Noreturn void abort(void)$/;"	f
abs	src/stdlib/abs.c	/^int abs(int j)$/;"	f
access	src/unistd/access.c	/^int access(const char *path, int amode)$/;"	f
acos	src/math/acos.c	/^TYPE TGFN(acos)(TYPE x)$/;"	f
acosh	src/math/acosh.c	/^TYPE TGFN(acosh)(TYPE x)$/;"	f
actime	src/utime/struct_utimbuf.c	/^	time_t actime;$/;"	m	struct:utimbuf	file:
advance	src/regexp/advance.c	/^int advance(const char *string, const char *expbuf)$/;"	f
alarm	src/unistd/alarm.c	/^unsigned alarm(unsigned seconds)$/;"	f
all	src/nonstd/struct_locale_t.c	/^	char *all;$/;"	m	struct:__locale_t	file:
allocated	src/nonstd/struct_FILE.c	/^		int allocated;$/;"	m	struct:__FILE::__anon7	file:
alt_digits	src/nonstd/struct_locale_t.c	/^		char *alt_digits;$/;"	m	struct:__locale_t::__anon9	file:
am_pm	src/nonstd/struct_locale_t.c	/^		char *am_pm[2];$/;"	m	struct:__locale_t::__anon9	file:
and	src/iso646/and.c	2;"	d	file:
and_eq	src/iso646/and_eq.c	2;"	d	file:
asctime	src/time/asctime.c	/^char * asctime(const struct tm * timeptr)$/;"	f
asin	src/math/asin.c	/^TYPE TGFN(asin)(TYPE x)$/;"	f
asinh	src/math/asinh.c	/^TYPE TGFN(asinh)(TYPE x)$/;"	f
assert	src/assert/assert.c	15;"	d	file:
assert	src/assert/assert.c	3;"	d	file:
assert	src/assert/assert.c	7;"	d	file:
atan	src/math/atan.c	/^TYPE TGFN(atan)(TYPE x)$/;"	f
atan2	src/math/atan2.c	/^TYPE TGFN(atan2)(TYPE y, TYPE x)$/;"	f
atanh	src/math/atanh.c	/^TYPE TGFN(atanh)(TYPE x)$/;"	f
atexit	src/nonstd/struct_atexit.c	/^struct atexit {$/;"	s	file:
atexit	src/stdlib/atexit.c	/^int atexit(void (*func)(void))$/;"	f
atof	src/stdlib/atof.c	/^double atof(const char * nptr)$/;"	f
atoi	src/stdlib/atoi.c	/^int atoi(const char * nptr)$/;"	f
atol	src/stdlib/atol.c	/^long int atol(const char * nptr)$/;"	f
atoll	src/stdlib/atoll.c	/^long long int atoll(const char *nptr)$/;"	f
bandinfo	src/stropts/struct_bandinfo.c	/^struct bandinfo {$/;"	s	file:
base	src/ftw/struct_FTW.c	/^	int base;$/;"	m	struct:FTW	file:
basename	src/libgen/basename.c	/^char * basename(char * path)$/;"	f
bcmp	src/strings/bcmp.c	/^int bcmp(const void *s1, const void *s2, size_t n)$/;"	f
bcopy	src/strings/bcopy.c	/^int bcopy(const void *s1, void *s2, size_t n)$/;"	f
bi_flag	src/stropts/struct_bandinfo.c	/^	int bi_flag;$/;"	m	struct:bandinfo	file:
bi_pri	src/stropts/struct_bandinfo.c	/^	unsigned char bi_pri;$/;"	m	struct:bandinfo	file:
bitand	src/iso646/bitand.c	2;"	d	file:
bitor	src/iso646/bitor.c	2;"	d	file:
bool	src/stdbool/bool.c	2;"	d	file:
brk	src/unistd/brk.c	/^int brk(void *addr)$/;"	f
bsd_signal	src/signal/bsd_signal.c	/^void (*bsd_signal(int sig, void (*func)(int)))(int)$/;"	f
bsearch	src/stdlib/bsearch.c	/^void * bsearch(const void * key, const void * base, size_t nmemb, size_t size, int (*compar)(const void *, const void*))$/;"	f
bsize	src/nonstd/struct_FILE.c	/^	int bsize;$/;"	m	struct:__FILE	file:
btowc	src/wchar/btowc.c	/^wint_t btowc(int c)$/;"	f
buf	src/nonstd/struct_FILE.c	/^		char *buf;$/;"	m	struct:__FILE::__anon7	file:
buf	src/nonstd/struct_FILE.c	/^	char *buf;$/;"	m	struct:__FILE	file:
buf	src/stropts/struct_strbuf.c	/^	char *buf;$/;"	m	struct:strbuf	file:
buf	src/stropts/struct_strpeek.c	/^	char *buf;$/;"	m	struct:strpeek	file:
buffering	src/nonstd/struct_FILE.c	/^	int buffering;$/;"	m	struct:__FILE	file:
buftype	src/nonstd/struct_FILE.c	/^	enum { SUPPLIED, ALLOCED, UNSET } buftype;$/;"	m	struct:__FILE	typeref:enum:__FILE::__anon6	file:
bzero	src/strings/bzero.c	/^void bzero(void*s, size_t n)$/;"	f
c_cc	src/termios/struct_termios.c	/^	cc_t c_cc[NCCS];$/;"	m	struct:termios	file:
c_cflag	src/termios/struct_termios.c	/^	tcflag_t c_cflag;$/;"	m	struct:termios	file:
c_iflag	src/termios/struct_termios.c	/^	tcflag_t c_iflag;$/;"	m	struct:termios	file:
c_lflag	src/termios/struct_termios.c	/^	tcflag_t c_lflag;$/;"	m	struct:termios	file:
c_oflag	src/termios/struct_termios.c	/^	tcflag_t c_oflag;$/;"	m	struct:termios	file:
cabs	src/complex/cabs.c	/^TYPE TGFN(cabs)(TYPE complex z)$/;"	f
cacos	src/complex/cacos.c	/^TYPE complex TGFN(cacos)(TYPE complex z)$/;"	f
cacosh	src/complex/cacosh.c	/^TYPE complex TGFN(cacosh)(TYPE complex z)$/;"	f
calloc	src/stdlib/calloc.c	/^void * calloc(size_t nmemb, size_t size)$/;"	f
carg	src/complex/carg.c	/^TYPE TGFN(carg)(TYPE complex z)$/;"	f
casin	src/complex/casin.c	/^TYPE complex TGFN(casin)(TYPE complex z)$/;"	f
casinh	src/complex/casinh.c	/^TYPE complex TGFN(casinh)(TYPE complex z)$/;"	f
catan	src/complex/catan.c	/^TYPE complex TGFN(catan)(TYPE complex z)$/;"	f
catanh	src/complex/catanh.c	/^TYPE complex TGFN(catanh)(TYPE complex z)$/;"	f
catclose	src/nl_types/catclose.c	/^int catclose(nl_catd catd)$/;"	f
catgets	src/nl_types/catgets.c	/^char * catgets(nl_catd catd, int set_id, int msg_id, const char * s)$/;"	f
catopen	src/nl_types/catopen.c	/^nl_catd catopen(const char* name, int oflag)$/;"	f
cbrt	src/math/cbrt.c	/^TYPE TGFN(cbrt)(TYPE x)$/;"	f
cc_t	src/termios/cc_t.c	/^typedef int                                                                cc_t;$/;"	t	file:
ccos	src/complex/ccos.c	/^TYPE complex TGFN(ccos)(TYPE complex z)$/;"	f
ccosh	src/complex/ccosh.c	/^TYPE complex TGFN(ccosh)(TYPE complex z)$/;"	f
ceil	src/math/ceil.c	/^TYPE TGFN(ceil)(TYPE x)$/;"	f
cexp	src/complex/cexp.c	/^TYPE complex TGFN(cexp)(TYPE complex z)$/;"	f
cfgetispeed	src/termios/cfgetispeed.c	/^speed_t cfgetispeed(const struct termios *termios_p)$/;"	f
cfgetospeed	src/termios/cfgetospeed.c	/^speed_t cfgetospeed(const struct termios *termios_p)$/;"	f
cfsetispeed	src/termios/cfsetispeed.c	/^int cfsetispeed(struct termios *termios_p, speed_t speed)$/;"	f
cfsetospeed	src/termios/cfsetospeed.c	/^int cfsetospeed(struct termios *termios_p, speed_t speed)$/;"	f
cgid	src/sys/ipc/struct_ipc_perm.c	/^	uid_t cgid;	\/* Creator's group ID *\/$/;"	m	struct:ipc_perm	file:
chdir	src/unistd/chdir.c	/^int chdir(const char *path)$/;"	f
chmod	src/sys/stat/chmod.c	/^int chmod(const char *path, mode_t mode)$/;"	f
chown	src/unistd/chown.c	/^int chown(const char *path, uid_t owner, gid_t group)$/;"	f
chroot	src/unistd/chroot.c	/^int chroot(const char *path)$/;"	f
cimag	src/complex/cimag.c	/^TYPE TGFN(cimag)(TYPE complex z)$/;"	f
clearerr	src/stdio/clearerr.c	/^void clearerr(FILE * stream)$/;"	f
clock	src/time/clock.c	/^clock_t clock(void)$/;"	f
clock_t	src/time/clock_t.c	/^typedef long int                                                        clock_t;$/;"	t	file:
clog	src/complex/clog.c	/^TYPE complex TGFN(clog)(TYPE complex z)$/;"	f
close	src/stdio/fclose.c	8;"	d	file:
close	src/unistd/close.c	/^int close(int fildes)$/;"	f
closedir	src/dirent/closedir.c	/^int closedir(DIR *dirp)$/;"	f
closelog	src/syslog/closelog.c	/^void closelog(void)$/;"	f
collate	src/nonstd/struct_locale_t.c	/^	char *collate;$/;"	m	struct:__locale_t	file:
collation	src/nonstd/struct_locale_t.c	/^	unsigned char *collation;$/;"	m	struct:__locale_t	file:
compile	src/regexp/compile.c	/^char *compile(char *instring, char *expbuf, const char *endbuf, int eof)$/;"	f
compl	src/iso646/compl.c	2;"	d	file:
complex	src/complex/complex.c	2;"	d	file:
confstr	src/unistd/confstr.c	/^size_t confstr(int name, char *buf, size_t len)$/;"	f
conj	src/complex/conj.c	/^TYPE complex TGFN(conj)(TYPE complex z)$/;"	f
copysign	src/math/copysign.c	/^TYPE TGFN(copysign)(TYPE x, TYPE y)$/;"	f
cos	src/math/cos.c	/^TYPE TGFN(cos)(TYPE x)$/;"	f
cosh	src/math/cosh.c	/^TYPE TGFN(cosh)(TYPE x)$/;"	f
cpow	src/complex/cpow.c	/^TYPE complex TGFN(cpow)(TYPE complex x, TYPE complex y)$/;"	f
cproj	src/complex/cproj.c	/^TYPE complex TGFN(cproj)(TYPE complex z)$/;"	f
creal	src/complex/creal.c	/^TYPE TGFN(creal)(TYPE complex z)$/;"	f
creat	src/fcntl/creat.c	/^int creat(const char *path, mode_t mode)$/;"	f
crypt	src/unistd/crypt.c	/^char * crypt( const char *key, const char *salt)$/;"	f
csin	src/complex/csin.c	/^TYPE complex TGFN(csin)(TYPE complex z)$/;"	f
csinh	src/complex/csinh.c	/^TYPE complex TGFN(csinh)(TYPE complex z)$/;"	f
csqrt	src/complex/csqrt.c	/^TYPE complex TGFN(csqrt)(TYPE complex z)$/;"	f
ctan	src/complex/ctan.c	/^TYPE complex TGFN(ctan)(TYPE complex z)$/;"	f
ctanh	src/complex/ctanh.c	/^TYPE complex TGFN(ctanh)(TYPE complex z)$/;"	f
ctattr	src/nonstd/struct_locale_t.c	/^	unsigned char *ctattr;$/;"	m	struct:__locale_t	file:
ctermid	src/unistd/ctermid.c	/^char * ctermid(char * s)$/;"	f
ctime	src/time/ctime.c	/^char * ctime(const time_t * timer)$/;"	f
ctlbuf	src/stropts/struct_strfdinsert.c	/^	struct strbuf ctlbuf;$/;"	m	struct:strfdinsert	typeref:struct:strfdinsert::strbuf	file:
ctolower	src/nonstd/struct_locale_t.c	/^	unsigned char *ctolower;$/;"	m	struct:__locale_t	file:
ctoupper	src/nonstd/struct_locale_t.c	/^	unsigned char *ctoupper;$/;"	m	struct:__locale_t	file:
ctype	src/nonstd/struct_locale_t.c	/^	char *ctype;$/;"	m	struct:__locale_t	file:
ctype_t	src/nonstd/ctype_t.c	/^} ctype_t;$/;"	t	typeref:enum:__anon5	file:
cuid	src/sys/ipc/struct_ipc_perm.c	/^	uid_t cuid;	\/* Creator's user ID *\/$/;"	m	struct:ipc_perm	file:
currency_symbol	src/locale/struct_lconv.c	/^	char *currency_symbol;		\/* "" *\/$/;"	m	struct:lconv	file:
cuserid	src/unistd/cuserid.c	/^char *cuserid(char *s)$/;"	f
d_fmt	src/nonstd/struct_locale_t.c	/^		char *d_fmt;$/;"	m	struct:__locale_t::__anon9	file:
d_ino	src/dirent/struct_dirent.c	/^	ino_t d_ino;$/;"	m	struct:dirent	file:
d_name	src/dirent/struct_dirent.c	/^	char d_name[];$/;"	m	struct:dirent	file:
d_t_fmt	src/nonstd/struct_locale_t.c	/^		char *d_t_fmt;$/;"	m	struct:__locale_t::__anon9	file:
data	src/search/ENTRY.c	/^	void *	data;$/;"	m	struct:__anon14	file:
databuf	src/stropts/struct_strfdinsert.c	/^	struct strbuf databuf;$/;"	m	struct:strfdinsert	typeref:struct:strfdinsert::strbuf	file:
datum	src/ndbm/datum.c	/^} datum;$/;"	t	typeref:struct:__anon3	file:
day	src/nonstd/struct_locale_t.c	/^		char *day[7];$/;"	m	struct:__locale_t::__anon9	file:
daylight	src/time/daylight.c	/^int daylight;$/;"	v
dbm_clearerr	src/ndbm/dbm_clearerr.c	/^int dbm_clearerr(DBM * db)$/;"	f
dbm_close	src/ndbm/dbm_close.c	/^void dbm_close(DBM * db)$/;"	f
dbm_delete	src/ndbm/dbm_delete.c	/^int dbm_delete(DBM * db, datum key)$/;"	f
dbm_error	src/ndbm/dbm_error.c	/^int dbm_error(DBM * db)$/;"	f
dbm_fetch	src/ndbm/dbm_fetch.c	/^datum dbm_fetch(DBM * db, datum key)$/;"	f
dbm_firstkey	src/ndbm/dbm_firstkey.c	/^datum dbm_firstkey(DBM * db)$/;"	f
dbm_nextkey	src/ndbm/dbm_nextkey.c	/^datum dbm_nextkey(DBM * db)$/;"	f
dbm_open	src/ndbm/dbm_open.c	/^DBM *dbm_open(const char * file, int open_flags, mode_t file_mode)$/;"	f
dbm_store	src/ndbm/dbm_store.c	/^int dbm_store(DBM * db, datum key, datum content, int store_mode)$/;"	f
decimal_point	src/locale/struct_lconv.c	/^	char *decimal_point;		\/* "." *\/$/;"	m	struct:lconv	file:
dev_t	src/sys/types/dev_t.c	/^typedef unsigned long long int                                            dev_t;$/;"	t	file:
difftime	src/time/difftime.c	/^double difftime(time_t time1, time_t time0)$/;"	f
direction	src/nonstd/struct_locale_t.c	/^			char direction;$/;"	m	struct:__locale_t::__anon9::__anon10	file:
dirent	src/dirent/struct_dirent.c	/^struct dirent {$/;"	s	file:
dirname	src/libgen/dirname.c	/^char * dirname(char * path)$/;"	f
div	src/stdlib/div.c	/^div_t div(int numer, int denom)$/;"	f
div_t	src/stdlib/div_t.c	/^} div_t;$/;"	t	typeref:struct:__anon18	file:
double_t	src/math/double_t.c	/^typedef double double_t;$/;"	t	file:
double_t	src/math/double_t.c	/^typedef long double double_t;$/;"	t	file:
dptr	src/ndbm/datum.c	/^	void *	dptr;$/;"	m	struct:__anon3	file:
drand48	src/stdlib/drand48.c	/^double drand48(void)$/;"	f
dsize	src/ndbm/datum.c	/^	size_t	dsize;$/;"	m	struct:__anon3	file:
dstflag	src/sys/timeb/struct_timeb.c	/^	short dstflag;$/;"	m	struct:timeb	file:
dup	src/unistd/dup.c	/^int dup(int fildes)$/;"	f
dup2	src/unistd/dup2.c	/^int dup2(int fildes, int fildes2)$/;"	f
ecvt	src/stdlib/ecvt.c	/^char *ecvt(double value, int ndigit, int *decpt, int *sign)$/;"	f
encrypt	src/unistd/encrypt.c	/^void encrypt(char block[64], int edflag)$/;"	f
end_day	src/nonstd/struct_locale_t.c	/^			int end_day;$/;"	m	struct:__locale_t::__anon9::__anon10	file:
end_month	src/nonstd/struct_locale_t.c	/^			int end_month;$/;"	m	struct:__locale_t::__anon9::__anon10	file:
end_year	src/nonstd/struct_locale_t.c	/^			int end_year;$/;"	m	struct:__locale_t::__anon9::__anon10	file:
endgrent	src/grp/endgrent.c	/^void endgrent(void)$/;"	f
endorder	src/search/VISIT.c	/^	endorder,$/;"	e	enum:__anon15	file:
endpwent	src/pwd/endpwent.c	/^void endpwent(void)$/;"	f
endutxent	src/utmpx/endutxent.c	/^void endutxent(void)$/;"	f
environ	src/environ.c	/^char **environ;$/;"	v
eof	src/nonstd/struct_FILE.c	/^	int eof;$/;"	m	struct:__FILE	file:
era	src/nonstd/struct_locale_t.c	/^		} era;$/;"	m	struct:__locale_t::__anon9	typeref:struct:__locale_t::__anon9::__anon10	file:
era_d_fmt	src/nonstd/struct_locale_t.c	/^		char *era_d_fmt;$/;"	m	struct:__locale_t::__anon9	file:
era_d_t_fmt	src/nonstd/struct_locale_t.c	/^		char *era_d_t_fmt;$/;"	m	struct:__locale_t::__anon9	file:
era_format	src/nonstd/struct_locale_t.c	/^			char *era_format;$/;"	m	struct:__locale_t::__anon9::__anon10	file:
era_name	src/nonstd/struct_locale_t.c	/^			char *era_name;$/;"	m	struct:__locale_t::__anon9::__anon10	file:
era_t_fmt	src/nonstd/struct_locale_t.c	/^		char *era_t_fmt;$/;"	m	struct:__locale_t::__anon9	file:
erand48	src/stdlib/erand48.c	/^double erand48(unsigned short xsubi[3])$/;"	f
erf	src/math/erf.c	/^TYPE TGFN(erf)(TYPE x)$/;"	f
erfc	src/math/erfc.c	/^TYPE TGFN(erfc)(TYPE x)$/;"	f
err	src/nonstd/struct_FILE.c	/^	int err;$/;"	m	struct:__FILE	file:
errno	src/errno/errno.c	2;"	d	file:
events	src/poll/struct_pollfd.c	/^	short events;$/;"	m	struct:pollfd	file:
execl	src/unistd/execl.c	/^int execl(const char *path, const char *arg0, ...  \/*, (char *)0 *\/)$/;"	f
execle	src/unistd/execle.c	/^int execle(const char *path, const char *arg0, ... \/*, (char *)0, char *const envp[] *\/)$/;"	f
execlp	src/unistd/execlp.c	/^int execlp(const char *file, const char *arg0, ...  \/*, (char *0) *\/)$/;"	f
execv	src/unistd/execv.c	/^int execv(const char *path, char *const argv[])$/;"	f
execve	src/unistd/execve.c	/^int execve(const char *path, char *const argv[], char *const envp[])$/;"	f
execvp	src/unistd/execvp.c	/^int execvp(const char *file, char *const argv[])$/;"	f
exit	src/stdlib/exit.c	/^_Noreturn void exit(int status)$/;"	f
exp	src/math/exp.c	/^TYPE TGFN(exp)(TYPE x)$/;"	f
exp2	src/math/exp2.c	/^TYPE TGFN(exp2)(TYPE x)$/;"	f
expm1	src/math/expm1.c	/^TYPE TGFN(expm1)(TYPE x)$/;"	f
f_bavail	src/sys/statvfs/struct_statvfs.c	/^	fsblkcnt_t f_bavail;$/;"	m	struct:statvfs	file:
f_bfree	src/sys/statvfs/struct_statvfs.c	/^	fsblkcnt_t f_bfree;$/;"	m	struct:statvfs	file:
f_blocks	src/sys/statvfs/struct_statvfs.c	/^	fsblkcnt_t f_blocks;$/;"	m	struct:statvfs	file:
f_bsize	src/sys/statvfs/struct_statvfs.c	/^	unsigned long f_bsize;$/;"	m	struct:statvfs	file:
f_favail	src/sys/statvfs/struct_statvfs.c	/^	fsfilcnt_t f_favail;$/;"	m	struct:statvfs	file:
f_ffree	src/sys/statvfs/struct_statvfs.c	/^	fsfilcnt_t f_ffree;$/;"	m	struct:statvfs	file:
f_files	src/sys/statvfs/struct_statvfs.c	/^	fsfilcnt_t f_files;$/;"	m	struct:statvfs	file:
f_flag	src/sys/statvfs/struct_statvfs.c	/^	unsigned long f_flag;$/;"	m	struct:statvfs	file:
f_frsize	src/sys/statvfs/struct_statvfs.c	/^	unsigned long f_frsize;$/;"	m	struct:statvfs	file:
f_fsid	src/sys/statvfs/struct_statvfs.c	/^	unsigned long f_fsid;$/;"	m	struct:statvfs	file:
f_namemax	src/sys/statvfs/struct_statvfs.c	/^	unsigned long f_namemax;$/;"	m	struct:statvfs	file:
fabs	src/math/fabs.c	/^TYPE TGFN(fabs)(TYPE x)$/;"	f
false	src/stdbool/false.c	2;"	d	file:
fattach	src/stropts/fattach.c	/^int fattach(int fildes, const char * path )$/;"	f
fchdir	src/unistd/fchdir.c	/^int fchdir(int fildes)$/;"	f
fchmod	src/sys/stat/fchmod.c	/^int fchmod(int fildes, mode_t mode)$/;"	f
fchown	src/unistd/fchown.c	/^int fchown(int fildes, uid_t owner, gid_t group)$/;"	f
fclose	src/stdio/fclose.c	/^int fclose(FILE *stream)$/;"	f
fcntl	src/fcntl/fcntl.c	/^int fcntl(int fildes, int cmd, ...)$/;"	f
fcvt	src/stdlib/fcvt.c	/^char *fcvt(double value, int ndigit, int *decpt, int *sign)$/;"	f
fd	src/nonstd/struct_FILE.c	/^	int fd;$/;"	m	struct:__FILE	file:
fd	src/nonstd/struct_io_options.c	/^	int fd;$/;"	m	struct:io_options	file:
fd	src/poll/struct_pollfd.c	/^	int fd;$/;"	m	struct:pollfd	file:
fd	src/stropts/struct_strrecvfd.c	/^	int fd;$/;"	m	struct:strrecvfd	file:
fd_set	src/sys/time/fd_set.c	/^} fd_set;$/;"	t	typeref:struct:__anon21	file:
fdetach	src/stropts/fdetach.c	/^int fdetach(const char * path )$/;"	f
fdim	src/math/fdim.c	/^TYPE TGFN(fdim)(TYPE x, TYPE y)$/;"	f
fdopen	src/stdio/fdopen.c	/^FILE * fdopen(int fildes, const char * mode)$/;"	f
fds_bits	src/sys/time/fd_set.c	/^	long fds_bits[];$/;"	m	struct:__anon21	file:
feclearexcept	src/fenv/feclearexcept.c	/^int feclearexcept(int excepts)$/;"	f
fegetenv	src/fenv/fegetenv.c	/^int fegetenv(fenv_t *envp)$/;"	f
fegetexceptflag	src/fenv/fegetexceptflag.c	/^int fegetexceptflag(fexcept_t *flagp, int excepts)$/;"	f
fegetround	src/fenv/fegetround.c	/^int fegetround(void)$/;"	f
feholdexcept	src/fenv/feholdexcept.c	/^int feholdexcept(fenv_t *envp)$/;"	f
fenv_t	src/fenv/fenv_t.c	/^typedef unsigned long long int                                           fenv_t;$/;"	t	file:
feof	src/stdio/feof.c	/^int feof(FILE *stream)$/;"	f
feraiseexcept	src/fenv/feraiseexcept.c	/^int feraiseexcept(int excepts)$/;"	f
ferror	src/stdio/ferror.c	/^int ferror(FILE *stream)$/;"	f
fesetenv	src/fenv/fesetenv.c	/^int fesetenv(const fenv_t *envp)$/;"	f
fesetexceptflag	src/fenv/fesetexceptflag.c	/^int fesetexceptflag(const fexcept_t *flagp, int excepts)$/;"	f
fesetround	src/fenv/fesetround.c	/^int fesetround(int round)$/;"	f
fetestexcept	src/fenv/fetestexcept.c	/^int fetestexcept(int excepts)$/;"	f
feupdateenv	src/fenv/feupdateenv.c	/^int feupdateenv(const fenv_t *envp)$/;"	f
fexcept_t	src/fenv/fexcept_t.c	/^typedef unsigned long long int                                        fexcept_t;$/;"	t	file:
fflush	src/stdio/fflush.c	/^int fflush(FILE *stream)$/;"	f
ffs	src/strings/ffs.c	/^int ffs(int i)$/;"	f
fgetc	src/stdio/fgetc.c	/^int fgetc(FILE *stream)$/;"	f
fgetpos	src/stdio/fgetpos.c	/^int fgetpos(FILE * restrict stream, fpos_t * restrict pos)$/;"	f
fgets	src/stdio/fgets.c	/^char * fgets(char * restrict s, int n, FILE * restrict stream)$/;"	f
fgetwc	src/wchar/fgetwc.c	/^wint_t fgetwc(FILE * stream)$/;"	f
fgetws	src/wchar/fgetws.c	/^wchar_t * fgetws(wchar_t * restrict s, int n, FILE * restrict stream)$/;"	f
fildes	src/stropts/struct_strfdinsert.c	/^	int fildes;$/;"	m	struct:strfdinsert	file:
fileno	src/stdio/fileno.c	/^int fileno(FILE * stream)$/;"	f
flags	src/nonstd/struct_FILE.c	/^	int flags;$/;"	m	struct:__FILE	file:
flags	src/nonstd/struct_io_options.c	/^	int flags;$/;"	m	struct:io_options	file:
flags	src/stropts/struct_strfdinsert.c	/^	long flags;$/;"	m	struct:strfdinsert	file:
float_t	src/math/float_t.c	/^typedef double float_t;$/;"	t	file:
float_t	src/math/float_t.c	/^typedef float float_t;$/;"	t	file:
float_t	src/math/float_t.c	/^typedef long double float_t;$/;"	t	file:
flock	src/fcntl/struct_flock.c	/^struct flock {$/;"	s	file:
flockfile	src/nonstd/flockfile.c	4;"	d	file:
floor	src/math/floor.c	/^TYPE TGFN(floor)(TYPE x)$/;"	f
fma	src/math/fma.c	/^TYPE TGFN(fma)(TYPE x, TYPE y, TYPE z)$/;"	f
fmax	src/math/fmax.c	/^TYPE TGFN(fmax)(TYPE x, TYPE y)$/;"	f
fmin	src/math/fmin.c	/^TYPE TGFN(fmin)(TYPE x, TYPE y)$/;"	f
fmod	src/math/fmod.c	/^TYPE TGFN(fmod)(TYPE x, TYPE y)$/;"	f
fmtmsg	src/fmtmsg/fmtmsg.c	/^int fmtmsg(long classification, const char * label, int severity, const char * text, const char * action, const char * tag)$/;"	f
fnmatch	src/fnmatch/fnmatch.c	/^int fnmatch(const char * pattern, const char * string, int flags)$/;"	f
fnname	src/nonstd/struct_io_options.c	/^	const char *fnname;$/;"	m	struct:io_options	file:
fns	src/nonstd/struct_atexit.c	/^	void (*fns[32])(void);$/;"	m	struct:atexit	file:
fopen	src/stdio/fopen.c	/^FILE * fopen(const char * restrict filename, const char * restrict mode)$/;"	f
fork	src/unistd/fork.c	/^pid_t fork(void)$/;"	f
fpathconf	src/unistd/fpathconf.c	/^long fpathconf(int fildes, int name)$/;"	f
fpclassify	src/math/fpclassify.c	6;"	d	file:
fpos_t	src/stdio/fpos_t.c	/^typedef struct __fpos_t *                                                fpos_t;$/;"	t	typeref:struct:__fpos_t	file:
fprintf	src/stdio/fprintf.c	/^int fprintf(FILE * restrict stream, const char * restrict format, ...)$/;"	f
fputc	src/stdio/fputc.c	/^int fputc(int c, FILE *stream)$/;"	f
fputs	src/stdio/fputs.c	/^int fputs(const char * restrict s, FILE * restrict stream)$/;"	f
fputwc	src/wchar/fputwc.c	/^wint_t fputwc(wchar_t c, FILE * stream)$/;"	f
fputws	src/wchar/fputws.c	/^int fputws(const wchar_t * restrict s, FILE * restrict stream)$/;"	f
frac_digits	src/locale/struct_lconv.c	/^	char frac_digits;		\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
fread	src/stdio/fread.c	/^size_t fread(void * restrict ptr, size_t size, size_t nmemb, FILE * restrict stream)$/;"	f
free	src/stdlib/free.c	/^void free(void * ptr)$/;"	f
freopen	src/stdio/freopen.c	/^FILE * freopen(const char * restrict filename, const char * restrict mode, FILE * restrict stream)$/;"	f
frexp	src/math/frexp.c	/^TYPE TGFN(frexp)(TYPE value, int *exp)$/;"	f
fscanf	src/stdio/fscanf.c	/^int fscanf(FILE * restrict stream, const char * restrict format, ...)$/;"	f
fseek	src/stdio/fseek.c	/^int fseek(FILE *stream, long int offset, int whence)$/;"	f
fsetpos	src/stdio/fsetpos.c	/^int fsetpos(FILE *stream, const fpos_t *pos)$/;"	f
fstat	src/sys/stat/fstat.c	/^int fstat(int fildes, struct stat *buf)$/;"	f
fstatvfs	src/sys/statvfs/fstatvfs.c	/^int fstatvfs(int fildes, struct statvfs *buf)$/;"	f
fsync	src/unistd/fsync.c	/^int fsync(int fildes)$/;"	f
ftell	src/stdio/ftell.c	/^long int ftell(FILE *stream)$/;"	f
ftime	src/sys/timeb/ftime.c	/^int ftime(struct timeb *tp)$/;"	f
ftok	src/sys/ipc/ftok.c	/^key_t ftok(const char *path, int id)$/;"	f
ftruncate	src/unistd/ftruncate.c	/^int ftruncate(int fildes, off_t length)$/;"	f
ftrylockfile	src/nonstd/ftrylockfile.c	4;"	d	file:
ftw	src/ftw/ftw.c	/^int ftw(const char * path, int (*fn) (const char *, const struct stat * ptr, int flag), int ndirs)$/;"	f
funlockfile	src/nonstd/funlockfile.c	4;"	d	file:
fwide	src/wchar/fwide.c	/^int fwide(FILE * stream, int mode)$/;"	f
fwprintf	src/wchar/fwprintf.c	/^int fwprintf(FILE * restrict stream, const wchar_t * restrict format, ...)$/;"	f
fwrite	src/stdio/fwrite.c	/^size_t fwrite(const void * restrict ptr, size_t size, size_t nmemb, FILE * restrict stream)$/;"	f
fwscanf	src/wchar/fwscanf.c	/^int fwscanf(FILE * restrict stream, const wchar_t * restrict format, ...)$/;"	f
gamma	src/math/gamma.c	/^double gamma(double x)$/;"	f
gcvt	src/stdlib/gcvt.c	/^char *gcvt(double value, int ndigit, char *buf)$/;"	f
getc	src/stdio/getc.c	/^int getc(FILE *stream)$/;"	f
getc_unlocked	src/nonstd/getc_unlocked.c	4;"	d	file:
getchar	src/stdio/getchar.c	/^int getchar(void)$/;"	f
getcontext	src/ucontext/getcontext.c	/^int getcontext(ucontext_t *ucp)$/;"	f
getcwd	src/unistd/getcwd.c	/^char * getcwd(char *buf, size_t size)$/;"	f
getdate	src/time/getdate.c	/^struct tm *getdate(const char *string)$/;"	f
getdate_err	src/time/getdate_err.c	/^int getdate_err;$/;"	v
getdtablesize	src/unistd/getdtablesize.c	/^int getdtablesize(void)$/;"	f
getegid	src/unistd/getegid.c	/^gid_t getegid(void)$/;"	f
getenv	src/stdlib/getenv.c	/^char * getenv(const char * name)$/;"	f
geteuid	src/unistd/geteuid.c	/^uid_t geteuid(void)$/;"	f
getgid	src/unistd/getgid.c	/^gid_t getgid(void)$/;"	f
getgrent	src/grp/getgrent.c	/^struct group * getgrent(void)$/;"	f
getgrgid	src/grp/getgrgid.c	/^struct group * getgrgid(gid_t gid)$/;"	f
getgrnam	src/grp/getgrnam.c	/^struct group * getgrnam(const char * name)$/;"	f
getgroups	src/unistd/getgroups.c	/^int getgroups(int gidsetsize, gid_t grouplist[])$/;"	f
gethostid	src/unistd/gethostid.c	/^long gethostid(void)$/;"	f
getitimer	src/sys/time/getitimer.c	/^int getitimer(int which, struct itimerval *value)$/;"	f
getlogin	src/unistd/getlogin.c	/^char * getlogin(void)$/;"	f
getmsg	src/stropts/getmsg.c	/^int getmsg(int fd , struct strbuf * ctlptr , struct strbuf * dataptr , int * flagsp )$/;"	f
getopt	src/unistd/getopt.c	/^int getopt(int argc, char * const argv[], const char *optstring)$/;"	f
getpagesize	src/unistd/getpagesize.c	/^int getpagesize(void)$/;"	f
getpass	src/unistd/getpass.c	/^char *getpass(const char *prompt)$/;"	f
getpgid	src/unistd/getpgid.c	/^pid_t getpgid(pid_t pid)$/;"	f
getpgrp	src/unistd/getpgrp.c	/^pid_t getpgrp(void)$/;"	f
getpid	src/unistd/getpid.c	/^pid_t getpid(void)$/;"	f
getpmsg	src/stropts/getpmsg.c	/^int getpmsg(int fd , struct strbuf * ctlptr , struct strbuf * dataptr , int * bandp , int * flagsp )$/;"	f
getppid	src/unistd/getppid.c	/^pid_t getppid(void)$/;"	f
getpriority	src/sys/resource/getpriority.c	/^int getpriority(int which, id_t who)$/;"	f
getpwent	src/pwd/getpwent.c	/^struct passwd * getpwent(void)$/;"	f
getpwnam	src/pwd/getpwnam.c	/^struct passwd * getpwnam(const char * name)$/;"	f
getpwuid	src/pwd/getpwuid.c	/^struct passwd * getpwuid(uid_t uid)$/;"	f
getrlimit	src/sys/resource/getrlimit.c	/^int getrlimit(int resource, struct rlimit *rlp)$/;"	f
getrusage	src/sys/resource/getrusage.c	/^int getrusage(int who, struct rusage *r_usage)$/;"	f
gets	src/stdio/gets.c	/^char * gets(char *s)$/;"	f
getsid	src/unistd/getsid.c	/^pid_t getsid(pid_t pid)$/;"	f
getsubopt	src/stdlib/getsubopt.c	/^int getsubopt(char ** optionp, char * const * keylistp, char ** valuep)$/;"	f
gettimeofday	src/sys/time/gettimeofday.c	/^int gettimeofday(struct timeval *restrict tp, void *restrict tzp)$/;"	f
getuid	src/unistd/getuid.c	/^uid_t getuid(void)$/;"	f
getutxent	src/utmpx/getutxent.c	/^struct utmpx * getutxent(void)$/;"	f
getutxid	src/utmpx/getutxid.c	/^struct utmpx * getutxid(const struct utmpx *id)$/;"	f
getutxline	src/utmpx/getutxline.c	/^struct utmpx * getutxline(const struct utmpx *line)$/;"	f
getw	src/stdio/getw.c	/^int getw(FILE *stream)$/;"	f
getwc	src/wchar/getwc.c	/^wint_t getwc(FILE * stream)$/;"	f
getwchar	src/wchar/getwchar.c	/^wint_t getwchar(void)$/;"	f
getwd	src/unistd/getwd.c	/^char *getwd(char *path_name)$/;"	f
gid	src/stropts/struct_strrecvfd.c	/^	gid_t gid;$/;"	m	struct:strrecvfd	file:
gid	src/sys/ipc/struct_ipc_perm.c	/^	gid_t gid;	\/* Owner's group ID *\/$/;"	m	struct:ipc_perm	file:
gid_t	src/sys/types/gid_t.c	/^typedef unsigned long long int                                            gid_t;$/;"	t	file:
gl_offs	src/glob/glob_t.c	/^	size_t	gl_offs;$/;"	m	struct:__anon1	file:
gl_pathc	src/glob/glob_t.c	/^	size_t	gl_pathc;$/;"	m	struct:__anon1	file:
gl_pathv	src/glob/glob_t.c	/^	char **	gl_pathv;$/;"	m	struct:__anon1	file:
glob	src/glob/glob.c	/^int glob(const char * restrict pattern, int flags, int (*errfunc) (const char * epath, int eerrno), glob_t * restrict pglob)$/;"	f
glob_t	src/glob/glob_t.c	/^} glob_t;$/;"	t	typeref:struct:__anon1	file:
globfree	src/glob/globfree.c	/^void globfree(glob_t * pglob)$/;"	f
gmtime	src/time/gmtime.c	/^struct tm * gmtime(const time_t * timer)$/;"	f
gr_gid	src/grp/struct_group.c	/^	gid_t	gr_gid;$/;"	m	struct:group	file:
gr_mem	src/grp/struct_group.c	/^	char **	gr_mem;$/;"	m	struct:group	file:
gr_name	src/grp/struct_group.c	/^	char *	gr_name;$/;"	m	struct:group	file:
grantpt	src/stdlib/grantpt.c	/^int grantpt(int fildes)$/;"	f
group	src/grp/struct_group.c	/^struct group {$/;"	s	file:
grouping	src/locale/struct_lconv.c	/^	char *grouping;			\/* "" *\/$/;"	m	struct:lconv	file:
hcreate	src/search/hcreate.c	/^int hcreate(size_t nel)$/;"	f
hdestroy	src/search/hdestroy.c	/^void hdestroy(void)$/;"	f
hsearch	src/search/hsearch.c	/^ENTRY * hsearch(ENTRY item, ACTION action)$/;"	f
hypot	src/math/hypot.c	/^TYPE TGFN(hypot)(TYPE x, TYPE y)$/;"	f
ic_cmd	src/stropts/struct_strioctl.c	/^	int ic_cmd;$/;"	m	struct:strioctl	file:
ic_dp	src/stropts/struct_strioctl.c	/^	char *ic_dp;$/;"	m	struct:strioctl	file:
ic_len	src/stropts/struct_strioctl.c	/^	int ic_len;$/;"	m	struct:strioctl	file:
ic_timeout	src/stropts/struct_strioctl.c	/^	int ic_timeout;$/;"	m	struct:strioctl	file:
iconv	src/iconv/iconv.c	/^size_t iconv(iconv_t cd, char ** restrict inbuf, size_t * restrict inbytesleft, char ** restrict outbuf, size_t * restrict outbytesleft)$/;"	f
iconv_close	src/iconv/iconv_close.c	/^int iconv_close(iconv_t cd)$/;"	f
iconv_open	src/iconv/iconv_open.c	/^iconv_t iconv_open(const char * tocode, const char * fromcode)$/;"	f
iconv_t	src/iconv/iconv_t.c	/^typedef unsigned long int                                               iconv_t;$/;"	t	file:
id_t	src/sys/types/id_t.c	/^typedef unsigned long long int                                             id_t;$/;"	t	file:
idtype_t	src/sys/wait/idtype_t.c	/^} idtype_t;$/;"	t	typeref:enum:__anon22	file:
ilogb	src/math/ilogb.c	/^TYPE TGFN(ilogb)(TYPE x)$/;"	f
imaginary	src/complex/imaginary.c	4;"	d	file:
imaxabs	src/inttypes/imaxabs.c	/^intmax_t imaxabs(intmax_t j)$/;"	f
imaxdiv	src/inttypes/imaxdiv.c	/^imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom)$/;"	f
imaxdiv_t	src/inttypes/imaxdiv_t.c	/^} imaxdiv_t;$/;"	t	typeref:struct:__anon2	file:
index	src/strings/index.c	/^char *index(const char *s, int c)$/;"	f
initstate	src/stdlib/initstate.c	/^char * initstate(unsigned seed, char * state, size_t size)$/;"	f
ino_t	src/sys/types/ino_t.c	/^typedef unsigned long long int                                            ino_t;$/;"	t	file:
insque	src/search/insque.c	/^void insque(void * element, void * pred)$/;"	f
int16_t	src/stdint/int16_t.c	/^typedef short int                                                       int16_t;$/;"	t	file:
int32_t	src/stdint/int32_t.c	/^typedef int                                                             int32_t;$/;"	t	file:
int64_t	src/stdint/int64_t.c	/^typedef long long int                                                   int64_t;$/;"	t	file:
int8_t	src/stdint/int8_t.c	/^typedef signed char                                                      int8_t;$/;"	t	file:
int_curr_symbol	src/locale/struct_lconv.c	/^	char *int_curr_symbol;		\/* "" *\/$/;"	m	struct:lconv	file:
int_fast16_t	src/stdint/int_fast16_t.c	/^typedef short int                                                  int_fast16_t;$/;"	t	file:
int_fast32_t	src/stdint/int_fast32_t.c	/^typedef long int                                                   int_fast32_t;$/;"	t	file:
int_fast64_t	src/stdint/int_fast64_t.c	/^typedef long long int                                              int_fast64_t;$/;"	t	file:
int_fast8_t	src/stdint/int_fast8_t.c	/^typedef signed char                                                 int_fast8_t;$/;"	t	file:
int_frac_digits	src/locale/struct_lconv.c	/^	char int_frac_digits;		\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
int_least16_t	src/stdint/int_least16_t.c	/^typedef short int                                                 int_least16_t;$/;"	t	file:
int_least32_t	src/stdint/int_least32_t.c	/^typedef long int                                                  int_least32_t;$/;"	t	file:
int_least64_t	src/stdint/int_least64_t.c	/^typedef long long int                                             int_least64_t;$/;"	t	file:
int_least8_t	src/stdint/int_least8_t.c	/^typedef signed char                                                int_least8_t;$/;"	t	file:
int_n_cs_precedes	src/locale/struct_lconv.c	/^	char int_n_cs_precedes;		\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
int_n_sep_by_space	src/locale/struct_lconv.c	/^	char int_n_sep_by_space;	\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
int_n_sign_posn	src/locale/struct_lconv.c	/^	char int_n_sign_posn;		\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
int_p_cs_precedes	src/locale/struct_lconv.c	/^	char int_p_cs_precedes;		\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
int_p_sep_by_space	src/locale/struct_lconv.c	/^	char int_p_sep_by_space;	\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
int_p_sign_posn	src/locale/struct_lconv.c	/^	char int_p_sign_posn;		\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
intmax_t	src/stdint/intmax_t.c	/^typedef long long int                                                  intmax_t;$/;"	t	file:
intmax_t	src/stdlib/strtol.c	/^typedef long intmax_t;$/;"	t	file:
intptr_t	src/stdint/intptr_t.c	/^typedef unsigned long int                                              intptr_t;$/;"	t	file:
io_options	src/nonstd/struct_io_options.c	/^struct io_options {$/;"	s	file:
ioctl	src/stropts/ioctl.c	/^int ioctl(int fildes , int request , ... )$/;"	f
iov_base	src/sys/uio/struct_iovec.c	/^	void * iov_base;$/;"	m	struct:iovec	file:
iov_len	src/sys/uio/struct_iovec.c	/^	size_t iov_len;$/;"	m	struct:iovec	file:
iovec	src/sys/uio/struct_iovec.c	/^struct iovec {$/;"	s	file:
ipc_perm	src/sys/ipc/struct_ipc_perm.c	/^struct ipc_perm {$/;"	s	file:
isalnum	src/ctype/isalnum.c	/^int isalnum(int c)$/;"	f
isalpha	src/ctype/isalpha.c	/^int isalpha(int c)$/;"	f
isascii	src/ctype/isascii.c	/^int isascii(int c)$/;"	f
isastream	src/stropts/isastream.c	/^int isastream(int fildes )$/;"	f
isatty	src/unistd/isatty.c	/^int isatty(int fildes)$/;"	f
isblank	src/ctype/isblank.c	/^int isblank(int c)$/;"	f
iscntrl	src/ctype/iscntrl.c	/^int iscntrl(int c)$/;"	f
isdigit	src/ctype/isdigit.c	/^int isdigit(int c)$/;"	f
isfinite	src/math/isfinite.c	6;"	d	file:
isgraph	src/ctype/isgraph.c	/^int isgraph(int c)$/;"	f
isgreater	src/math/isgreater.c	2;"	d	file:
isgreaterequal	src/math/isgreaterequal.c	2;"	d	file:
isinf	src/math/isinf.c	6;"	d	file:
isless	src/math/isless.c	2;"	d	file:
islessequal	src/math/islessequal.c	2;"	d	file:
islessgreater	src/math/islessgreater.c	2;"	d	file:
islower	src/ctype/islower.c	/^int islower(int c)$/;"	f
isnan	src/math/isnan.c	6;"	d	file:
isnormal	src/math/isnormal.c	6;"	d	file:
isopen	src/nonstd/struct_FILE.c	/^	int isopen;$/;"	m	struct:__FILE	file:
isprint	src/ctype/isprint.c	/^int isprint(int c)$/;"	f
ispunct	src/ctype/ispunct.c	/^int ispunct(int c)$/;"	f
isspace	src/ctype/isspace.c	/^int isspace(int c)$/;"	f
isunordered	src/math/isunordered.c	2;"	d	file:
isupper	src/ctype/isupper.c	/^int isupper(int c)$/;"	f
iswalnum	src/wctype/iswalnum.c	/^int iswalnum(wint_t wc)$/;"	f
iswalpha	src/wctype/iswalpha.c	/^int iswalpha(wint_t wc)$/;"	f
iswblank	src/wctype/iswblank.c	/^int iswblank(wint_t wc)$/;"	f
iswcntrl	src/wctype/iswcntrl.c	/^int iswcntrl(wint_t wc)$/;"	f
iswctype	src/wctype/iswctype.c	/^int iswctype(wint_t wc, wctype_t desc)$/;"	f
iswdigit	src/wctype/iswdigit.c	/^int iswdigit(wint_t wc)$/;"	f
iswgraph	src/wctype/iswgraph.c	/^int iswgraph(wint_t wc)$/;"	f
iswlower	src/wctype/iswlower.c	/^int iswlower(wint_t wc)$/;"	f
iswprint	src/wctype/iswprint.c	/^int iswprint(wint_t wc)$/;"	f
iswpunct	src/wctype/iswpunct.c	/^int iswpunct(wint_t wc)$/;"	f
iswspace	src/wctype/iswspace.c	/^int iswspace(wint_t wc)$/;"	f
iswupper	src/wctype/iswupper.c	/^int iswupper(wint_t wc)$/;"	f
iswxdigit	src/wctype/iswxdigit.c	/^int iswxdigit(wint_t wc)$/;"	f
isxdigit	src/ctype/isxdigit.c	/^int isxdigit(int c)$/;"	f
it_interval	src/sys/time/struct_itimerval.c	/^	struct timeval it_interval;$/;"	m	struct:itimerval	typeref:struct:itimerval::timeval	file:
it_value	src/sys/time/struct_itimerval.c	/^	struct timeval it_value;$/;"	m	struct:itimerval	typeref:struct:itimerval::timeval	file:
itimerval	src/sys/time/struct_itimerval.c	/^struct itimerval {$/;"	s	file:
j0	src/math/j0.c	/^double j0(double x)$/;"	f
j1	src/math/j1.c	/^double j1(double x)$/;"	f
jmp_buf	src/setjmp/jmp_buf.c	/^typedef unsigned long int                                           jmp_buf[32];$/;"	t	file:
jn	src/math/jn.c	/^double jn(int n, double x)$/;"	f
jrand48	src/stdlib/jrand48.c	/^long jrand48(unsigned short xsub[3])$/;"	f
key	src/search/ENTRY.c	/^	char *	key;$/;"	m	struct:__anon14	file:
key_t	src/sys/types/key_t.c	/^typedef unsigned long long int                                            key_t;$/;"	t	file:
kill	src/signal/kill.c	/^int kill(pid_t pid, int sig)$/;"	f
kill	src/signal/raise.c	5;"	d	file:
killpg	src/signal/killpg.c	/^int killpg(pid_t pgrp, int sig)$/;"	f
l64a	src/stdlib/l64a.c	/^char * l64a(long value)$/;"	f
l_len	src/fcntl/struct_flock.c	/^	off_t l_len;$/;"	m	struct:flock	file:
l_name	src/stropts/struct_str_mlist.c	/^	char l_name[FMNAMESZ+1];$/;"	m	struct:str_mlist	file:
l_pid	src/fcntl/struct_flock.c	/^	pid_t l_pid;$/;"	m	struct:flock	file:
l_start	src/fcntl/struct_flock.c	/^	off_t l_start;$/;"	m	struct:flock	file:
l_type	src/fcntl/struct_flock.c	/^	short l_type;$/;"	m	struct:flock	file:
l_whence	src/fcntl/struct_flock.c	/^	short l_whence;$/;"	m	struct:flock	file:
labs	src/stdlib/labs.c	/^long int labs(long int j)$/;"	f
lastop	src/nonstd/struct_FILE.c	/^	int lastop;$/;"	m	struct:__FILE	file:
lc_messages	src/nonstd/struct_locale_t.c	/^	} lc_messages;$/;"	m	struct:__locale_t	typeref:struct:__locale_t::__anon8	file:
lc_time	src/nonstd/struct_locale_t.c	/^	} lc_time;$/;"	m	struct:__locale_t	typeref:struct:__locale_t::__anon9	file:
lchown	src/unistd/lchown.c	/^int lchown(const char *path, uid_t owner, gid_t group)$/;"	f
lcong48	src/stdlib/lcong48.c	/^void lcong48(unsigned short param[7])$/;"	f
lconv	src/locale/struct_lconv.c	/^struct lconv {$/;"	s	file:
ldexp	src/math/ldexp.c	/^TYPE TGFN(ldexp)(TYPE x, int exp)$/;"	f
ldiv	src/stdlib/ldiv.c	/^ldiv_t ldiv(long int numer, long int denom)$/;"	f
ldiv_t	src/stdlib/ldiv_t.c	/^} ldiv_t;$/;"	t	typeref:struct:__anon19	file:
leaf	src/search/VISIT.c	/^	leaf$/;"	e	enum:__anon15	file:
len	src/stropts/struct_strbuf.c	/^	int len;$/;"	m	struct:strbuf	file:
len	src/stropts/struct_strpeek.c	/^	int len;$/;"	m	struct:strpeek	file:
level	src/ftw/struct_FTW.c	/^	int level;$/;"	m	struct:FTW	file:
lfind	src/search/lfind.c	/^void * lfind(const void * key, const void * base, size_t * nelp, size_t width, int (*compar) (const void *, const void *))$/;"	f
lgamma	src/math/lgamma.c	/^TYPE TGFN(lgamma)(TYPE x)$/;"	f
link	src/unistd/link.c	/^int link(const char *path1, const char *path2)$/;"	f
llabs	src/stdlib/llabs.c	/^long long int llabs(long long int j)$/;"	f
lldiv	src/stdlib/lldiv.c	/^lldiv_t lldiv(long long int numer, long long int denom)$/;"	f
lldiv_t	src/stdlib/lldiv_t.c	/^} lldiv_t;$/;"	t	typeref:struct:__anon20	file:
llrint	src/math/llrint.c	/^long long int TGFN(llrint)(TYPE x)$/;"	f
llround	src/math/llround.c	/^long long int TGFN(llround)(TYPE x)$/;"	f
loc1	src/regexp/loc1.c	/^char *loc1;$/;"	v
loc2	src/regexp/loc2.c	/^char *loc2;$/;"	v
localeconv	src/locale/localeconv.c	/^struct lconv * localeconv(void)$/;"	f
localtime	src/time/localtime.c	/^struct tm * localtime(const time_t * timer)$/;"	f
lockf	src/unistd/lockf.c	/^int lockf(int fildes, int function, off_t size)$/;"	f
locs	src/regexp/locs.c	/^char *locs;$/;"	v
log	src/math/log.c	/^TYPE TGFN(log)(TYPE x)$/;"	f
log10	src/math/log10.c	/^TYPE TGFN(log10)(TYPE x)$/;"	f
log1p	src/math/log1p.c	/^TYPE TGFN(log1p)(TYPE x)$/;"	f
log2	src/math/log2.c	/^TYPE TGFN(log2)(TYPE x)$/;"	f
logb	src/math/logb.c	/^TYPE TGFN(logb)(TYPE x)$/;"	f
longjmp	src/setjmp/longjmp.c	/^_Noreturn void longjmp(jmp_buf env, int val)$/;"	f
lrand48	src/stdlib/lrand48.c	/^long lrand48(void)$/;"	f
lrint	src/math/lrint.c	/^long int TGFN(lrint)(TYPE x)$/;"	f
lround	src/math/lround.c	/^long int TGFN(lround)(TYPE x)$/;"	f
lsearch	src/search/lsearch.c	/^void * lsearch(const void * key, void * base, size_t * nelp, size_t width, int (*compar) (const void *, const void *))$/;"	f
lseek	src/unistd/lseek.c	/^off_t lseek(int fildes, off_t offset, int whence)$/;"	f
lstat	src/sys/stat/lstat.c	/^int lstat(const char * restrict path, struct stat * restrict buf)$/;"	f
machine	src/sys/utsname/struct_utsname.c	/^	char machine[100];$/;"	m	struct:utsname	file:
makecontext	src/ucontext/makecontext.c	/^void makecontext(ucontext_t *ucp, void (*func)(), int argc, ...)$/;"	f
malloc	src/stdlib/malloc.c	/^void * malloc(size_t size)$/;"	f
mask	src/nonstd/struct_locale_t.c	/^	int mask;$/;"	m	struct:__locale_t	file:
math_errhandling	src/math/math_errhandling.c	2;"	d	file:
maxlen	src/nonstd/struct_io_options.c	/^	size_t maxlen;$/;"	m	struct:io_options	file:
maxlen	src/stropts/struct_strbuf.c	/^	int maxlen;$/;"	m	struct:strbuf	file:
maxlen	src/stropts/struct_strpeek.c	/^	int maxlen;$/;"	m	struct:strpeek	file:
mblen	src/stdlib/mblen.c	/^int mblen(const char * s, size_t n)$/;"	f
mbrlen	src/wchar/mbrlen.c	/^size_t mbrlen(const char * restrict s, size_t n, mbstate_t * restrict ps)$/;"	f
mbrtowc	src/wchar/mbrtowc.c	/^size_t mbrtowc(wchar_t * restrict pwc, const char * restrict s, size_t n, mbstate_t * restrict ps)$/;"	f
mbsinit	src/wchar/mbsinit.c	/^int mbsinit(const mbstate_t * ps)$/;"	f
mbsrtowcs	src/wchar/mbsrtowcs.c	/^size_t mbsrtowcs(wchar_t * restrict dst, const char * restrict src, size_t len, mbstate_t * restrict ps)$/;"	f
mbstate_t	src/wchar/mbstate_t.c	/^typedef int                                                           mbstate_t;$/;"	t	file:
mbstowcs	src/stdlib/mbstowcs.c	/^size_t mbstowcs(wchar_t * restrict pwcs, const char * restrict s, size_t n)$/;"	f
mbtowc	src/stdlib/mbtowc.c	/^int mbtowc(wchar_t * restrict pwc, const char * restrict s, size_t n)$/;"	f
mcontext_t	src/ucontext/mcontext_t.c	/^typedef unsigned long mcontext_t;$/;"	t	file:
mem	src/nonstd/struct_FILE.c	/^	} mem;$/;"	m	struct:__FILE	typeref:struct:__FILE::__anon7	file:
memccpy	src/string/memccpy.c	/^void *memccpy(void * restrict s1, const void * restrict s2, int c, size_t n)$/;"	f
memchr	src/string/memchr.c	/^void * memchr(const void *s, int c, size_t n)$/;"	f
memcmp	src/string/memcmp.c	/^int memcmp(const void *s1, const void *s2, size_t n)$/;"	f
memcpy	src/string/memcpy.c	/^void * memcpy(void * restrict s1, const void * restrict s2, size_t n)$/;"	f
memmove	src/string/memmove.c	/^void * memmove(void *s1, const void *s2, size_t n)$/;"	f
memset	src/string/memset.c	/^void * memset(void *s, int c, size_t n)$/;"	f
message	src/nonstd/struct_locale_t.c	/^	char *message;$/;"	m	struct:__locale_t	file:
millitm	src/sys/timeb/struct_timeb.c	/^	unsigned short millitm;$/;"	m	struct:timeb	file:
mkdir	src/sys/stat/mkdir.c	/^int mkdir(const char *path, mode_t mode)$/;"	f
mkfifo	src/sys/stat/mkfifo.c	/^int mkfifo(const char *path, mode_t mode)$/;"	f
mknod	src/sys/stat/mknod.c	/^int mknod(const char *path, mode_t mode, dev_t dev)$/;"	f
mkstemp	src/stdlib/mkstemp.c	/^int mkstemp(char * template)$/;"	f
mktemp	src/stdlib/mktemp.c	/^char *mktemp(char *template)$/;"	f
mktime	src/time/mktime.c	/^time_t mktime(struct tm * timeptr)$/;"	f
mmap	src/sys/mman/mmap.c	/^void *mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t off)$/;"	f
mn	src/nonstd/struct_locale_t.c	/^	struct lconv mn;$/;"	m	struct:__locale_t	typeref:struct:__locale_t::lconv	file:
mode	src/sys/ipc/struct_ipc_perm.c	/^	mode_t mode;	\/* Read\/write permission *\/$/;"	m	struct:ipc_perm	file:
mode_t	src/sys/types/mode_t.c	/^typedef unsigned long int                                                mode_t;$/;"	t	file:
modf	src/math/modf.c	/^TYPE TGFN(modf)(TYPE value, TYPE *iptr)$/;"	f
modtime	src/utime/struct_utimbuf.c	/^	time_t modtime;$/;"	m	struct:utimbuf	file:
mon	src/nonstd/struct_locale_t.c	/^		char *mon[12];$/;"	m	struct:__locale_t::__anon9	file:
mon_decimal_point	src/locale/struct_lconv.c	/^	char *mon_decimal_point;	\/* "" *\/$/;"	m	struct:lconv	file:
mon_grouping	src/locale/struct_lconv.c	/^	char *mon_grouping;		\/* "" *\/$/;"	m	struct:lconv	file:
mon_thousands_sep	src/locale/struct_lconv.c	/^	char *mon_thousands_sep;	\/* "" *\/$/;"	m	struct:lconv	file:
monetary	src/nonstd/struct_locale_t.c	/^	char *monetary;$/;"	m	struct:__locale_t	file:
mrand48	src/stdlib/mrand48.c	/^long mrand48(void)$/;"	f
msg_ctime	src/sys/msg/struct_msqid_ds.c	/^	time_t msg_ctime;		\/* time of last change *\/$/;"	m	struct:msqid_ds	file:
msg_lrpid	src/sys/msg/struct_msqid_ds.c	/^	pid_t msg_lrpid;		\/* PID of last msgrcg() *\/$/;"	m	struct:msqid_ds	file:
msg_lspid	src/sys/msg/struct_msqid_ds.c	/^	pid_t msg_lspid;		\/* PID of last msgsnd() *\/$/;"	m	struct:msqid_ds	file:
msg_perm	src/sys/msg/struct_msqid_ds.c	/^	struct ipc_perm msg_perm;	\/* operation permissions *\/$/;"	m	struct:msqid_ds	typeref:struct:msqid_ds::ipc_perm	file:
msg_qbytes	src/sys/msg/struct_msqid_ds.c	/^	msglen_t msg_qbytes;		\/* Max # bytes allowed on queue *\/$/;"	m	struct:msqid_ds	file:
msg_qnum	src/sys/msg/struct_msqid_ds.c	/^	msgqnum_t msg_qnum;		\/* # messages on queue *\/$/;"	m	struct:msqid_ds	file:
msg_rtime	src/sys/msg/struct_msqid_ds.c	/^	time_t msg_rtime;		\/* time of last msgrcv() *\/$/;"	m	struct:msqid_ds	file:
msg_stime	src/sys/msg/struct_msqid_ds.c	/^	time_t msg_stime;		\/* time of last msgsnd() *\/$/;"	m	struct:msqid_ds	file:
msgctl	src/sys/msg/msgctl.c	/^int msgctl(int msqid, int cmd, struct msqid_ds *buf)$/;"	f
msgget	src/sys/msg/msgget.c	/^int msgget(key_t key, int msgflg)$/;"	f
msglen_t	src/sys/msg/msglen_t.c	/^typedef unsigned short                                                 msglen_t;$/;"	t	file:
msgqnum_t	src/sys/msg/msgqnum_t.c	/^typedef unsigned short                                                msgqnum_t;$/;"	t	file:
msgrcv	src/sys/msg/msgrcv.c	/^ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg)$/;"	f
msgsnd	src/sys/msg/msgsnd.c	/^int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg)$/;"	f
msqid_ds	src/sys/msg/struct_msqid_ds.c	/^struct msqid_ds {$/;"	s	file:
msync	src/sys/mman/msync.c	/^int msync(void * addr , size_t len , int flags )$/;"	f
munmap	src/sys/mman/munmap.c	/^int munmap(void*addr, size_t len)$/;"	f
n_cs_precedes	src/locale/struct_lconv.c	/^	char n_cs_precedes;		\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
n_sep_by_space	src/locale/struct_lconv.c	/^	char n_sep_by_space;		\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
n_sign_posn	src/locale/struct_lconv.c	/^	char n_sign_posn;		\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
nan	src/math/nan.c	/^TYPE TGFN(nan)(const char *tagp)$/;"	f
nearbyint	src/math/nearbyint.c	/^TYPE TGFN(nearbyint)(TYPE x)$/;"	f
negative_sign	src/locale/struct_lconv.c	/^	char *negative_sign;		\/* "" *\/$/;"	m	struct:lconv	file:
next	src/nonstd/struct_FILE.c	/^	struct __FILE *next;$/;"	m	struct:__FILE	typeref:struct:__FILE::__FILE	file:
next	src/nonstd/struct_atexit.c	/^	struct atexit *next;$/;"	m	struct:atexit	typeref:struct:atexit::atexit	file:
nextafter	src/math/nextafter.c	/^TYPE TGFN(nextafter)(TYPE x, TYPE y)$/;"	f
nexttoward	src/math/nexttoward.c	/^TYPE TGFN(nexttoward)(TYPE x, TYPE y)$/;"	f
nfds_t	src/poll/nfds_t.c	/^typedef unsigned int                                                     nfds_t;$/;"	t	file:
nfns	src/nonstd/struct_atexit.c	/^	int nfns;$/;"	m	struct:atexit	file:
nftw	src/ftw/nftw.c	/^int nftw(const char * path, int (*fn) (const char *, const struct stat *, int, struct FTW *), int fd_limit, int flags)$/;"	f
nice	src/unistd/nice.c	/^int nice(int incr)$/;"	f
nl_catd	src/nl_types/nl_catd.c	/^typedef unsigned long int                                               nl_catd;$/;"	t	file:
nl_item	src/nl_types/nl_item.c	/^typedef int                                                             nl_item;$/;"	t	file:
nl_langinfo	src/langinfo/nl_langinfo.c	/^char * nl_langinfo(nl_item item)$/;"	f
nlink_t	src/sys/types/nlink_t.c	/^typedef unsigned long long int                                          nlink_t;$/;"	t	file:
nlocks	src/nonstd/struct_FILE.c	/^	int nlocks;$/;"	m	struct:__FILE	file:
nodename	src/sys/utsname/struct_utsname.c	/^	char nodename[100];$/;"	m	struct:utsname	file:
noexpr	src/nonstd/struct_locale_t.c	/^		char *noexpr;$/;"	m	struct:__locale_t::__anon8	file:
not	src/iso646/not.c	2;"	d	file:
not_eq	src/iso646/not_eq.c	2;"	d	file:
nrand48	src/stdlib/nrand48.c	/^long nrand48(unsigned short xsubi[3])$/;"	f
numeric	src/nonstd/struct_locale_t.c	/^	char *numeric;$/;"	m	struct:__locale_t	file:
off_t	src/sys/types/off_t.c	/^typedef long long int                                                     off_t;$/;"	t	file:
offset	src/nonstd/struct_locale_t.c	/^			int offset;$/;"	m	struct:__locale_t::__anon9::__anon10	file:
offset	src/stropts/struct_strfdinsert.c	/^	int offset;$/;"	m	struct:strfdinsert	file:
offsetof	src/stddef/offsetof.c	2;"	d	file:
oflag	src/nonstd/struct_FILE.c	/^	int oflag;$/;"	m	struct:__FILE	file:
open	src/fcntl/open.c	/^int open(const char *path, int oflag, ...)$/;"	f
open	src/stdio/freopen.c	8;"	d	file:
opendir	src/dirent/opendir.c	/^DIR * opendir(const char * dirname)$/;"	f
openlog	src/syslog/openlog.c	/^void openlog(const char * ident, int logopt, int facility)$/;"	f
optarg	src/unistd/optarg.c	/^char * optarg;$/;"	v
opterr	src/unistd/opterr.c	/^int opterr;$/;"	v
optind	src/unistd/optind.c	/^int optind;$/;"	v
optopt	src/unistd/optopt.c	/^int optopt;$/;"	v
or	src/iso646/or.c	2;"	d	file:
or_eq	src/iso646/or_eq.c	2;"	d	file:
orientation	src/nonstd/struct_FILE.c	/^	int orientation;$/;"	m	struct:__FILE	file:
p_cs_precedes	src/locale/struct_lconv.c	/^	char p_cs_precedes;		\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
p_sep_by_space	src/locale/struct_lconv.c	/^	char p_sep_by_space;		\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
p_sign_posn	src/locale/struct_lconv.c	/^	char p_sign_posn;		\/* CHAR_MAX *\/$/;"	m	struct:lconv	file:
passwd	src/pwd/struct_passwd.c	/^struct passwd {$/;"	s	file:
pathconf	src/unistd/pathconf.c	/^long pathconf(const char *path, int name)$/;"	f
pause	src/unistd/pause.c	/^int pause(void)$/;"	f
pclose	src/stdio/pclose.c	/^int pclose(FILE * stream)$/;"	f
per_thread	src/nonstd/__pthread_per_thread.c	/^static struct per_thread *per_thread(void)$/;"	f	file:
perror	src/stdio/perror.c	/^void perror(const char *s)$/;"	f
pid_t	src/sys/types/pid_t.c	/^typedef long int                                                          pid_t;$/;"	t	file:
pipe	src/unistd/pipe.c	/^int pipe(int fildes[2])$/;"	f
pipe_pid	src/nonstd/struct_FILE.c	/^	long int pipe_pid;$/;"	m	struct:__FILE	file:
pipe_pid	src/nonstd/struct_FILE.c	/^	pid_t pipe_pid;$/;"	m	struct:__FILE	file:
poll	src/poll/poll.c	/^int poll(struct pollfd fds[], nfds_t nfds, int timeout)$/;"	f
pollfd	src/poll/struct_pollfd.c	/^struct pollfd {$/;"	s	file:
popen	src/stdio/popen.c	/^FILE * popen(const char * command, const char * mode)$/;"	f
pos	src/nonstd/struct_FILE.c	/^	fpos_t pos;$/;"	m	struct:__FILE	file:
positive_sign	src/locale/struct_lconv.c	/^	char *positive_sign;		\/* "" *\/$/;"	m	struct:lconv	file:
postorder	src/search/VISIT.c	/^	postorder,$/;"	e	enum:__anon15	file:
pow	src/math/pow.c	/^TYPE TGFN(pow)(TYPE x, TYPE y)$/;"	f
preorder	src/search/VISIT.c	/^	preorder,$/;"	e	enum:__anon15	file:
prev	src/nonstd/struct_FILE.c	/^	struct __FILE *prev;$/;"	m	struct:__FILE	typeref:struct:__FILE::__FILE	file:
prev	src/nonstd/struct_atexit.c	/^	struct atexit *prev;$/;"	m	struct:atexit	typeref:struct:atexit::atexit	file:
printf	src/stdio/printf.c	/^int printf(const char *format, ...)$/;"	f
ptrdiff_t	src/stddef/ptrdiff_t.c	/^typedef __int64                                                       ptrdiff_t;$/;"	t	file:
ptrdiff_t	src/stddef/ptrdiff_t.c	/^typedef long int                                                      ptrdiff_t;$/;"	t	file:
ptrdiff_t	src/stddef/ptrdiff_t.c	/^typedef long long int                                                 ptrdiff_t;$/;"	t	file:
ptsname	src/stdlib/ptsname.c	/^char * ptsname(int fildes)$/;"	f
putc	src/stdio/putc.c	/^int putc(int c, FILE *stream)$/;"	f
putchar	src/stdio/putchar.c	/^int putchar(int c)$/;"	f
putenv	src/stdlib/putenv.c	/^int putenv(char * string)$/;"	f
putmsg	src/stropts/putmsg.c	/^int putmsg(int fd , const struct strbuf * ctlptr , const struct strbuf * dataptr , int flags )$/;"	f
putpmsg	src/stropts/putpmsg.c	/^int putpmsg(int fd , const struct strbuf * ctlptr , const struct strbuf * dataptr , int band , int flags )$/;"	f
puts	src/stdio/puts.c	/^int puts(const char *s)$/;"	f
pututxline	src/utmpx/pututxline.c	/^struct utmpx * pututxline(const struct utmpx *utmpx)$/;"	f
putw	src/stdio/putw.c	/^int putw(int w, FILE *stream)$/;"	f
putwc	src/wchar/putwc.c	/^wint_t putwc(wchar_t c, FILE * stream)$/;"	f
putwchar	src/wchar/putwchar.c	/^wint_t putwchar(wchar_t c)$/;"	f
pw_dir	src/pwd/struct_passwd.c	/^	char *	pw_dir;$/;"	m	struct:passwd	file:
pw_gid	src/pwd/struct_passwd.c	/^	gid_t	pw_gid;$/;"	m	struct:passwd	file:
pw_name	src/pwd/struct_passwd.c	/^	char *	pw_name;$/;"	m	struct:passwd	file:
pw_shell	src/pwd/struct_passwd.c	/^	char *	pw_shell;$/;"	m	struct:passwd	file:
pw_uid	src/pwd/struct_passwd.c	/^	uid_t	pw_uid;$/;"	m	struct:passwd	file:
qsort	src/stdlib/qsort.c	/^void qsort(void * base, size_t nmemb, size_t size, int (*compar)(const void *, const void *))$/;"	f
quot	src/inttypes/imaxdiv_t.c	/^	intmax_t quot;$/;"	m	struct:__anon2	file:
quot	src/stdlib/div_t.c	/^	int quot;$/;"	m	struct:__anon18	file:
quot	src/stdlib/ldiv_t.c	/^	long int quot;$/;"	m	struct:__anon19	file:
quot	src/stdlib/lldiv_t.c	/^	long long int quot;$/;"	m	struct:__anon20	file:
raise	src/signal/raise.c	/^int raise(int sig)$/;"	f
rand	src/stdlib/rand.c	/^int rand(void)$/;"	f
random	src/stdlib/random.c	/^long random(void)$/;"	f
re_comp	src/re_comp/re_comp.c	/^char *re_comp(const char *string)$/;"	f
re_exec	src/re_comp/re_exec.c	/^int re_exec(const char *string)$/;"	f
re_nsub	src/regex/regex_t.c	/^	size_t re_nsub;$/;"	m	struct:__anon11	file:
read	src/unistd/read.c	/^ssize_t read(int fildes, void *buf, size_t nbyte)$/;"	f
readdir	src/dirent/readdir.c	/^struct dirent * readdir(DIR * dirp)$/;"	f
readlink	src/unistd/readlink.c	/^ssize_t readlink(const char * restrict path, char * restrict buf, size_t bufsize)$/;"	f
readv	src/sys/uio/readv.c	/^ssize_t readv(int fildes, const struct iovec * iov, int iovcnt)$/;"	f
realloc	src/stdlib/realloc.c	/^void * realloc(void * ptr, size_t size)$/;"	f
realpath	src/stdlib/realpath.c	/^char * realpath(const char * restrict file_name, char * restrict resolved_name)$/;"	f
regcmp	src/libgen/regcmp.c	/^char *regcmp(const char *string1, ... \/*, (char*)0 *\/)$/;"	f
regcomp	src/regex/regcomp.c	/^int regcomp(regex_t * restrict preg, const char * restrict pattern, int cflags)$/;"	f
regerror	src/regex/regerror.c	/^size_t regerror(int errcode, const regex_t * restrict preg, char * restrict errbuf, size_t errbuf_size)$/;"	f
regex	src/libgen/regex.c	/^char *regex(const char *re, const char *subject, ...)$/;"	f
regex_t	src/regex/regex_t.c	/^} regex_t;$/;"	t	typeref:struct:__anon11	file:
regexec	src/regex/regexec.c	/^int regexec(const regex_t * restrict preg, const char * restrict string, size_t nmatch, regmatch_t pmatch[restrict], int eflags)$/;"	f
regfree	src/regex/regfree.c	/^void regfree(regex_t * preg)$/;"	f
regmatch_t	src/regex/regmatch_t.c	/^} regmatch_t;$/;"	t	typeref:struct:__anon12	file:
regoff_t	src/regex/regoff_t.c	/^typedef long long int                                                  regoff_t;$/;"	t	file:
release	src/sys/utsname/struct_utsname.c	/^	char release[100];$/;"	m	struct:utsname	file:
rem	src/inttypes/imaxdiv_t.c	/^	intmax_t rem;$/;"	m	struct:__anon2	file:
rem	src/stdlib/div_t.c	/^	int rem;$/;"	m	struct:__anon18	file:
rem	src/stdlib/ldiv_t.c	/^	long int rem;$/;"	m	struct:__anon19	file:
rem	src/stdlib/lldiv_t.c	/^	long long int rem;$/;"	m	struct:__anon20	file:
remainder	src/math/remainder.c	/^TYPE TGFN(remainder)(TYPE x, TYPE y)$/;"	f
remove	src/stdio/remove.c	/^int remove(const char *filename)$/;"	f
remque	src/search/remque.c	/^void remque(void * element)$/;"	f
remquo	src/math/remquo.c	/^TYPE TGFN(remquo)(TYPE x, TYPE y, int *quo)$/;"	f
rename	src/stdio/rename.c	/^int rename(const char *old, const char *new)$/;"	f
revents	src/poll/struct_pollfd.c	/^	short revents;$/;"	m	struct:pollfd	file:
rewind	src/stdio/rewind.c	/^void rewind(FILE *stream)$/;"	f
rewinddir	src/dirent/rewinddir.c	/^void rewinddir(DIR * dirp)$/;"	f
rindex	src/strings/rindex.c	/^char *rindex(const char *s, int c)$/;"	f
rint	src/math/rint.c	/^TYPE TGFN(rint)(TYPE x)$/;"	f
rlim_cur	src/sys/resource/struct_rlimit.c	/^	rlim_t rlim_cur;$/;"	m	struct:rlimit	file:
rlim_max	src/sys/resource/struct_rlimit.c	/^	rlim_t rlim_max;$/;"	m	struct:rlimit	file:
rlim_t	src/sys/resource/rlim_t.c	/^typedef unsigned long long int                                           rlim_t;$/;"	t	file:
rlimit	src/sys/resource/struct_rlimit.c	/^struct rlimit {$/;"	s	file:
rm_eo	src/regex/regmatch_t.c	/^	regoff_t rm_eo;$/;"	m	struct:__anon12	file:
rm_so	src/regex/regmatch_t.c	/^	regoff_t rm_so;$/;"	m	struct:__anon12	file:
rmdir	src/stdio/remove.c	11;"	d	file:
rmdir	src/unistd/rmdir.c	/^int rmdir(const char *path)$/;"	f
round	src/math/round.c	/^TYPE TGFN(round)(TYPE x)$/;"	f
ru_stime	src/sys/resource/struct_rusage.c	/^	struct timeval ru_stime;$/;"	m	struct:rusage	typeref:struct:rusage::timeval	file:
ru_utime	src/sys/resource/struct_rusage.c	/^	struct timeval ru_utime;$/;"	m	struct:rusage	typeref:struct:rusage::timeval	file:
rusage	src/sys/resource/struct_rusage.c	/^struct rusage {$/;"	s	file:
sa_flags	src/signal/struct_sigaction.c	/^	int sa_flags;$/;"	m	struct:sigaction	file:
sa_handler	src/signal/struct_sigaction.c	/^	void (*sa_handler)(int);$/;"	m	struct:sigaction	file:
sa_mask	src/signal/struct_sigaction.c	/^	sigset_t sa_mask;$/;"	m	struct:sigaction	file:
sa_sigaction	src/signal/struct_sigaction.c	/^	void (*sa_sigaction)(int, siginfo_t *, void *);	$/;"	m	struct:sigaction	file:
sbrk	src/unistd/sbrk.c	/^void *sbrk(int incr)$/;"	f
scalb	src/math/scalb.c	/^double scalb(double x, double n)$/;"	f
scalbln	src/math/scalbln.c	/^TYPE TGFN(scalbln)(TYPE x, long int n)$/;"	f
scalbn	src/math/scalbn.c	/^TYPE TGFN(scalbn)(TYPE x, int n)$/;"	f
scanf	src/stdio/scanf.c	/^int scanf(const char * restrict format, ...)$/;"	f
seed48	src/stdlib/seed48.c	/^unsigned short * seed48(unsigned short seed16v[3])$/;"	f
seekdir	src/dirent/seekdir.c	/^void seekdir(DIR * dirp, long loc)$/;"	f
select	src/sys/time/select.c	/^int select(int nfds , fd_set * readfds , fd_set * writefds , fd_set * errorfds , struct timeval * timeout )$/;"	f
sem_ctime	src/sys/sem/struct_semid_ds.c	/^	time_t sem_ctime;$/;"	m	struct:semid_ds	file:
sem_flg	src/sys/sem/struct_sembuf.c	/^	short sem_flg;$/;"	m	struct:sembuf	file:
sem_nsems	src/sys/sem/struct_semid_ds.c	/^	unsigned short sem_nsems;$/;"	m	struct:semid_ds	file:
sem_num	src/sys/sem/struct_sembuf.c	/^	unsigned short sem_num;$/;"	m	struct:sembuf	file:
sem_op	src/sys/sem/struct_sembuf.c	/^	short sem_op;$/;"	m	struct:sembuf	file:
sem_otime	src/sys/sem/struct_semid_ds.c	/^	time_t sem_otime;$/;"	m	struct:semid_ds	file:
sem_perm	src/sys/sem/struct_semid_ds.c	/^	struct ipc_perm sem_perm;$/;"	m	struct:semid_ds	typeref:struct:semid_ds::ipc_perm	file:
sembuf	src/sys/sem/struct_sembuf.c	/^struct sembuf {$/;"	s	file:
semctl	src/sys/sem/semctl.c	/^int semctl(int semid, int semnum, int cmd, ...)$/;"	f
semget	src/sys/sem/semget.c	/^int semget(key_t, int nsems, int semflg)$/;"	f
semid_ds	src/sys/sem/struct_semid_ds.c	/^struct semid_ds {$/;"	s	file:
semncnt	src/sys/sem/struct_sem_anonymous.c	/^	unsigned short semncnt;$/;"	m	struct:__sem_anonymous	file:
semop	src/sys/sem/semop.c	/^int semop(int semid, struct sembuf *sops, size_t nsops)$/;"	f
sempid	src/sys/sem/struct_sem_anonymous.c	/^	pid_t sempid;$/;"	m	struct:__sem_anonymous	file:
semval	src/sys/sem/struct_sem_anonymous.c	/^	unsigned short semval;$/;"	m	struct:__sem_anonymous	file:
semzcnt	src/sys/sem/struct_sem_anonymous.c	/^	unsigned short semzcnt;$/;"	m	struct:__sem_anonymous	file:
setbuf	src/stdio/setbuf.c	/^void setbuf(FILE * restrict stream, char * restrict buf)$/;"	f
setcontext	src/ucontext/setcontext.c	/^int setcontext(const ucontext_t *ucp)$/;"	f
setgid	src/unistd/setgid.c	/^int setgid(gid_t gid)$/;"	f
setgrent	src/grp/setgrent.c	/^void setgrent(void)$/;"	f
setitimer	src/sys/time/setitimer.c	/^int setitimer(int which, const struct itimerval *restrict value, struct itimerval *restrict ovalue)$/;"	f
setjmp	src/setjmp/setjmp.c	/^int setjmp(jmp_buf env)$/;"	f
setkey	src/stdlib/setkey.c	/^void setkey(const char * key)$/;"	f
setlocale	src/locale/setlocale.c	/^char * setlocale(int category, const char *locale)$/;"	f
setlogmask	src/syslog/setlogmask.c	/^int setlogmask(int maskpri)$/;"	f
setpgid	src/unistd/setpgid.c	/^int setpgid(pid_t pid, pid_t pgid)$/;"	f
setpgrp	src/unistd/setpgrp.c	/^pid_t setpgrp(void)$/;"	f
setpriority	src/sys/resource/setpriority.c	/^int setpriority(int which, id_t who, int value)$/;"	f
setpwent	src/pwd/setpwent.c	/^void setpwent(void)$/;"	f
setregid	src/unistd/setregid.c	/^int setregid(gid_t rgid, gid_t egid)$/;"	f
setreuid	src/unistd/setreuid.c	/^int setreuid(uid_t ruid, uid_t euid)$/;"	f
setrlimit	src/sys/resource/setrlimit.c	/^int setrlimit(int resource, const struct rlimit *rlp)$/;"	f
setsid	src/unistd/setsid.c	/^pid_t setsid(void)$/;"	f
setstate	src/stdlib/setstate.c	/^char * setstate(char * state)$/;"	f
setuid	src/unistd/setuid.c	/^int setuid(uid_t uid)$/;"	f
setutxent	src/utmpx/setutxent.c	/^void setutxent(void)$/;"	f
setvbuf	src/stdio/setvbuf.c	/^int setvbuf(FILE *stream, char *buf, int mode, size_t size)$/;"	f
shm_atime	src/sys/shm/struct_shmid_ds.c	/^	time_t shm_atime;$/;"	m	struct:shmid_ds	file:
shm_cpid	src/sys/shm/struct_shmid_ds.c	/^	pid_t shm_cpid;$/;"	m	struct:shmid_ds	file:
shm_ctime	src/sys/shm/struct_shmid_ds.c	/^	time_t shm_ctime;$/;"	m	struct:shmid_ds	file:
shm_dtime	src/sys/shm/struct_shmid_ds.c	/^	time_t shm_dtime;$/;"	m	struct:shmid_ds	file:
shm_lpid	src/sys/shm/struct_shmid_ds.c	/^	pid_t shm_lpid;$/;"	m	struct:shmid_ds	file:
shm_nattach	src/sys/shm/struct_shmid_ds.c	/^	shmatt_t shm_nattach;$/;"	m	struct:shmid_ds	file:
shm_perm	src/sys/shm/struct_shmid_ds.c	/^	struct ipc_perm shm_perm;$/;"	m	struct:shmid_ds	typeref:struct:shmid_ds::ipc_perm	file:
shm_segsz	src/sys/shm/struct_shmid_ds.c	/^	size_t shm_segsz;$/;"	m	struct:shmid_ds	file:
shmat	src/sys/shm/shmat.c	/^void * shmat(int shmid, const void *shmaddr, int shmflg)$/;"	f
shmatt_t	src/sys/shm/shmatt_t.c	/^typedef unsigned short                                                 shmatt_t;$/;"	t	file:
shmctl	src/sys/shm/shmctl.c	/^int shmctl(int shmid, int cmd, struct shmid_ds *buf)$/;"	f
shmdt	src/sys/shm/shmdt.c	/^int shmdt(const void *shmaddr)$/;"	f
shmget	src/sys/shm/shmget.c	/^int shmget(key_t key, size_t size, int shmflg)$/;"	f
shmid_ds	src/sys/shm/struct_shmid_ds.c	/^struct shmid_ds {$/;"	s	file:
si_addr	src/signal/siginfo_t.c	/^	void *si_addr;$/;"	m	struct:__anon16	file:
si_band	src/signal/siginfo_t.c	/^	long si_band;$/;"	m	struct:__anon16	file:
si_code	src/signal/siginfo_t.c	/^	int si_code;$/;"	m	struct:__anon16	file:
si_errno	src/signal/siginfo_t.c	/^	int si_errno;$/;"	m	struct:__anon16	file:
si_pid	src/signal/siginfo_t.c	/^	pid_t si_pid;$/;"	m	struct:__anon16	file:
si_signo	src/signal/siginfo_t.c	/^	int si_signo;$/;"	m	struct:__anon16	file:
si_status	src/signal/siginfo_t.c	/^	int si_status;$/;"	m	struct:__anon16	file:
si_uid	src/signal/siginfo_t.c	/^	uid_t si_uid;$/;"	m	struct:__anon16	file:
si_value	src/signal/siginfo_t.c	/^	union sigval si_value;$/;"	m	struct:__anon16	typeref:union:__anon16::sigval	file:
sig_atomic_t	src/signal/sig_atomic_t.c	/^typedef volatile int                                               sig_atomic_t;$/;"	t	file:
sigaction	src/signal/sigaction.c	/^int sigaction(int sig, const struct sigaction * restrict act, struct sigaction * restrict oact)$/;"	f
sigaction	src/signal/struct_sigaction.c	/^struct sigaction {$/;"	s	file:
sigaddset	src/signal/sigaddset.c	/^int sigaddset(sigset_t * set, int signo)$/;"	f
sigaltstack	src/signal/sigaltstack.c	/^int sigaltstack(const stack_t * restrict ss, stack_t * restrict oss)$/;"	f
sigdelset	src/signal/sigdelset.c	/^int sigdelset(sigset_t * set, int signo)$/;"	f
sigemptyset	src/signal/sigemptyset.c	/^int sigemptyset(sigset_t * set)$/;"	f
sigfillset	src/signal/sigfillset.c	/^int sigfillset(sigset_t * set)$/;"	f
sighold	src/signal/sighold.c	/^int sighold(int sig)$/;"	f
sigignore	src/signal/sigignore.c	/^int sigignore(int sig)$/;"	f
siginfo_t	src/signal/siginfo_t.c	/^} siginfo_t;$/;"	t	typeref:struct:__anon16	file:
siginterrupt	src/signal/siginterrupt.c	/^int siginterrupt(int sig, int flag)$/;"	f
sigismember	src/signal/sigismember.c	/^int sigismember(const sigset_t * set, int signo)$/;"	f
sigjmp_buf	src/setjmp/sigjmp_buf.c	/^typedef jmp_buf                                                      sigjmp_buf;$/;"	t	file:
siglongjmp	src/setjmp/siglongjmp.c	/^void siglongjmp(sigjmp_buf env, int val)$/;"	f
sigmask	src/signal/sigmask.c	/^int sigmask(int signum)$/;"	f
signal	src/signal/signal.c	/^void (*signal(int sig, void (*func)(int)))(int)$/;"	f
signbit	src/math/signbit.c	6;"	d	file:
signgam	src/math/signgam.c	/^int signgam;$/;"	v
sigpause	src/signal/sigpause.c	/^int sigpause(int sig)$/;"	f
sigpending	src/signal/sigpending.c	/^int sigpending(sigset_t * set)$/;"	f
sigprocmask	src/signal/sigprocmask.c	/^int sigprocmask(int how, const sigset_t * restrict set, sigset_t * restrict oset)$/;"	f
sigrelse	src/signal/sigrelse.c	/^int sigrelse(int sig)$/;"	f
sigset	src/signal/sigset.c	/^void (*sigset(int sig, void (*disp)(int)))(int)$/;"	f
sigset_t	src/signal/sigset_t.c	/^typedef unsigned int                                                   sigset_t;$/;"	t	file:
sigsetjmp	src/setjmp/sigsetjmp.c	/^int sigsetjmp(sigjmp_buf env, int savemask)$/;"	f
sigstack	src/signal/sigstack.c	/^int sigstack(struct sigstack *ss, struct sigstack *oss)$/;"	f
sigstack	src/signal/struct_sigstack.c	/^struct sigstack {$/;"	s	file:
sigsuspend	src/signal/sigsuspend.c	/^int sigsuspend(const sigset_t * sigmask)$/;"	f
sin	src/math/sin.c	/^TYPE TGFN(sin)(TYPE x)$/;"	f
sinh	src/math/sinh.c	/^TYPE TGFN(sinh)(TYPE x)$/;"	f
size	src/nonstd/struct_FILE.c	/^		size_t size;$/;"	m	struct:__FILE::__anon7	file:
size_t	src/stddef/size_t.c	/^typedef unsigned __int64                                                 size_t;$/;"	t	file:
size_t	src/stddef/size_t.c	/^typedef unsigned long int                                                size_t;$/;"	t	file:
size_t	src/stddef/size_t.c	/^typedef unsigned long long int                                           size_t;$/;"	t	file:
sl_modlist	src/stropts/struct_str_list.c	/^	struct str_mlist *sl_modlist;$/;"	m	struct:str_list	typeref:struct:str_list::str_mlist	file:
sl_nmods	src/stropts/struct_str_list.c	/^	int sl_nmods;$/;"	m	struct:str_list	file:
sleep	src/unistd/sleep.c	/^unsigned sleep(unsigned seconds)$/;"	f
snprintf	src/stdio/snprintf.c	/^int snprintf(char * restrict s, size_t n, const char * restrict format, ...)$/;"	f
speed_t	src/termios/speed_t.c	/^typedef int                                                             speed_t;$/;"	t	file:
sprintf	src/stdio/sprintf.c	/^int sprintf(char * restrict s, const char * restrict format, ...)$/;"	f
sqrt	src/math/sqrt.c	/^TYPE TGFN(sqrt)(TYPE x)$/;"	f
srand	src/stdlib/srand.c	/^void srand(unsigned int seed)$/;"	f
srand48	src/stdlib/srand48.c	/^void srand48(long seedval)$/;"	f
srandom	src/stdlib/srandom.c	/^void srandom(unsigned seed)$/;"	f
ss_flags	src/signal/stack_t.c	/^	int ss_flags;	\/* Flags *\/$/;"	m	struct:__anon17	file:
ss_onstack	src/signal/struct_sigstack.c	/^	int ss_onstack;$/;"	m	struct:sigstack	file:
ss_size	src/signal/stack_t.c	/^	size_t ss_size;	\/* Stack size *\/$/;"	m	struct:__anon17	file:
ss_sp	src/signal/stack_t.c	/^	void *ss_sp;	\/* Stack base or pointer *\/$/;"	m	struct:__anon17	file:
ss_sp	src/signal/struct_sigstack.c	/^	void *ss_sp;$/;"	m	struct:sigstack	file:
sscanf	src/stdio/sscanf.c	/^int sscanf(const char * restrict s, const char * restrict format, ...)$/;"	f
ssize_t	src/sys/types/ssize_t.c	/^typedef long int                                                        ssize_t;$/;"	t	file:
st_dev	src/sys/stat/struct_stat.c	/^	dev_t st_dev;$/;"	m	struct:stat	file:
st_gid	src/sys/stat/struct_stat.c	/^	gid_t st_gid;$/;"	m	struct:stat	file:
st_ino	src/sys/stat/struct_stat.c	/^	ino_t st_ino;$/;"	m	struct:stat	file:
st_mode	src/stdio/remove.c	/^ struct stat { int st_mode; };$/;"	m	struct:stat	file:
st_mode	src/sys/stat/struct_stat.c	/^	mode_t st_mode;$/;"	m	struct:stat	file:
st_nlink	src/sys/stat/struct_stat.c	/^	nlink_t st_nlink;$/;"	m	struct:stat	file:
st_rdev	src/sys/stat/struct_stat.c	/^	dev_t st_rdev;$/;"	m	struct:stat	file:
st_size	src/sys/stat/struct_stat.c	/^	off_t st_size;$/;"	m	struct:stat	file:
st_uid	src/sys/stat/struct_stat.c	/^	uid_t st_uid;$/;"	m	struct:stat	file:
stack_t	src/signal/stack_t.c	/^} stack_t;$/;"	t	typeref:struct:__anon17	file:
start_day	src/nonstd/struct_locale_t.c	/^			int start_day;$/;"	m	struct:__locale_t::__anon9::__anon10	file:
start_month	src/nonstd/struct_locale_t.c	/^			int start_month;$/;"	m	struct:__locale_t::__anon9::__anon10	file:
start_year	src/nonstd/struct_locale_t.c	/^			int start_year;$/;"	m	struct:__locale_t::__anon9::__anon10	file:
stat	src/stdio/remove.c	/^ struct stat { int st_mode; };$/;"	s	file:
stat	src/stdio/remove.c	9;"	d	file:
stat	src/sys/stat/stat.c	/^int stat(const char * restrict path, struct stat * restrict buf)$/;"	f
stat	src/sys/stat/struct_stat.c	/^struct stat {$/;"	s	file:
statvfs	src/sys/statvfs/statvfs.c	/^int statvfs(const char * restrict path, struct statvfs * restrict buf)$/;"	f
statvfs	src/sys/statvfs/struct_statvfs.c	/^struct statvfs {$/;"	s	file:
stderr	src/stdio/stderr.c	2;"	d	file:
stdin	src/stdio/stdin.c	2;"	d	file:
stdout	src/stdio/stdout.c	2;"	d	file:
step	src/regexp/step.c	/^int step(const char *string, const char *expbuf)$/;"	f
str_list	src/stropts/struct_str_list.c	/^struct str_list {$/;"	s	file:
str_mlist	src/stropts/struct_str_mlist.c	/^struct str_mlist {$/;"	s	file:
strbuf	src/stropts/struct_strbuf.c	/^struct strbuf {$/;"	s	file:
strcasecmp	src/strings/strcasecmp.c	/^int strcasecmp(const char *s1, const char *s2)$/;"	f
strcat	src/string/strcat.c	/^char * strcat(char * restrict s1, const char * restrict s2)$/;"	f
strchr	src/string/strchr.c	/^char * strchr(const char *s, int c)$/;"	f
strcmp	src/string/strcmp.c	/^int strcmp(const char *s1, const char *s2)$/;"	f
strcoll	src/string/strcoll.c	/^int strcoll(const char *s1, const char *s2)$/;"	f
strcpy	src/string/strcpy.c	/^char * strcpy(char * restrict s1, const char * restrict s2)$/;"	f
strcspn	src/string/strcspn.c	/^size_t strcspn(const char *s1, const char *s2)$/;"	f
strdup	src/string/strdup.c	/^char * strdup(const char *s)$/;"	f
stream	src/nonstd/struct_io_options.c	/^	struct __FILE *stream;$/;"	m	struct:io_options	typeref:struct:io_options::__FILE	file:
strerror	src/string/strerror.c	/^char * strerror(int errnum)$/;"	f
strfdinsert	src/stropts/struct_strfdinsert.c	/^struct strfdinsert {$/;"	s	file:
strfmon	src/monetary/strfmon.c	/^ssize_t strfmon(char * restrict s, size_t maxsize, const char * restrict format, ...)$/;"	f
strftime	src/time/strftime.c	/^size_t strftime(char * restrict s, size_t maxsize, const char * restrict format, const struct tm * restrict timeptr)$/;"	f
string	src/nonstd/struct_io_options.c	/^	char *string;$/;"	m	struct:io_options	file:
strioctl	src/stropts/struct_strioctl.c	/^struct strioctl {$/;"	s	file:
strlen	src/string/strlen.c	/^size_t strlen(const char *s)$/;"	f
strncasecmp	src/strings/strncasecmp.c	/^int strncasecmp(const char *s1, const char *s2, size_t n)$/;"	f
strncat	src/string/strncat.c	/^char * strncat(char * restrict s1, const char * restrict s2, size_t n)$/;"	f
strncmp	src/string/strncmp.c	/^int strncmp(const char *s1, const char *s2, size_t n)$/;"	f
strncpy	src/string/strncpy.c	/^char * strncpy(char * restrict s1, const char * restrict s2, size_t n)$/;"	f
strpbrk	src/string/strpbrk.c	/^char * strpbrk(const char *s1, const char *s2)$/;"	f
strpeek	src/stropts/struct_strpeek.c	/^struct strpeek {$/;"	s	file:
strptime	src/time/strptime.c	/^char *strptime(const char *restrict buf, const char *restrict format, struct tm *restrict tm)$/;"	f
strrchr	src/string/strrchr.c	/^char * strrchr(const char *s, int c)$/;"	f
strrecvfd	src/stropts/struct_strrecvfd.c	/^struct strrecvfd {$/;"	s	file:
strspn	src/string/strspn.c	/^size_t strspn(const char *s1, const char *s2)$/;"	f
strstr	src/string/strstr.c	/^char * strstr(const char *s1, const char *s2)$/;"	f
strtod	src/stdlib/strtod.c	/^double strtod(const char * restrict nptr, char ** restrict endptr)$/;"	f
strtof	src/stdlib/strtof.c	/^float strtof(const char * restrict nptr, char ** restrict endptr)$/;"	f
strtoimax	src/inttypes/strtoimax.c	/^intmax_t strtoimax(const char * restrict nptr, char ** restrict endptr, int base)$/;"	f
strtoimax	src/stdlib/strtol.c	9;"	d	file:
strtok	src/string/strtok.c	/^char * strtok(char * restrict s1, const char * restrict s2)$/;"	f
strtol	src/stdlib/strtol.c	/^long int strtol(const char * restrict nptr, char ** restrict endptr, int base)$/;"	f
strtold	src/stdlib/strtold.c	/^long double strtold(const char * restrict nptr, char ** restrict endptr)$/;"	f
strtoll	src/stdlib/strtoll.c	/^long long int strtoll(const char * restrict nptr, char ** restrict endptr, int base)$/;"	f
strtoul	src/stdlib/strtoul.c	/^unsigned long int strtoul(const char * nptr, char ** endptr, int base)$/;"	f
strtoull	src/stdlib/strtoull.c	/^unsigned long long int strtoull(const char * restrict nptr, char ** restrict endptr, int base)$/;"	f
strtoumax	src/inttypes/strtoumax.c	/^uintmax_t strtoumax(const char *restrict nptr, char ** restrict endptr, int base)$/;"	f
strtoumax	src/stdlib/strtoul.c	9;"	d	file:
strxfrm	src/string/strxfrm.c	/^size_t strxfrm(char * restrict s1, const char * restrict s2, size_t n)$/;"	f
swab	src/unistd/swab.c	/^void swab(const void * restrict src, void * restrict dest, ssize_t nbytes)$/;"	f
swapcontext	src/ucontext/swapcontext.c	/^void swapcontext(ucontext_t *oucp, const ucontext_t *ucp)$/;"	f
swprintf	src/wchar/swprintf.c	/^int swprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, ...)$/;"	f
swscanf	src/wchar/swscanf.c	/^int swscanf(const wchar_t * restrict s, const wchar_t * restrict format, ...)$/;"	f
symlink	src/unistd/symlink.c	/^int symlink(const char*path1, const char *path2)$/;"	f
sync	src/unistd/sync.c	/^void sync(void)$/;"	f
syscall_lookup_t	src/nonstd/syscall_lookup_t.c	/^typedef long (*syscall_lookup_t)(const char *);$/;"	t	file:
sysconf	src/unistd/sysconf.c	/^long sysconf(int name)$/;"	f
syslog	src/syslog/syslog.c	/^void syslog(int priority, const char * message, ...)$/;"	f
sysname	src/sys/utsname/struct_utsname.c	/^	char sysname[100];$/;"	m	struct:utsname	file:
system	src/stdlib/system.c	/^int system(const char * string)$/;"	f
t_fmt	src/nonstd/struct_locale_t.c	/^		char *t_fmt;$/;"	m	struct:__locale_t::__anon9	file:
t_fmt_ampm	src/nonstd/struct_locale_t.c	/^		char *t_fmt_ampm;$/;"	m	struct:__locale_t::__anon9	file:
tan	src/math/tan.c	/^TYPE TGFN(tan)(TYPE x)$/;"	f
tanh	src/math/tanh.c	/^TYPE TGFN(tanh)(TYPE x)$/;"	f
tcdrain	src/termios/tcdrain.c	/^int tcdrain(int fildes)$/;"	f
tcflag_t	src/termios/tcflag_t.c	/^typedef unsigned int                                                   tcflag_t;$/;"	t	file:
tcflow	src/termios/tcflow.c	/^int tcflow(int fildes, int action)$/;"	f
tcflush	src/termios/tcflush.c	/^int tcflush(int fildes, int queue_selector)$/;"	f
tcgetattr	src/termios/tcgetattr.c	/^int tcgetattr(int fildes, struct termios *termios_p)$/;"	f
tcgetpgrp	src/unistd/tcgetpgrp.c	/^pid_t tcgetpgrp(int fildes)$/;"	f
tcgetsid	src/termios/tcgetsid.c	/^pid_t tcgetsid(int fildes)$/;"	f
tcsendbreak	src/termios/tcsendbreak.c	/^int tcsendbreak(int fildes, int duration)$/;"	f
tcsetattr	src/termios/tcsetattr.c	/^int tcsetattr(int fildes, int optional_actions, struct termios *termios_p)$/;"	f
tcsetpgrp	src/unistd/tcsetpgrp.c	/^int tcsetpgrp(int fildes, pid_t pgid_id)$/;"	f
tdelete	src/search/tdelete.c	/^void *tdelete(const void * restrict key, void ** restrict rootp, int (*compar) (const void *, const void *))$/;"	f
telldir	src/dirent/telldir.c	/^long telldir(DIR * dirp)$/;"	f
tempnam	src/stdio/tempnam.c	/^char * tempnam(const char * dir, const char * pfx)$/;"	f
termios	src/termios/struct_termios.c	/^struct termios {$/;"	s	file:
tfind	src/search/tfind.c	/^void *tfind(const void * key, void * const * rootp, int (*compar) (const void *, const void *))$/;"	f
tgamma	src/math/tgamma.c	/^TYPE TGFN(tgamma)(TYPE x)$/;"	f
thousands_sep	src/locale/struct_lconv.c	/^	char *thousands_sep;		\/* "" *\/$/;"	m	struct:lconv	file:
thread	src/nonstd/struct_FILE.c	/^	int thread;$/;"	m	struct:__FILE	file:
time	src/nonstd/struct_locale_t.c	/^	char *time;$/;"	m	struct:__locale_t	file:
time	src/sys/timeb/struct_timeb.c	/^	time_t time;$/;"	m	struct:timeb	file:
time	src/time/time.c	/^time_t time(time_t * timer)$/;"	f
time_t	src/time/time_t.c	/^typedef long int                                                         time_t;$/;"	t	file:
timeb	src/sys/timeb/struct_timeb.c	/^struct timeb {$/;"	s	file:
times	src/sys/times/times.c	/^clock_t times(struct tms *buffer)$/;"	f
timeval	src/sys/time/struct_timeval.c	/^struct timeval {$/;"	s	file:
timezone	src/sys/timeb/struct_timeb.c	/^	short timezone;$/;"	m	struct:timeb	file:
timezone	src/time/timezone.c	/^long timezone;$/;"	v
tm	src/time/struct_tm.c	/^struct tm {$/;"	s	file:
tm_hour	src/time/struct_tm.c	/^	int tm_hour;	\/* Hour [0,23] *\/$/;"	m	struct:tm	file:
tm_isdst	src/time/struct_tm.c	/^	int tm_isdst;	\/* Daylight Saving Time flag *\/$/;"	m	struct:tm	file:
tm_mday	src/time/struct_tm.c	/^	int tm_mday;	\/* Day of the month [1,31] *\/$/;"	m	struct:tm	file:
tm_min	src/time/struct_tm.c	/^	int tm_min;	\/* Minutes [0, 59] *\/$/;"	m	struct:tm	file:
tm_mon	src/time/struct_tm.c	/^	int tm_mon;	\/* Month of the year [0,11] *\/$/;"	m	struct:tm	file:
tm_sec	src/time/struct_tm.c	/^	int tm_sec;	\/* Seconds [0,60] *\/$/;"	m	struct:tm	file:
tm_wday	src/time/struct_tm.c	/^	int tm_wday;	\/* Day of the week [0,6] (Sunday = 0) *\/$/;"	m	struct:tm	file:
tm_yday	src/time/struct_tm.c	/^	int tm_yday;	\/* Day of the year [0,365] *\/$/;"	m	struct:tm	file:
tm_year	src/time/struct_tm.c	/^	int tm_year;	\/* Years since 1900 *\/$/;"	m	struct:tm	file:
tmpfile	src/stdio/tmpfile.c	/^FILE * tmpfile(void)$/;"	f
tmpnam	src/stdio/tmpnam.c	/^char * tmpnam(char *s)$/;"	f
tms	src/sys/times/struct_tms.c	/^struct tms {$/;"	s	file:
tms_cstime	src/sys/times/struct_tms.c	/^	clock_t tms_cstime;$/;"	m	struct:tms	file:
tms_cutime	src/sys/times/struct_tms.c	/^	clock_t tms_cutime;$/;"	m	struct:tms	file:
tms_stime	src/sys/times/struct_tms.c	/^	clock_t tms_stime;$/;"	m	struct:tms	file:
tms_utime	src/sys/times/struct_tms.c	/^	clock_t tms_utime;$/;"	m	struct:tms	file:
toascii	src/ctype/toascii.c	/^int toascii(int c)$/;"	f
tolower	src/ctype/tolower.c	/^int tolower(int c)$/;"	f
toupper	src/ctype/toupper.c	/^int toupper(int c)$/;"	f
towctrans	src/wctype/towctrans.c	/^wint_t towctrans(wint_t wc, wctrans_t desc)$/;"	f
towlower	src/wctype/towlower.c	/^wint_t towlower(wint_t wc)$/;"	f
towupper	src/wctype/towupper.c	/^wint_t towupper(wint_t wc)$/;"	f
true	src/stdbool/true.c	2;"	d	file:
trunc	src/math/trunc.c	/^TYPE TGFN(trunc)(TYPE x)$/;"	f
truncate	src/unistd/truncate.c	/^int truncate(const char *path, off_t length)$/;"	f
tsearch	src/search/tsearch.c	/^void *tsearch(const void * key, void ** rootp, int (*compar) (const void *, const void *))$/;"	f
ttyname	src/unistd/ttyname.c	/^char *ttyname(int fildes)$/;"	f
ttyslot	src/stdlib/ttyslot.c	/^int ttyslot(void)$/;"	f
tv_sec	src/sys/time/struct_timeval.c	/^	time_t tv_sec;$/;"	m	struct:timeval	file:
tv_usec	src/sys/time/struct_timeval.c	/^	suseconds_t tv_usec;$/;"	m	struct:timeval	file:
twalk	src/search/twalk.c	/^void twalk(const void * root, void (*action) (const void *, VISIT, int))$/;"	f
tzname	src/time/tzname.c	/^char * tzname[2];$/;"	v
tzset	src/time/tzset.c	/^void tzset(void)$/;"	f
ualarm	src/unistd/ualarm.c	/^useconds_t ualarm(useconds_t useconds, useconds_t interval)$/;"	f
uc_link	src/ucontext/ucontext_t.c	/^	struct ucontext_t * uc_link;$/;"	m	struct:ucontext_t	typeref:struct:ucontext_t::ucontext_t	file:
uc_mcontext	src/ucontext/ucontext_t.c	/^	mcontext_t uc_mcontext;$/;"	m	struct:ucontext_t	file:
uc_sigmask	src/ucontext/ucontext_t.c	/^	sigset_t uc_sigmask;$/;"	m	struct:ucontext_t	file:
uc_stack	src/ucontext/ucontext_t.c	/^	stack_t uc_stack;$/;"	m	struct:ucontext_t	file:
ucontext_t	src/ucontext/ucontext_t.c	/^typedef struct ucontext_t {$/;"	s	file:
ucontext_t	src/ucontext/ucontext_t.c	/^} ucontext_t;$/;"	t	typeref:struct:ucontext_t	file:
uid	src/stropts/struct_strrecvfd.c	/^	uid_t uid;$/;"	m	struct:strrecvfd	file:
uid	src/sys/ipc/struct_ipc_perm.c	/^	uid_t uid;	\/* Owner's user ID *\/$/;"	m	struct:ipc_perm	file:
uid_t	src/sys/types/uid_t.c	/^typedef unsigned long long int                                            uid_t;$/;"	t	file:
uint16_t	src/stdint/uint16_t.c	/^typedef unsigned short int                                             uint16_t;$/;"	t	file:
uint32_t	src/stdint/uint32_t.c	/^typedef unsigned int                                                   uint32_t;$/;"	t	file:
uint64_t	src/stdint/uint64_t.c	/^typedef unsigned long long int                                         uint64_t;$/;"	t	file:
uint8_t	src/stdint/uint8_t.c	/^typedef unsigned char                                                   uint8_t;$/;"	t	file:
uint_fast16_t	src/stdint/uint_fast16_t.c	/^typedef unsigned short int                                        uint_fast16_t;$/;"	t	file:
uint_fast32_t	src/stdint/uint_fast32_t.c	/^typedef unsigned int                                              uint_fast32_t;$/;"	t	file:
uint_fast64_t	src/stdint/uint_fast64_t.c	/^typedef unsigned long long int                                    uint_fast64_t;$/;"	t	file:
uint_fast8_t	src/stdint/uint_fast8_t.c	/^typedef unsigned char                                              uint_fast8_t;$/;"	t	file:
uint_least16_t	src/stdint/uint_least16_t.c	/^typedef unsigned short int                                       uint_least16_t;$/;"	t	file:
uint_least32_t	src/stdint/uint_least32_t.c	/^typedef unsigned long int                                        uint_least32_t;$/;"	t	file:
uint_least64_t	src/stdint/uint_least64_t.c	/^typedef unsigned long long int                                   uint_least64_t;$/;"	t	file:
uint_least8_t	src/stdint/uint_least8_t.c	/^typedef unsigned char                                             uint_least8_t;$/;"	t	file:
uintmax_t	src/stdint/uintmax_t.c	/^typedef unsigned long long int                                        uintmax_t;$/;"	t	file:
uintmax_t	src/stdlib/strtoul.c	/^typedef unsigned long uintmax_t;$/;"	t	file:
uintptr_t	src/stdint/uintptr_t.c	/^typedef unsigned long long int                                        uintptr_t;$/;"	t	file:
ulimit	src/ulimit/ulimit.c	/^long ulimit(int cmd, ...)$/;"	f
umask	src/sys/stat/umask.c	/^mode_t umask(mode_t cmask)$/;"	f
uname	src/sys/utsname/uname.c	/^int uname(struct utsname *name)$/;"	f
ungetc	src/stdio/ungetc.c	/^int ungetc(int c, FILE *stream)$/;"	f
ungetwc	src/wchar/ungetwc.c	/^wint_t ungetwc(wint_t c, FILE * stream)$/;"	f
unlink	src/stdio/remove.c	12;"	d	file:
unlink	src/unistd/unlink.c	/^int unlink(const char *path)$/;"	f
unlockpt	src/stdlib/unlockpt.c	/^int unlockpt(int fildes)$/;"	f
useconds_t	src/sys/types/useconds_t.c	/^typedef unsigned int                                                 useconds_t;$/;"	t	file:
usleep	src/unistd/usleep.c	/^int usleep(useconds_t useconds)$/;"	f
ut_id	src/utmpx/struct_utmpx.c	/^	char ut_id[];$/;"	m	struct:utmpx	file:
ut_line	src/utmpx/struct_utmpx.c	/^	char ut_line[];$/;"	m	struct:utmpx	file:
ut_pid	src/utmpx/struct_utmpx.c	/^	pid_t ut_pid;$/;"	m	struct:utmpx	file:
ut_tv	src/utmpx/struct_utmpx.c	/^	struct timeval ut_tv;$/;"	m	struct:utmpx	typeref:struct:utmpx::timeval	file:
ut_type	src/utmpx/struct_utmpx.c	/^	short ut_type;$/;"	m	struct:utmpx	file:
ut_user	src/utmpx/struct_utmpx.c	/^	char ut_user[];$/;"	m	struct:utmpx	file:
utimbuf	src/utime/struct_utimbuf.c	/^struct utimbuf {$/;"	s	file:
utime	src/utime/utime.c	/^int utime(const char *path, const struct utimbuf *times)$/;"	f
utimes	src/sys/time/utimes.c	/^int utimes(const char *path, const struct timeval times[2])$/;"	f
utmpx	src/utmpx/struct_utmpx.c	/^struct utmpx {$/;"	s	file:
utsname	src/sys/utsname/struct_utsname.c	/^struct utsname {$/;"	s	file:
va_arg	src/stdarg/va_arg.c	2;"	d	file:
va_copy	src/stdarg/va_copy.c	2;"	d	file:
va_end	src/stdarg/va_end.c	2;"	d	file:
va_list	src/stdarg/va_list.c	/^typedef __builtin_va_list                                               va_list;$/;"	t	file:
va_start	src/stdarg/va_start.c	2;"	d	file:
valloc	src/stdlib/valloc.c	/^void *valloc(size_t size)$/;"	f
version	src/sys/utsname/struct_utsname.c	/^	char version[100];$/;"	m	struct:utsname	file:
vfork	src/unistd/vfork.c	/^pid_t vfork(void)$/;"	f
vfprintf	src/stdio/vfprintf.c	/^int vfprintf(FILE * restrict stream, const char * restrict format, va_list arg)$/;"	f
vfscanf	src/stdio/vfscanf.c	/^int vfscanf(FILE * restrict stream, const char * restrict format, va_list arg)$/;"	f
vfwprintf	src/wchar/vfwprintf.c	/^int vfwprintf(FILE * restrict stream, const wchar_t * restrict format, va_list arg)$/;"	f
vfwscanf	src/wchar/vfwscanf.c	/^int vfwscanf(FILE * restrict stream, const wchar_t * restrict format, va_list arg)$/;"	f
vprintf	src/stdio/vprintf.c	/^int vprintf(const char * restrict format, va_list arg)$/;"	f
vscanf	src/stdio/vscanf.c	/^int vscanf(const char * restrict format, va_list arg)$/;"	f
vsnprintf	src/stdio/vsnprintf.c	/^int vsnprintf(char * restrict s, size_t n, va_list ap)$/;"	f
vsprintf	src/stdio/vsprintf.c	/^int vsprintf(char *s, const char *format, va_list arg)$/;"	f
vsscanf	src/stdio/vsscanf.c	/^int vsscanf(const char * restrict s, const char * restrict format, va_list arg)$/;"	f
vswprintf	src/wchar/vswprintf.c	/^int vswprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, va_list arg)$/;"	f
vswscanf	src/wchar/vswscanf.c	/^int vswscanf(const wchar_t * restrict s, const wchar_t * restrict format, va_list arg)$/;"	f
vwprintf	src/wchar/vwprintf.c	/^int vwprintf(const wchar_t * restrict format, va_list arg)$/;"	f
vwscanf	src/wchar/vwscanf.c	/^int vwscanf(const wchar_t * restrict format, va_list arg)$/;"	f
wait	src/sys/wait/wait.c	/^pid_t wait(int *stat_loc)$/;"	f
wait3	src/sys/wait/wait3.c	/^pid_t wait3(int *state_loc, int options, struct rusage *resource_usage)$/;"	f
waitid	src/sys/wait/waitid.c	/^int waitid(idtype_t idtype, id_t id, siginfo_t *infop, int options)$/;"	f
waitpid	src/sys/wait/waitpid.c	/^pid_t waitpid(pid_t pid, int *stat_loc, int options)$/;"	f
wcrtomb	src/wchar/wcrtomb.c	/^size_t wcrtomb(char * restrict s, wchar_t wc, mbstate_t * restrict ps)$/;"	f
wcscat	src/wchar/wcscat.c	/^wchar_t * wcscat(wchar_t * restrict s1, const wchar_t * restrict s2)$/;"	f
wcschr	src/wchar/wcschr.c	/^wchar_t * wcschr(const wchar_t * s, wchar_t c)$/;"	f
wcscmp	src/wchar/wcscmp.c	/^int wcscmp(const wchar_t * s1, const wchar_t * s2)$/;"	f
wcscoll	src/wchar/wcscoll.c	/^int wcscoll(const wchar_t * s1, const wchar_t * s2)$/;"	f
wcscpy	src/wchar/wcscpy.c	/^wchar_t * wcscpy(wchar_t * restrict s1, const wchar_t * restrict s2)$/;"	f
wcscspn	src/wchar/wcscspn.c	/^size_t wcscspn(const wchar_t * s1, const wchar_t * s2)$/;"	f
wcsftime	src/wchar/wcsftime.c	/^size_t wcsftime(wchar_t * restrict s, size_t maxsize, const wchar_t * restrict format, const struct tm * restrict timeptr)$/;"	f
wcslen	src/wchar/wcslen.c	/^size_t wcslen(const wchar_t * s)$/;"	f
wcsncat	src/wchar/wcsncat.c	/^wchar_t * wcsncat(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)$/;"	f
wcsncmp	src/wchar/wcsncmp.c	/^int wcsncmp(const wchar_t * s1, const wchar_t * s2, size_t n)$/;"	f
wcsncpy	src/wchar/wcsncpy.c	/^wchar_t * wcsncpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)$/;"	f
wcspbrk	src/wchar/wcspbrk.c	/^wchar_t * wcspbrk(const wchar_t * s1, const wchar_t * s2)$/;"	f
wcsrchr	src/wchar/wcsrchr.c	/^wchar_t * wcsrchr(const wchar_t * s, wchar_t c)$/;"	f
wcsrtombs	src/wchar/wcsrtombs.c	/^size_t wcsrtombs(char * restrict dst, const wchar_t ** restrict src, size_t len, mbstate_t * restrict ps)$/;"	f
wcsspn	src/wchar/wcsspn.c	/^size_t wcsspn(const wchar_t * s1, const wchar_t * s2)$/;"	f
wcsstr	src/wchar/wcsstr.c	/^wchar_t * wcsstr(const wchar_t * s1, const wchar_t * s2)$/;"	f
wcstod	src/wchar/wcstod.c	/^double wcstod(const wchar_t * restrict nptr, wchar_t ** restrict endptr)$/;"	f
wcstof	src/wchar/wcstof.c	/^float wcstof(const wchar_t * restrict nptr, wchar_t ** restrict endptr)$/;"	f
wcstoimax	src/inttypes/wcstoimax.c	/^intmax_t wcstoimax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)$/;"	f
wcstok	src/wchar/wcstok.c	/^wchar_t * wcstok(wchar_t * restrict s1, const wchar_t * restrict s2, wchar_t ** restrict ptr)$/;"	f
wcstol	src/wchar/wcstol.c	/^long int wcstol(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)$/;"	f
wcstold	src/wchar/wcstold.c	/^long double wcstold(const wchar_t * restrict nptr, wchar_t ** restrict endptr)$/;"	f
wcstoll	src/wchar/wcstoll.c	/^long long int wcstoll(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)$/;"	f
wcstombs	src/stdlib/wcstombs.c	/^size_t wcstombs(char * restrict s, const wchar_t * restrict pwcs, size_t n)$/;"	f
wcstoul	src/wchar/wcstoul.c	/^unsigned long int wcstoul(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)$/;"	f
wcstoull	src/wchar/wcstoull.c	/^unsigned long long int wcstoull(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)$/;"	f
wcstoumax	src/inttypes/wcstoumax.c	/^uintmax_t wcstoumax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)$/;"	f
wcswcs	src/wchar/wcswcs.c	/^wchar_t * wcswcs(const wchar_t * s1, const wchar_t * s2)$/;"	f
wcswidth	src/wchar/wcswidth.c	/^int wcswidth(const wchar_t * wcsptr, size_t n)$/;"	f
wcsxfrm	src/wchar/wcsxfrm.c	/^size_t wcsxfrm(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)$/;"	f
wctob	src/wchar/wctob.c	/^int wctob(wint_t c)$/;"	f
wctomb	src/stdlib/wctomb.c	/^int wctomb(char * s, wchar_t wchar)$/;"	f
wctrans	src/wctype/wctrans.c	/^wctrans_t wctrans(const char * property)$/;"	f
wctrans_t	src/wctype/wctrans_t.c	/^typedef int                                                           wctrans_t;$/;"	t	file:
wctype	src/wctype/wctype.c	/^wctype_t wctype(const char * property)$/;"	f
wctype_t	src/wctype/wctype_t.c	/^typedef int                                                            wctype_t;$/;"	t	file:
wcwidth	src/wchar/wcwidth.c	/^int wcwidth(wchar_t wc)$/;"	f
we_offs	src/wordexp/wordexp_t.c	/^	size_t	we_offs;$/;"	m	struct:__anon23	file:
we_wordc	src/wordexp/wordexp_t.c	/^	size_t	we_wordc;$/;"	m	struct:__anon23	file:
we_wordv	src/wordexp/wordexp_t.c	/^	char **	we_wordv;$/;"	m	struct:__anon23	file:
wint_t	src/wctype/wint_t.c	/^typedef int                                                              wint_t;$/;"	t	file:
wmemchr	src/wchar/wmemchr.c	/^wchar_t * wmemchr(const wchar_t * s, wchar_t c, size_t n)$/;"	f
wmemcmp	src/wchar/wmemcmp.c	/^int wmemcmp(const wchar_t * s1, const wchar_t * s2, size_t n)$/;"	f
wmemcpy	src/wchar/wmemcpy.c	/^wchar_t * wmemcpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)$/;"	f
wmemmove	src/wchar/wmemmove.c	/^wchar_t * wmemmove(wchar_t * s1, const wchar_t * s2, size_t n)$/;"	f
wmemset	src/wchar/wmemset.c	/^wchar_t * wmemset(wchar_t * s, wchar_t c, size_t n)$/;"	f
wordexp	src/wordexp/wordexp.c	/^int wordexp(const char *restrict words, wordexp_t *restrict pwordexp, int flags)$/;"	f
wordexp_t	src/wordexp/wordexp_t.c	/^} wordexp_t;$/;"	t	typeref:struct:__anon23	file:
wordfree	src/wordexp/wordfree.c	/^void wordfree(wordexp_t *pwordexp)$/;"	f
wprintf	src/wchar/wprintf.c	/^int wprintf(const wchar_t * restrict format, ...)$/;"	f
write	src/stdio/fputc.c	7;"	d	file:
write	src/unistd/write.c	/^ssize_t write(int fildes, const void *buf, size_t nbyte)$/;"	f
writev	src/sys/uio/writev.c	/^ssize_t writev(int fildes, const struct iovec * iov, int iovcnt)$/;"	f
wscanf	src/wchar/wscanf.c	/^int wscanf(const wchar_t * restrict format, ...)$/;"	f
xor	src/iso646/xor.c	2;"	d	file:
xor_eq	src/iso646/xor_eq.c	2;"	d	file:
y0	src/math/y0.c	/^double y0(double x)$/;"	f
y1	src/math/y1.c	/^double y1(double x)$/;"	f
yesexpr	src/nonstd/struct_locale_t.c	/^		char *yesexpr;$/;"	m	struct:__locale_t::__anon8	file:
yn	src/math/yn.c	/^double yn(int n, double x)$/;"	f