1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
|
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# ident "%Z%%M% %I% %E% SMI"
#
function .div
arch sparc
version sparc=SYSVABI_1.3
end
function .mul
arch sparc
version sparc=SYSVABI_1.3
end
function .rem
arch sparc
version sparc=SYSVABI_1.3
end
function _longjmp
declaration void _longjmp(jmp_buf env, int val)
version SUNW_1.1
end
function _setjmp
declaration int _setjmp(jmp_buf env)
version SUNW_1.1
end
function a64l
include <stdlib.h>
declaration long a64l(const char *s)
version SUNW_0.7
end
function abort
include <stdlib.h>
declaration void abort(void)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function abs
include <stdlib.h>
declaration int abs(int val)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function alphasort
include <sys/types.h>, <dirent.h>
declaration int alphasort(const struct dirent **d1, \
const struct dirent **d2);
version SUNW_1.22
end
function _alphasort
weak alphasort
version SUNW_1.22
end
function ascftime
include <time.h>
declaration int ascftime(char *s, const char *format, const struct tm *timeptr)
version SUNW_0.7
exception $return == 0
end
function asctime
include <time.h>
declaration char *asctime(const struct tm *tm)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function asctime_r
include <time.h>
declaration char *asctime_r(const struct tm *_RESTRICT_KYWD tm, \
char *_RESTRICT_KYWD buf, int buflen)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ERANGE
exception $return == 0
end
function _assert
version SUNW_0.7
end
function __assert
weak _assert
version i386=SYSVABI_1.3 sparc=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _assert_c99
version SUNWprivate_1.1
end
function __assert_c99
weak _assert_c99
version SUNWprivate_1.1
end
function atexit
include <stdlib.h>
declaration int atexit(void (*func)(void))
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return != 0
end
function atof
include <stdlib.h>
declaration double atof(const char *str)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ERANGE EINVAL
exception errno != 0
end
function atoi
include <stdlib.h>
declaration int atoi(const char *str)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ERANGE EINVAL
exception errno != 0
end
function atol
include <stdlib.h>
declaration long atol(const char *str)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ERANGE EINVAL
exception errno != 0
end
function basename
include <libgen.h>
declaration char *basename(char *path)
version SUNW_1.1
end
function bcmp
include <strings.h>
declaration int bcmp(const void *s1, const void *s2, size_t n)
version SUNW_0.9
end
function bcopy
include <strings.h>
declaration void bcopy(const void *s1, void *s2, size_t n)
version SUNW_0.9
end
function bsearch
include <stdlib.h>
declaration void *bsearch(const void *key, const void *base, size_t nel, \
size_t size, int (*compar)(const void *, const void *))
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == NULL
end
function bzero
include <strings.h>
declaration void bzero(void *s, size_t n)
version SUNW_0.9
end
function calloc
include <stdlib.h>, <alloca.h>
declaration void *calloc(size_t nelem, size_t elsize)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ENOMEM EAGAIN
exception $return == 0
binding nodirect
end
function catclose
include <nl_types.h>
declaration int catclose(nl_catd catd)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF EINTR
exception $return == -1
end
function _catclose
weak catclose
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function catgets
include <nl_types.h>
declaration char *catgets(nl_catd catd, int set_num, int msg_num, \
const char *s)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF EINTR EINVAL ENOMSG
exception $return == s
end
function _catgets
weak catgets
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function catopen
include <nl_types.h>
declaration nl_catd catopen(const char *name, int oflag)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EMFILE ENAMETOOLONG ENFILE ENOENT ENOMEM ENOTDIR
exception $return == (nl_catd)-1
end
function _catopen
weak catopen
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function cfgetispeed
include <termios.h>
declaration speed_t cfgetispeed(const struct termios *termios_p)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _cfgetispeed
weak cfgetispeed
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function cfgetospeed
include <termios.h>
declaration speed_t cfgetospeed(const struct termios *termios_p)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _cfgetospeed
weak cfgetospeed
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function cfree
include <stdlib.h>
declaration void cfree(void *ptr, unsigned num, unsigned size);
version SUNWprivate_1.1
binding nodirect
end
function cfsetispeed
include <termios.h>
declaration int cfsetispeed(struct termios *termios_p, speed_t speed)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINVAL
exception ($return == -1)
end
function _cfsetispeed
weak cfsetispeed
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function cfsetospeed
include <termios.h>
declaration int cfsetospeed(struct termios *termios_p, speed_t speed)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINVAL
exception ($return == -1)
end
function _cfsetospeed
weak cfsetospeed
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function cftime
include <time.h>
declaration int cftime(char *s, char *format, const time_t *clock)
version SUNW_0.7
exception $return == 0
end
function clock
include <time.h>
declaration clock_t clock(void)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == -1
end
function closedir
include <sys/types.h>, <dirent.h>
declaration int closedir(DIR *dirp)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF EINTR
exception $return == -1
end
function _closedir
weak closedir
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function closefrom
include <stdlib.h>
declaration void closefrom(int lowfd)
version SUNW_1.21
end
function _closefrom
weak closefrom
version SUNW_1.21
end
function closelog
include <syslog.h>
declaration void closelog(void)
version SUNW_0.7
end
function confstr
include <unistd.h>
declaration size_t confstr(int name, char *buf, size_t len)
version SUNW_0.8
errno EINVAL
exception $return == 0 || $return != len
end
function crypt
include <unistd.h>
declaration char *crypt (const char *key, const char *salt)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ENOSYS EINVAL ELIBACC ENOMEM
exception $return == 0
end
function _crypt
weak crypt
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function crypt_gensalt
include <crypt.h>
declaration char *crypt_gensalt (const char*, const struct passwd *)
version SUNW_1.21.1
errno EINVAL ELIBACC ENOMEM
exception $return == 0
end
function csetcol
include <euc.h>
declaration int csetcol(int codeset)
version SUNW_0.7
end
function csetlen
include <euc.h>
declaration int csetlen(int codeset)
version SUNW_0.7
end
function ctime
include <time.h>
declaration char *ctime(const time_t *clock)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function ctime_r
include <time.h>
declaration char *ctime_r(const time_t *clock, char *buf, int buflen)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ERANGE
exception $return == 0
end
function dbm_clearerr
include <ndbm.h>
declaration int dbm_clearerr(DBM *db)
version SUNW_1.1
end
function dbm_close
include <ndbm.h>
declaration void dbm_close(DBM *db)
version SUNW_0.7
end
function dbm_delete
include <ndbm.h>
declaration int dbm_delete(DBM *db, datum key)
version SUNW_0.7
exception $return < 0
end
function dbm_error
include <ndbm.h>
declaration int dbm_error(DBM *db)
version SUNW_1.1
end
function dbm_fetch
include <ndbm.h>
declaration datum dbm_fetch(DBM *db, datum key)
version SUNW_0.7
exception ($return.dptr == 0)
end
function dbm_firstkey
include <ndbm.h>
declaration datum dbm_firstkey(DBM *db)
version SUNW_0.7
exception ($return.dptr == NULL) && (dbm_error(db) != 0)
end
function dbm_nextkey
include <ndbm.h>
declaration datum dbm_nextkey(DBM *db)
version SUNW_0.7
exception ($return.dptr == NULL) && (dbm_error(db) != 0)
end
function dbm_open
include <ndbm.h>, <fcntl.h>
declaration DBM *dbm_open(const char *file, int open_flags, \
mode_t file_mode)
version SUNW_0.7
exception $return == NULL
end
function dbm_store
include <ndbm.h>
declaration int dbm_store(DBM *db, datum key, datum content, \
int store_mode)
version SUNW_0.7
errno
exception $return != 0
end
function difftime
include <time.h>
declaration double difftime(time_t time1, time_t time0)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function directio
include <sys/types.h>, <sys/fcntl.h>
declaration int directio(int fildes, int advice)
version SUNW_1.1
errno EBADF ENOTTY EINVAL
exception $return == -1
end
function dirname
include <libgen.h>
declaration char *dirname(char *path)
version SUNW_1.1
end
function div
declaration div_t div(int numer, int denom)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function dladdr
version SUNW_1.22
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function _dladdr
version SUNWprivate_1.1
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function dladdr1
version SUNW_1.22
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function _dladdr1
version SUNWprivate_1.1
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function dlamd64getunwind
version SUNW_1.22
arch amd64
filter amd64=/usr/lib/amd64/ld.so.1
end
function _dlamd64getunwind
version SUNWprivate_1.1
arch amd64
filter amd64=/usr/lib/amd64/ld.so.1
end
function dlclose
version SUNW_1.22
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function _dlclose
version SUNWprivate_1.1
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function dldump
version SUNW_1.22
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function _dldump
version SUNWprivate_1.1
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function dlerror
version SUNW_1.22
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function _dlerror
version SUNWprivate_1.1
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function dlinfo
version SUNW_1.22
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function _dlinfo
version SUNWprivate_1.1
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function dlmopen
version SUNW_1.22
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function _dlmopen
version SUNWprivate_1.1
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function dlopen
version SUNW_1.22
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function _dlopen
version SUNWprivate_1.1
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function dlsym
version SUNW_1.22
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function _dlsym
version SUNWprivate_1.1
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function drand48
include <stdlib.h>
declaration double drand48(void)
version SUNW_0.7
end
function dup2
include <unistd.h>, <sys/resource.h>
declaration int dup2(int fildes, int fildes2)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF EINTR EMFILE
exception $return == -1
end
function _dup2
weak dup2
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function econvert
include <floatingpoint.h>
declaration char *econvert(double value, int ndigit, int *decpt, \
int *sign, char *buf)
version SUNW_0.7
exception ($return == 0)
end
function ecvt
include <floatingpoint.h>
declaration char *ecvt(double value, int ndigit, \
int *_RESTRICT_KYWD decpt, int *_RESTRICT_KYWD sign)
version SUNW_0.7
exception $return == 0
end
function encrypt
include <unistd.h>
declaration void encrypt (char block[64], int edflag)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ENOSYS
end
function _encrypt
weak encrypt
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function endgrent
include <grp.h>
declaration void endgrent(void)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function endnetgrent
declaration void endnetgrent(void)
version SUNW_0.7
errno ERANGE
end
function endpwent
include <pwd.h>
declaration void endpwent(void)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function endspent
include <shadow.h>
declaration void endspent(void)
version SUNW_0.7
end
function endusershell
declaration void endusershell();
version SUNW_1.1
end
function endutent
include <utmp.h>
declaration void endutent(void)
version SUNW_0.7
end
function endutxent
include <utmpx.h>
declaration void endutxent(void)
version SUNW_0.7
end
function erand48
include <stdlib.h>
declaration double erand48(unsigned short xsubi[3])
version SUNW_0.7
end
function euccol
include <euc.h>
declaration int euccol(const unsigned char *s)
version SUNW_0.7
end
function euclen
include <euc.h>
declaration int euclen(const unsigned char *s)
version SUNW_0.7
end
function eucscol
include <euc.h>
declaration int eucscol(const unsigned char *str)
version SUNW_0.7
end
function execl
include <unistd.h>
declaration int execl(const char *path, const char *arg0, ...)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EAGAIN EFAULT EINTR ELOOP EMULTIHOP ENAMETOOLONG \
ENOENT ENOEXEC ENOLINK ENOMEM ENOTDIR
exception $return == -1
end
function _execl
weak execl
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function execle
include <unistd.h>
declaration int execle(const char *path,char **const arg0, ...)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EAGAIN EFAULT EINTR ELOOP EMULTIHOP ENAMETOOLONG \
ENOENT ENOEXEC ENOLINK ENOMEM ENOTDIR
exception $return == -1
end
function _execle
weak execle
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function execlp
include <unistd.h>
declaration int execlp(const char *file, const char *arg0, ...)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EAGAIN EFAULT EINTR ELOOP EMULTIHOP ENAMETOOLONG ENOENT \
ENOEXEC ENOLINK ENOMEM ENOTDIR
exception $return == -1
end
function _execlp
weak execlp
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function execv
include <unistd.h>
declaration int execv(const char *path, char *const *argv)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EAGAIN EFAULT EINTR ELOOP EMULTIHOP ENAMETOOLONG ENOENT \
ENOEXEC ENOLINK ENOMEM ENOTDIR
exception $return == -1
end
function _execv
weak execv
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function execve
include <unistd.h>
declaration int execve(const char *path, char *const *argv, \
char *const *envp)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EAGAIN EFAULT EINTR ELOOP EMULTIHOP ENAMETOOLONG ENOENT \
ENOEXEC ENOLINK ENOMEM ENOTDIR
exception $return == -1
end
function _execve
weak execve
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function execvp
include <unistd.h>
declaration int execvp(const char *file, char *const *argv)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EAGAIN EFAULT EINTR ELOOP EMULTIHOP ENAMETOOLONG ENOENT \
ENOEXEC ENOLINK ENOMEM ENOTDIR
exception $return == -1
end
function _execvp
weak execvp
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function fattach
declaration int fattach(int fildes, const char *path)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EBADF EBUSY EINVAL ELOOP ENAMETOOLONG ENOENT \
ENOTDIR EPERM
exception $return == -1
end
function _fattach
weak fattach
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function fconvert
include <floatingpoint.h>
declaration char *fconvert(double value, int ndigit, int *decpt, \
int *sign, char *buf)
version SUNW_0.7
exception ($return == 0)
end
function fcvt
include <floatingpoint.h>
declaration char *fcvt(double value, int ndigit, \
int *_RESTRICT_KYWD decpt, int *_RESTRICT_KYWD sign)
version SUNW_0.7
exception $return == 0
end
function fdetach
include <stropts.h>
declaration int fdetach(const char *path)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EPERM ENOTDIR ENOENT EINVAL ENAMETOOLONG ELOOP
exception $return == -1
end
function _fdetach
weak fdetach
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function fdwalk
include <stdlib.h>
declaration int fdwalk(int (*func)(void *, int), void *cd)
version SUNW_1.21
end
function _fdwalk
weak fdwalk
version SUNW_1.21
end
function ffs
include <strings.h>
declaration int ffs(const int i)
version SUNW_0.7
end
function fgetgrent
include <grp.h>
declaration struct group *fgetgrent(FILE *f)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function fgetgrent_r
include <grp.h>
declaration struct group *fgetgrent_r(FILE *f, struct group *grp, \
char *buffer, int buflen)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function fgetpwent
include <pwd.h>
declaration struct passwd *fgetpwent(FILE *f)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function fgetpwent_r
include <pwd.h>
declaration struct passwd *fgetpwent_r(FILE *f, struct passwd *pwd, \
char *buffer, int buflen)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function fgetspent
include <shadow.h>
declaration struct spwd *fgetspent(FILE *fp)
version SUNW_0.7
exception $return == 0
end
function fgetspent_r
include <shadow.h>
declaration struct spwd *fgetspent_r(FILE *fp, struct spwd *result, \
char *buffer, int buflen)
version SUNW_0.7
exception $return == 0
end
function free
include <stdlib.h>, <alloca.h>
declaration void free(void *ptr)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ENOMEM EAGAIN
binding nodirect
end
function frexp
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
filter libm.so.2
end
function ftime
include <sys/timeb.h>
declaration int ftime(struct timeb *tp)
version SUNW_0.9
exception $return == -1
end
function ftok
include <sys/ipc.h>
declaration key_t ftok(const char *path, int id)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES ELOOP ENAMETOOLONG ENOENT ENOTDIR
exception $return == -1
end
function _ftok
weak ftok
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function ftruncate
include <unistd.h>
declaration int ftruncate(int fildes, off_t length)
version SUNW_0.7
errno EINTR EINVAL EFBIG EIO EACCES EFAULT EISDIR ELOOP EMFILE \
EMULTIHOP ENAMETOOLONG ENOENT ENFILE ENOTDIR ENOLINK \
EROFS EAGAIN EBADF
exception $return == -1
end
function _ftruncate
weak ftruncate
version SUNWprivate_1.1
end
function ftw
include <ftw.h>
declaration int ftw(const char *path, \
int (*fn)(const char *, const struct stat *, int), \
int depth)
version SUNW_0.7
exception $return == -1
end
function _ftw
weak ftw
version SUNWprivate_1.1
end
function gconvert
include <floatingpoint.h>
declaration char *gconvert(double value, int ndigit, int trailing, \
char *buf)
version SUNW_0.7
exception ($return == 0)
end
function gcvt
include <floatingpoint.h>
declaration char *gcvt(double value, int ndigit, char *buf)
version SUNW_0.7
exception $return == 0
end
function getcpuid
include <sys/processor.h>
declaration processorid_t getcpuid(void)
version SUNW_1.21
end
function _getcpuid
weak getcpuid
version SUNW_1.21
end
function getcwd
include <unistd.h>
declaration char *getcwd(char *buf, size_t size)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EINVAL ERANGE
exception $return == 0
end
function _getcwd
weak getcwd
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function getdate
declaration struct tm *getdate(const char *string)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function _getdate
weak getdate
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function getdtablesize
include <unistd.h>
declaration int getdtablesize(void)
version SUNW_0.9
end
function getenv
include <stdlib.h>
declaration char *getenv(const char *name)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function getextmntent
include <stdio.h>, <sys/mnttab.h>
declaration int getextmntent(FILE *fp, struct extmnttab *mp, size_t len)
version SUNW_1.20
exception $return != 0
end
function getgrent
include <grp.h>
declaration struct group *getgrent(void)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function getgrent_r
include <grp.h>
declaration struct group *getgrent_r(struct group *grp, char *buffer, \
int buflen)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function getgrgid
include <grp.h>
declaration struct group *getgrgid(gid_t gid)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function getgrgid_r
include <grp.h>
declaration struct group *getgrgid_r(gid_t gid, struct group *grp, \
char *buffer, int buflen)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function getgrnam
include <grp.h>
declaration struct group *getgrnam(const char *name)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function getgrnam_r
include <grp.h>
declaration struct group *getgrnam_r(const char *name, struct group *grp, \
char *buffer, int buflen)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function gethomelgroup
include <sys/processor.h>
declaration lgrpid_t gethomelgroup(void)
version SUNW_1.21
end
function _gethomelgroup
weak gethomelgroup
version SUNW_1.21
end
function gethostid
declaration long gethostid(void)
version SUNW_0.9
end
function gethostname
include <unistd.h>
declaration int gethostname(char *name, int namelen)
version SUNW_0.9
errno EPERM EFAULT
exception $return == -1
end
function gethrtime
include <sys/time.h>
declaration hrtime_t gethrtime(void)
version SUNW_0.7
end
function gethrvtime
include <sys/time.h>
declaration hrtime_t gethrvtime(void)
version SUNW_0.7
end
function getlogin
include <unistd.h>, <limits.h>
declaration char *getlogin(void)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EMFILE ENFILE ENXIO ERANGE
exception $return == 0
end
function getlogin_r
include <unistd.h>, <limits.h>
declaration char *getlogin_r(char *name, int namelen)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EMFILE ENFILE ENXIO ERANGE
exception $return == 0
end
function getmntany
include <stdio.h>, <sys/mnttab.h>
declaration int getmntany(FILE *fp, struct mnttab *mp, struct mnttab *mpref)
version SUNW_0.7
exception $return != 0
end
function getmntent
include <stdio.h>, <sys/mnttab.h>
declaration int getmntent(FILE *fp, struct mnttab *mp)
version SUNW_0.7
exception $return != 0
end
function getnetgrent
declaration int getnetgrent(char **machinep, char **userp, char **domainp)
version SUNW_0.7
errno ERANGE
exception $return == 0
end
function getnetgrent_r
declaration int getnetgrent_r(char **machinep, char **userp, \
char **domainp, char *buffer, int buflen)
version SUNW_0.7
errno ERANGE
exception $return == 0
end
function getopt
include <stdlib.h>
declaration int getopt(int argc, char *const *argv, const char *optstring)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == -1
end
function _getopt
weak getopt
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function getopt_clip
include <getopt.h>
declaration int getopt_clip(int argc, char *const *argv, \
const char *optstring, \
const struct option *long_options, \
int *long_index)
version SUNW_1.22
exception $return == -1
end
function _getopt_clip
weak getopt_clip
version SUNW_1.22
end
function getopt_long
include <getopt.h>
declaration int getopt_long(int argc, char *const *argv, \
const char *optstring, \
const struct option *long_options, \
int *long_index)
version SUNW_1.22
exception $return == -1
end
function _getopt_long
weak getopt_long
version SUNW_1.22
end
function getopt_long_only
include <getopt.h>
declaration int getopt_long_only(int argc, char *const *argv, \
const char *optstring, \
const struct option *long_options, \
int *long_index)
version SUNW_1.22
exception $return == -1
end
function _getopt_long_only
weak getopt_long_only
version SUNW_1.22
end
function getpagesize
include <unistd.h>
declaration int getpagesize(void)
version SUNW_0.9
end
function getpriority
include <sys/resource.h>
declaration int getpriority(int which, id_t who)
version SUNW_0.9
errno ESRCH EINVAL EPERM EACCES
exception $return == -1
end
function getpw
include <stdlib.h>
declaration int getpw(uid_t uid, char *buf)
version SUNW_0.7
exception $return != 0
end
function getpwent
include <pwd.h>
declaration struct passwd *getpwent(void)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function getpwent_r
include <pwd.h>
declaration struct passwd *getpwent_r(struct passwd *pwd, \
char *buffer, int buflen)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function getpwnam
include <pwd.h>
declaration struct passwd *getpwnam(const char *name)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function getpwnam_r
include <pwd.h>
declaration struct passwd *getpwnam_r(const char *name, \
struct passwd *pwd, char *buffer, int buflen)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function getpwuid
include <pwd.h>
declaration struct passwd *getpwuid(uid_t uid)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function getpwuid_r
include <pwd.h>
declaration struct passwd *getpwuid_r(uid_t uid, struct passwd *pwd, \
char *buffer, int buflen)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function getrusage
include <sys/resource.h>
declaration int getrusage(int who, struct rusage *r_usage)
version SUNW_0.9
errno EFAULT EINVAL
exception $return == -1
end
function getspent
include <shadow.h>
declaration struct spwd *getspent(void)
version SUNW_0.7
exception $return == 0
end
function getspent_r
include <shadow.h>
declaration struct spwd *getspent_r(struct spwd *result, \
char *buffer, int buflen)
version SUNW_0.7
exception $return == 0
end
function getspnam
include <shadow.h>
declaration struct spwd *getspnam(const char *name)
version SUNW_0.7
exception $return == 0
end
function getspnam_r
include <shadow.h>
declaration struct spwd *getspnam_r(const char *name, \
struct spwd *result, char *buffer, int buflen)
version SUNW_0.7
exception $return == 0
end
function getsubopt
include <stdlib.h>
declaration int getsubopt(char **optionp, char *const *tokens, char **valuep)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == -1
end
function _getsubopt
weak getsubopt
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function gettimeofday
include <sys/time.h>
declaration int gettimeofday(struct timeval *tp, void *tzp)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINVAL EPERM
exception $return == -1
end
function _gettimeofday
weak gettimeofday
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function gettxt
include <nl_types.h>
declaration char *gettxt(const char *msgid, const char *dflt_str)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _gettxt
weak gettxt
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function getusershell
declaration char *getusershell();
version SUNW_1.1
exception $return == 0
end
function getutent
include <utmp.h>
declaration struct utmp *getutent(void)
version SUNW_0.7
exception $return == 0
end
function getutid
include <utmp.h>
declaration struct utmp *getutid(const struct utmp *id)
version SUNW_0.7
exception $return == 0
end
function getutline
include <utmp.h>
declaration struct utmp *getutline(const struct utmp *line)
version SUNW_0.7
exception $return == 0
end
function getutmp
include <utmpx.h>
declaration void getutmp(const struct utmpx *utmpx, struct utmp *utmp)
version SUNW_0.7
end
function getutmpx
include <utmpx.h>
declaration void getutmpx(const struct utmp *utmp, struct utmpx *utmpx)
version SUNW_0.7
end
function getutxent
include <utmpx.h>
declaration struct utmpx *getutxent(void)
version SUNW_0.7
exception $return == 0
end
function getutxid
include <utmpx.h>
declaration struct utmpx *getutxid(const struct utmpx *id)
version SUNW_0.7
exception $return == 0
end
function getutxline
include <utmpx.h>
declaration struct utmpx *getutxline(const struct utmpx *line)
version SUNW_0.7
exception $return == 0
end
function getvfsany
include <stdio.h>, <sys/vfstab.h>
declaration int getvfsany(FILE *fp, struct vfstab *vp, struct vfstab *vref)
version SUNW_0.7
exception $return != 0
end
function getvfsent
include <stdio.h>, <sys/vfstab.h>
declaration int getvfsent(FILE *fp, struct vfstab *vp)
version SUNW_0.7
exception $return != 0
end
function getvfsfile
include <stdio.h>, <sys/vfstab.h>
declaration int getvfsfile(FILE *fp, struct vfstab *vp, char *file)
version SUNW_0.7
exception $return != 0
end
function getvfsspec
include <stdio.h>, <sys/vfstab.h>
declaration int getvfsspec(FILE *fp, struct vfstab *vp, char *spec)
version SUNW_0.7
exception $return != 0
end
function getwd
include <unistd.h>
declaration char *getwd(char *path_name)
version SUNW_0.9
exception $return == 0
end
function getwidth
include <euc.h>, <getwidth.h>
declaration void getwidth(eucwidth_t *ptr)
version SUNW_0.7
end
function gmtime
include <time.h>
declaration struct tm *gmtime(const time_t *clock)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function gmtime_r
include <time.h>
declaration struct tm *gmtime_r(const time_t *_RESTRICT_KYWD clock, \
struct tm *_RESTRICT_KYWD res)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function grantpt
include <stdlib.h>
declaration int grantpt(int fildes)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF EINVAL EACCES
exception $return == 0
end
function _grantpt
weak grantpt
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function gsignal
include <signal.h>
declaration int gsignal(int sig)
version SUNW_0.7
end
function hasmntopt
include <stdio.h>, <sys/mnttab.h>
declaration char *hasmntopt(struct mnttab *mnt, char *opt)
version SUNW_0.7
exception $return == 0
end
function hcreate
include <search.h>
declaration int hcreate (size_t mekments)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function _hcreate
weak hcreate
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function hdestroy
include <search.h>
declaration void hdestroy(void)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _hdestroy
weak hdestroy
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function hsearch
include <search.h>
declaration ENTRY *hsearch(ENTRY item, ACTION action)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function _hsearch
weak hsearch
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function iconv
include <iconv.h>
declaration size_t iconv(iconv_t cd, const char **_RESTRICT_KYWD inbuf, \
size_t *_RESTRICT_KYWD inbytesleft, \
char **_RESTRICT_KYWD outbuf, \
size_t *_RESTRICT_KYWD outbytesleft)
version SUNW_0.8
errno EILSEQ EINVAL EBADF E2BIG
exception ($return == -1)
end
function iconv_close
include <iconv.h>
declaration int iconv_close(iconv_t cd)
version SUNW_0.8
errno EBADF
exception ($return == -1)
end
function iconv_open
include <iconv.h>
declaration iconv_t iconv_open(const char *tocode, const char *fromcode)
version SUNW_0.8
errno EMFILE ENFILE ENOMEM EINVAL
exception ($return == (iconv_t)-1)
end
function imaxabs
include <inttypes.h>
declaration intmax_t imaxabs(intmax_t j)
version SUNW_1.22
end
function _imaxabs_c89
include <inttypes.h>
declaration int32_t _imaxabs_c89(int32_t j)
arch sparc i386
version SUNWprivate_1.1
end
function imaxdiv
include <inttypes.h>
declaration imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom)
version SUNW_1.22
end
function _imaxdiv_c89
include <inttypes.h>
declaration div_t _imaxdiv_c89(int32_t numer, int32_t denom)
arch sparc i386
version SUNWprivate_1.1
end
function index
include <strings.h>
declaration char *index(const char *s, int c)
version SUNW_0.9
exception $return == 0
end
function initgroups
include <grp.h>, <sys/types.h>
declaration int initgroups(const char *name, gid_t basegid)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EPERM
exception $return == -1
end
function _initgroups
weak initgroups
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function initstate
include <stdlib.h>
declaration char *initstate(unsigned int seed, char *state, size_t size)
version SUNW_0.9
exception $return == 0
end
function innetgr
declaration int innetgr(const char *netgroup, const char *machine, \
const char *user, const char *domain)
version SUNW_0.7
errno ERANGE
exception $return == 0
end
function insque
include <search.h>
#manpage void insque(struct qelem *elem, struct qelem *pred)
declaration void insque(void *elem, void *pred)
version SUNW_0.7
end
function _insque
weak insque
version SUNW_0.7
end
function isastream
include <stropts.h>
declaration int isastream(int fildes)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF
exception $return == -1
end
function _isastream
weak isastream
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function isatty
include <unistd.h>
declaration int isatty(int fildes)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF ENOTTY
exception $return == 0 && !unchanged(errno)
end
function _isatty
weak isatty
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function jrand48
include <stdlib.h>
declaration long jrand48(unsigned short xsubi[3])
version SUNW_0.7
end
function killpg
include <signal.h>
declaration int killpg(pid_t pgrp, int sig)
version SUNW_0.9
errno EINVAL EPERM ESRCH
exception $return == -1
end
function l64a
include <stdlib.h>
declaration char *l64a(long l)
version SUNW_0.7
end
function labs
include <stdlib.h>
declaration long labs(long lval)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function lckpwdf
include <shadow.h>
declaration int lckpwdf(void)
version SUNW_0.7
exception $return == -1
end
function lcong48
include <stdlib.h>
declaration void lcong48(unsigned short param[7])
version SUNW_0.7
end
function _ld_libc
version SUNWprivate_1.1
filter sparc=/usr/lib/ld.so.1 i386=/usr/lib/ld.so.1 \
sparcv9=/usr/lib/sparcv9/ld.so.1 amd64=/usr/lib/amd64/ld.so.1
end
function ldexp
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
filter libm.so.2
end
function ldiv
include <stdlib.h>
declaration ldiv_t ldiv(long int numer, long int denom)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function lfind
include <search.h>
declaration void *lfind(const void *key, const void *base, size_t *nelp, \
size_t width, \
int (*compar)(const void *, const void *))
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function _lfind
weak lfind
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function lfmt
include <pfmt.h>
declaration int lfmt(FILE *stream, long flags, char *format , ...)
version SUNW_0.8
exception $return == -1 || $return == -2
end
function llabs
include <stdlib.h>
declaration long long llabs(long long llval)
version SUNW_0.7
end
function lldiv
include <stdlib.h>
declaration lldiv_t lldiv(long long numer, long long denom)
version SUNW_0.7
end
function localtime
include <time.h>
declaration struct tm *localtime(const time_t *clock)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function localtime_r
include <time.h>
declaration struct tm *localtime_r(const time_t *_RESTRICT_KYWD clock, \
struct tm *_RESTRICT_KYWD res)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function longjmp
include <setjmp.h>
declaration void longjmp(jmp_buf env, int val)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function lrand48
include <stdlib.h>
declaration long lrand48(void)
version SUNW_0.7
end
function lsearch
include <search.h>
declaration void *lsearch(const void *key, void *base, size_t *nelp, \
size_t width, \
int (*compar) (const void *, const void *))
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _lsearch
weak lsearch
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function madvise
include <sys/types.h>, <sys/mman.h>
declaration int madvise(caddr_t addr, size_t len, int advice)
version SUNW_0.7
errno EINVAL EIO ENOMEM ESTALE
exception ($return == -1)
end
function makecontext
include <ucontext.h>
declaration void makecontext(ucontext_t *ucp, void (*func)(), \
int argc, ...)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EFAULT ENOMEM
end
function _makecontext
weak makecontext
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function __makecontext_v2
include <ucontext.h>
declaration void __makecontext_v2(ucontext_t *ucp, void (*func)(), \
int argc, ...)
arch sparc sparcv9
version sparc=SUNW_1.21.2 sparcv9=SUNW_1.21.2
end
function ___makecontext_v2
weak __makecontext_v2
arch sparc sparcv9
version sparc=SUNW_1.21.2 sparcv9=SUNW_1.21.2
end
function malloc
include <stdlib.h>, <alloca.h>
declaration void *malloc(size_t size)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ENOMEM EAGAIN
binding nodirect
exception $return == 0
end
function memalign
include <stdlib.h>, <alloca.h>
declaration void *memalign(size_t alignment, size_t size)
version SUNW_0.7
errno ENOMEM EAGAIN
exception $return == 0
binding nodirect
end
function memccpy
include <string.h>
declaration void *memccpy(void *_RESTRICT_KYWD s1, \
const void *_RESTRICT_KYWD s2, int c, size_t n)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function _memccpy
weak memccpy
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function memchr
include <string.h>
declaration void *memchr(const void *s, int c, size_t n)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function memcmp
include <string.h>
declaration int memcmp(const void *s1, const void *s2, size_t n)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
auxiliary sparc=/platform/$PLATFORM/lib/libc_psr.so.1 \
sparcv9=/platform/$PLATFORM/lib/sparcv9/libc_psr.so.1
end
function memcpy
include <string.h>
declaration void *memcpy(void *_RESTRICT_KYWD s1, \
const void *_RESTRICT_KYWD s2, size_t n)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
auxiliary sparc=/platform/$PLATFORM/lib/libc_psr.so.1 \
sparcv9=/platform/$PLATFORM/lib/sparcv9/libc_psr.so.1
end
function memmove
include <string.h>
declaration void *memmove(void *s1, const void *s2, size_t n)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
auxiliary sparc=/platform/$PLATFORM/lib/libc_psr.so.1 \
sparcv9=/platform/$PLATFORM/lib/sparcv9/libc_psr.so.1
end
function memset
include <string.h>
declaration void *memset(void *s, int c, size_t n)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
auxiliary sparc=/platform/$PLATFORM/lib/libc_psr.so.1 \
sparcv9=/platform/$PLATFORM/lib/sparcv9/libc_psr.so.1
end
function mkdtemp
include <stdlib.h>
declaration char *mkdtemp(char *template)
version SUNW_1.23
exception $return == 0
end
function _mkdtemp
weak mkdtemp
version SUNW_1.23
end
function mkfifo
include <sys/types.h>, <sys/stat.h>
declaration int mkfifo(const char *path, mode_t mode)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == -1
end
function _mkfifo
weak mkfifo
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function mkstemp
include <stdlib.h>
declaration int mkstemp(char *template)
version SUNW_0.7
exception $return == -1
end
function _mkstemp
weak mkstemp
version SUNW_0.7
end
function mkstemps
include <stdlib.h>
declaration int mkstemps(char *template, int suffixlen)
version SUNW_1.23
exception $return == -1
end
function _mkstemps
weak mkstemps
version SUNW_1.23
end
function mktemp
include <stdlib.h>
declaration char *mktemp(char *template)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function _mktemp
weak mktemp
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function mktime
include <time.h>
declaration time_t mktime(struct tm *timeptr)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == -1
end
function mlock
include <sys/types.h>
declaration int mlock(caddr_t addr, size_t len)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EAGAIN EINVAL ENOMEM EPERM
exception $return == -1
end
function _mlock
weak mlock
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function mlockall
include <sys/mman.h>
declaration int mlockall(int flags)
version SUNW_0.7
errno EAGAIN EINVAL EPERM
exception $return == -1
end
function modf
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
filter libm.so.2
end
function _modf
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
filter libm.so.2
end
function modff
version SUNW_0.7
filter libm.so.2
end
function monitor
include <mon.h>
declaration void monitor(int (*lowpc)(void), int (*highpc)(void), \
WORD *buffer, size_t bufsize, size_t nfunc)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _monitor
weak monitor
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function mrand48
include <stdlib.h>
declaration long mrand48(void)
version SUNW_0.7
end
function msync
include <sys/mman.h>
declaration int msync(caddr_t addr, size_t len, int flags)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBUSY EINVAL EIO ENOMEM EPERM
exception $return == -1
end
function _msync
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function munlock
include <sys/types.h>
declaration int munlock(caddr_t addr, size_t len)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EAGAIN EINVAL ENOMEM EPERM
exception $return == -1
end
function _munlock
weak munlock
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function munlockall
include <sys/mman.h>
declaration int munlockall(void)
version SUNW_0.7
errno EAGAIN EINVAL EPERM
exception $return == -1
end
function mutex_destroy
include <synch.h>
declaration int mutex_destroy(mutex_t *mp)
version SUNW_0.8
end
function mutex_init
include <synch.h>
declaration int mutex_init(mutex_t *mp, int type, void *arg)
version SUNW_0.8
end
function mutex_lock
include <synch.h>
declaration int mutex_lock(mutex_t *mp)
version SUNW_0.8
end
function mutex_trylock
include <synch.h>
declaration int mutex_trylock(mutex_t *mp)
version SUNW_0.8
end
function mutex_unlock
include <synch.h>
declaration int mutex_unlock(mutex_t *mp)
version SUNW_0.8
end
function nftw
include <ftw.h>
declaration int nftw(const char *path, \
int (*fn)(const char *, const struct stat *, \
int, struct FTW*), \
int depth, int flags)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == -1
end
function _nftw
weak nftw
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function nrand48
include <stdlib.h>
declaration long nrand48(unsigned short xsubi[3])
version SUNW_0.7
end
function opendir
include <sys/types.h>, <dirent.h>
declaration DIR *opendir(const char *dirname)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES ELOOP ENAMETOOLONG ENOENT ENOTDIR EMFILE
exception $return == 0
end
function _opendir
weak opendir
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function fdopendir
include <sys/types.h>, <dirent.h>
declaration DIR *fdopendir(int fd)
version SUNW_1.21
errno EACCES ELOOP ENAMETOOLONG ENOENT ENOTDIR EMFILE
exception $return == 0
end
function _fdopendir
weak fdopendir
version SUNW_1.21
end
function attropen
include <sys/types.h>, <sys/stat.h>, <fcntl.h>
declaration int attropen(const char *file, const char *attr, int oflag, ...)
version SUNW_1.21
errno EACCES EDQUOT EEXIST EINTR EFAULT EIO EISDIR ELOOP EMFILE \
EMULTIHOP ENFILE ENOENT ENOLINK ENOSR ENOSPC ENOTDIR \
ENXIO EOPNOTSUPP EOVERFLOW EROFS EAGAIN EINVAL \
ENAMETOOLONG ENOMEM ETXTBSY
exception $return == -1
end
function _attropen
weak attropen
version SUNW_1.21
end
function openlog
include <syslog.h>
declaration void openlog(const char *ident, int logopt, int facility)
version SUNW_0.7
end
function perror
include <stdio.h>, <errno.h>
declaration void perror(const char *s)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function pfmt
include <pfmt.h>
declaration int pfmt(FILE *stream, long flags, char *format, ...)
version SUNW_0.8
exception $return == -1
end
function plock
include <sys/lock.h>
declaration int plock(int op)
version SUNW_0.7
errno EAGAIN EINVAL EPERM
exception $return == -1
end
function posix_openpt
include <stdlib.h>
include <fcntl.h>
declaration int posix_openpt(int oflag)
version SUNW_1.22
errno EMFILE ENFILE EINVAL ENOSR
exception $return == -1
end
function _posix_openpt
weak posix_openpt
version SUNWprivate_1.1
end
function printstack
include <ucontext.h>
declaration int printstack(int fd)
version SUNW_1.21
exception $return == -1
end
function _printstack
weak printstack
version SUNWprivate_1.1
end
function psiginfo
include <siginfo.h>
declaration void psiginfo(siginfo_t *pinfo, char *s)
version SUNW_0.7
end
function psignal
include <siginfo.h>
declaration void psignal(int sig, const char *s)
version SUNW_0.7
end
function ptrace
include <unistd.h>, <sys/types.h>
declaration int ptrace(int request, pid_t pid, int addr, int data)
arch sparc i386
version SYSVABI_1.3
errno EIO EPERM ESRCH
exception $return == -1
end
function _ptrace
weak ptrace
arch sparc i386
version SYSVABI_1.3
end
function ptsname
include <stdlib.h>
declaration char *ptsname(int fildes)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function _ptsname
weak ptsname
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function putenv
include <stdlib.h>
declaration int putenv(char *string)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ENOMEM
exception $return != 0
end
function _putenv
weak putenv
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function putmsg
include <stropts.h>
declaration int putmsg(int fildes, const struct strbuf *ctlptr, \
const struct strbuf *dataptr, int flags)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EAGAIN EBADF EFAULT EINTR EINVAL ENOSR ENOSTR ENXIO EPIPE ERANGE
exception $return == -1
end
function _putmsg
weak putmsg
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function putpmsg
include <stropts.h>
declaration int putpmsg(int fildes, const struct strbuf *ctlptr, \
const struct strbuf *dataptr, int band, int flags)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EAGAIN EBADF EFAULT EINTR EINVAL ENOSR ENOSTR ENXIO EPIPE ERANGE
exception $return == -1
end
function _putpmsg
weak putpmsg
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function putpwent
include <pwd.h>
declaration int putpwent(const struct passwd *p, FILE *f)
version SUNW_0.7
exception $return != 0
end
function putspent
include <shadow.h>
declaration int putspent(const struct spwd *p, FILE *fp)
version SUNW_0.7
exception $return != 0
end
function pututline
include <utmp.h>
declaration struct utmp *pututline(const struct utmp *utmp)
version SUNW_0.7
exception $return == 0
end
function pututxline
include <utmpx.h>
declaration struct utmpx *pututxline(const struct utmpx *utmpx)
version SUNW_0.7
exception $return == 0
end
function qeconvert
include <floatingpoint.h>
declaration char *qeconvert(quadruple *value, int ndigit, int *decpt, \
int *sign, char *buf)
version SUNW_0.7
exception ($return == 0)
end
function qfconvert
include <floatingpoint.h>
declaration char *qfconvert(quadruple *value, int ndigit, int *decpt, \
int *sign, char *buf)
version SUNW_0.7
exception ($return == 0)
end
function qgconvert
include <floatingpoint.h>
declaration char *qgconvert(quadruple *value, int ndigit, int trailing, char *buf)
version SUNW_0.7
exception ($return == 0)
end
function qsort
include <stdlib.h>
declaration void qsort(void *base, size_t nel, size_t width, \
int (*compar)(const void *, const void *))
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function raise
include <signal.h>
declaration int raise(int sig)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == -1
end
function rand
include <stdlib.h>
declaration int rand(void)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function rand_r
include <stdlib.h>
declaration int rand_r(unsigned int *seed)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function random
include <stdlib.h>
declaration long random(void)
version SUNW_0.9
end
function rctl_walk
include <rctl.h>
declaration int rctl_walk(int (*callback)(const char *rctlname, \
void *walk_data), void *init_data)
version SUNW_1.21
end
function rctlblk_get_global_action
include <rctl.h>
declaration uint_t rctlblk_get_global_action(rctlblk_t *);
version SUNW_1.21
end
function rctlblk_get_local_action
include <rctl.h>
declaration uint_t rctlblk_get_local_action(rctlblk_t *, int *);
version SUNW_1.21
end
function rctlblk_get_global_flags
include <rctl.h>
declaration uint_t rctlblk_get_global_flags(rctlblk_t *);
version SUNW_1.21
end
function rctlblk_get_local_flags
include <rctl.h>
declaration uint_t rctlblk_get_local_flags(rctlblk_t *);
version SUNW_1.21
end
function rctlblk_get_firing_time
include <rctl.h>
declaration hrtime_t rctlblk_get_firing_time(rctlblk_t *);
version SUNW_1.21
end
function rctlblk_get_privilege
include <rctl.h>
declaration rctl_priv_t rctlblk_get_privilege(rctlblk_t *);
version SUNW_1.21
end
function rctlblk_get_recipient_pid
include <rctl.h>
declaration id_t rctlblk_get_recipient_pid(rctlblk_t *);
version SUNW_1.21
end
function rctlblk_get_value
include <rctl.h>
declaration rctl_qty_t rctlblk_get_value(rctlblk_t *);
version SUNW_1.21
end
function rctlblk_get_enforced_value
include <rctl.h>
declaration rctl_qty_t rctlblk_get_enforced_value(rctlblk_t *);
version SUNW_1.21
end
function rctlblk_set_local_action
include <rctl.h>
declaration void rctlblk_set_local_action(rctlblk_t *, uint_t, int);
version SUNW_1.21
end
function rctlblk_set_local_flags
include <rctl.h>
declaration void rctlblk_set_local_flags(rctlblk_t *, uint_t);
version SUNW_1.21
end
function rctlblk_set_privilege
include <rctl.h>
declaration void rctlblk_set_privilege(rctlblk_t *, rctl_priv_t);
version SUNW_1.21
end
function rctlblk_set_recipient_pid
include <rctl.h>
declaration void rctlblk_set_recipient_pid(rctlblk_t *, id_t);
version SUNW_1.22
end
function rctlblk_set_value
include <rctl.h>
declaration void rctlblk_set_value(rctlblk_t *, rctl_qty_t);
version SUNW_1.21
end
function rctlblk_size
include <rctl.h>
declaration size_t rctlblk_size(void);
version SUNW_1.21
end
function readdir
include <sys/types.h>, <dirent.h>
declaration struct dirent *readdir(DIR *dirp)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EOVERFLOW EBADF ENOENT
exception $return == 0
end
function _readdir
weak readdir
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
# NOTE: The declarations of the various versions of readdir_r()
# in <dirent.h> are hopelessly convoluted, so we can't declare
# its arguments and return value here.
function readdir_r
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _readdir_r
weak readdir_r
version SUNWprivate_1.1
end
function realloc
include <stdlib.h>, <alloca.h>
declaration void *realloc(void *ptr, size_t size)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ENOMEM EAGAIN
exception $return == 0
binding nodirect
end
function realpath
include <stdlib.h>
declaration char *realpath(const char *_RESTRICT_KYWD file_name, \
char *_RESTRICT_KYWD resolved_name)
version SUNW_0.7
errno EACCES EINVAL EIO ELOOP ENAMETOOLONG ENOENT ENOTDIR ENOMEM
exception $return == 0
end
function reboot
include <sys/reboot.h>
declaration int reboot(int howto, char *bootargs)
version SUNW_0.9
errno EPERM
exception $return == -1
end
function regcmp
# NOTE: varargs breaks adl
include <libgen.h>
declaration char *regcmp(const char *string1, ...)
version SUNW_1.1
exception $return == 0
end
function remove
include <stdio.h>
declaration int remove(const char *path)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == -1
end
function remque
include <search.h>
#manpage void remque(struct qelem *elem)
declaration void remque(void *elem)
version SUNW_0.7
end
function _remque
weak remque
version SUNW_0.7
end
function rename
include <stdio.h>
declaration int rename(const char *old, const char *new)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EBUSY EDQUOT EEXIST EINVAL EISDIR ELOOP ENAMETOOLONG \
EMLINK ENOENT ENOSPC ENOTDIR EROFS EXDEV EIO
exception $return == -1
end
function resetmnttab
include <stdio.h>, <sys/mnttab.h>
declaration void resetmnttab(FILE *fp)
version SUNW_1.20
end
function rewind
include <stdio.h>
declaration void rewind(FILE *stream)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function rewinddir
include <sys/types.h>, <dirent.h>
declaration void rewinddir(DIR *dirp)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _rewinddir
weak rewinddir
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function rindex
include <strings.h>
declaration char *rindex(const char *s, int c)
version SUNW_0.9
exception $return == 0
end
function rw_rdlock
include <synch.h>
declaration int rw_rdlock(rwlock_t *rwlp)
version SUNW_0.8
errno EINVAL EFAULT EBUSY
end
function rw_tryrdlock
include <synch.h>
declaration int rw_tryrdlock(rwlock_t *rwlp)
version SUNW_0.8
errno EINVAL EFAULT EBUSY
end
function rw_trywrlock
include <synch.h>
declaration int rw_trywrlock(rwlock_t *rwlp)
version SUNW_0.8
errno EINVAL EFAULT EBUSY
end
function rw_unlock
include <synch.h>
declaration int rw_unlock(rwlock_t *rwlp)
version SUNW_0.8
errno EINVAL EFAULT EBUSY
end
function rw_wrlock
include <synch.h>
declaration int rw_wrlock(rwlock_t *rwlp)
version SUNW_0.8
errno EINVAL EFAULT EBUSY
end
function rwlock_destroy
include <synch.h>
declaration int rwlock_destroy(rwlock_t *rwlp)
version SUNW_1.1
errno EINVAL EFAULT EBUSY
end
function rwlock_init
include <synch.h>
declaration int rwlock_init(rwlock_t *rwlp, int type, void * arg)
version SUNW_0.8
errno EINVAL EFAULT EBUSY
end
function scandir
include <sys/types.h>, <dirent.h>
declaration int scandir(const char *dirname, struct dirent *(*namelist[]), \
int (*select)(const struct dirent *), \
int (*dcomp)(const struct dirent **, \
const struct dirent **));
version SUNW_1.22
end
function _scandir
weak scandir
version SUNW_1.22
end
function seconvert
include <floatingpoint.h>
declaration char *seconvert(single *value, int ndigit, int *decpt, \
int *sign, char *buf)
version SUNW_0.7
exception ($return == 0)
end
function seed48
include <stdlib.h>
declaration unsigned short *seed48(unsigned short seed16v[3])
version SUNW_0.7
end
function seekdir
include <sys/types.h>, <dirent.h>
declaration void seekdir(DIR *dirp, long int loc)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _seekdir
weak seekdir
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function select
include <sys/select.h>
declaration int select(int nfds, \
fd_set *_RESTRICT_KYWD readfds, \
fd_set *_RESTRICT_KYWD writefds, \
fd_set *_RESTRICT_KYWD errorfds, \
struct timeval *_RESTRICT_KYWD timeout)
version SUNW_0.7
errno EBADF EINTR EINVAL
exception $return == -1
end
function pselect
include <sys/select.h>
declaration int pselect(int nfds, \
fd_set *_RESTRICT_KYWD readfds, \
fd_set *_RESTRICT_KYWD writefds, \
fd_set *_RESTRICT_KYWD errorfds, \
const struct timespec *_RESTRICT_KYWD timeout, \
const sigset_t *_RESTRICT_KYWD sigmask)
version SUNW_1.22
errno EBADF EINTR EINVAL
exception $return == -1
end
function sema_destroy
include <synch.h>
declaration int sema_destroy(sema_t *sp)
version SUNW_1.1
errno EINVAL EFAULT EINTR EBUSY
end
function sema_init
include <synch.h>
declaration int sema_init(sema_t *sp, unsigned int count, int type, void * arg)
version SUNW_0.8
errno EINVAL EFAULT EINTR EBUSY
end
function sema_post
include <synch.h>
declaration int sema_post(sema_t *sp)
version SUNW_0.8
errno EINVAL EFAULT EINTR EBUSY
end
function sema_trywait
include <synch.h>
declaration int sema_trywait(sema_t *sp)
version SUNW_0.8
errno EINVAL EFAULT EINTR EBUSY
end
function sema_wait
include <synch.h>
declaration int sema_wait(sema_t *sp)
version SUNW_0.8
errno EINVAL EFAULT EINTR EBUSY
end
function sema_timedwait
include <synch.h>
declaration int sema_timedwait(sema_t *sp, const timespec_t *abstime)
version SUNW_1.22
errno EINVAL EFAULT EINTR EBUSY ETIME
end
function sema_reltimedwait
include <synch.h>
declaration int sema_reltimedwait(sema_t *sp, const timespec_t *reltime)
version SUNW_1.22
errno EINVAL EFAULT EINTR EBUSY ETIME
end
function setcat
include <pfmt.h>
declaration const char *setcat(const char *catalog)
version SUNW_0.8
exception $return == 0
end
function setenv
include <stdlib.h>
declaration int setenv(const char *envname, const char *envval, \
int overwrite)
version SUNW_1.22
errno EINVAL ENOMEM
exception $return != 0
end
function _setenv # extends libc/spec/gen.spec setenv
weak setenv
#Declaration /* Unknown */
version SUNWprivate_1.1
end
function setgrent
include <grp.h>
declaration void setgrent(void)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function sethostname
declaration int sethostname(char *name, int namelen)
version SUNW_0.9
errno EFAULT EPERM
exception $return == -1
end
function setjmp
include <setjmp.h>
declaration int setjmp(jmp_buf env)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function setkey
include <stdlib.h>
declaration void setkey(const char *key)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ENOSYS
end
function _setkey
weak setkey
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function setlabel
include <pfmt.h>
declaration int setlabel(const char *label)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return != 0
end
function setlogmask
include <syslog.h>
declaration int setlogmask(int maskpri)
version SUNW_0.7
end
function setnetgrent
declaration void setnetgrent(const char *netgroup)
version SUNW_0.7
errno ERANGE
end
function setpgid
include <sys/types.h>, <unistd.h>
declaration int setpgid(pid_t pid, pid_t pgid)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EINVAL EPERM ESRCH
exception $return == -1
end
function _setpgid
weak setpgid
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function setpriority
include <sys/resource.h>
declaration int setpriority(int which, id_t who, int priority)
version SUNW_0.9
errno ESRCH EINVAL EPERM EACCES
exception $return == -1
end
function setpwent
include <pwd.h>
declaration void setpwent(void)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function setregid
include <unistd.h>, <limits.h>
declaration int setregid(gid_t rgid, gid_t egid)
version SUNW_0.9
errno EINVAL EPERM
exception $return == -1
end
function setreuid
include <unistd.h>
declaration int setreuid(uid_t ruid, uid_t euid)
version SUNW_0.9
errno EINVAL EPERM
exception $return == -1
end
function setspent
include <shadow.h>
declaration void setspent(void)
version SUNW_0.7
end
function setstate
include <stdlib.h>
declaration char *setstate(const char *state)
version SUNW_0.9
exception $return == 0
end
function settimeofday
include <sys/time.h>
declaration int settimeofday(struct timeval *tp, void *tzp)
version SUNW_0.7
errno EINVAL EPERM
exception $return == -1
end
function setusershell
declaration void setusershell();
version SUNW_1.1
end
function setutent
include <utmp.h>
declaration void setutent(void)
version SUNW_0.7
end
function setutxent
include <utmpx.h>
declaration void setutxent(void)
version SUNW_0.7
end
function sfconvert
include <floatingpoint.h>
declaration char *sfconvert(single *value, int ndigit, int *decpt, \
int *sign, char *buf)
version SUNW_0.7
exception ($return == 0)
end
function sgconvert
include <floatingpoint.h>
declaration char *sgconvert(single *value, int ndigit, int trailing, \
char *buf)
version SUNW_0.7
exception ($return == 0)
end
function sig2str
include <signal.h>
declaration int sig2str(int signum, char *str)
version SUNW_0.7
exception $return == -1
end
function sigaddset
include <signal.h>
declaration int sigaddset(sigset_t *set, int signo)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINVAL EFAULT
exception $return == -1
end
function _sigaddset
weak sigaddset
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function sigdelset
include <signal.h>
declaration int sigdelset(sigset_t *set, int signo)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINVAL EFAULT
exception $return == -1
end
function _sigdelset
weak sigdelset
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function sigemptyset
include <signal.h>
declaration int sigemptyset(sigset_t *set)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINVAL EFAULT
exception $return == -1
end
function _sigemptyset
weak sigemptyset
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function sigfillset
include <signal.h>
declaration int sigfillset(sigset_t *set)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINVAL EFAULT
exception $return == -1
end
function _sigfillset
weak sigfillset
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function sighold
include <signal.h>
declaration int sighold(int sig)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINTR EINVAL
exception $return == -1
end
function _sighold
weak sighold
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function sigignore
include <signal.h>
declaration int sigignore(int sig)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINTR EINVAL
exception $return == -1
end
function _sigignore
weak sigignore
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function sigismember
include <signal.h>
declaration int sigismember(const sigset_t *set, int signo)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINVAL EFAULT
exception $return == 0
end
function _sigismember
weak sigismember
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function siglongjmp
include <setjmp.h>
declaration void siglongjmp(sigjmp_buf env, int val)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function signal
include <signal.h>
declaration void (*signal (int sig, void (*disp)(int)))(int)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINTR EINVAL
exception $return == SIG_ERR
end
function sigrelse
include <signal.h>
declaration int sigrelse(int sig)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINTR EINVAL
exception $return == -1
end
function _sigrelse
weak sigrelse
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function sigsend
include <signal.h>
declaration int sigsend(idtype_t idtype, id_t id, int sig)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINVAL EPERM ESRCH EFAULT
exception $return == -1
end
function _sigsend
weak sigsend
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function sigsendset
include <signal.h>
declaration int sigsendset(const procset_t *psp, int sig)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINVAL EPERM ESRCH EFAULT
exception $return == -1
end
function _sigsendset
weak sigsendset
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function sigset
include <signal.h>
declaration void (*sigset (int sig, void (*disp)(int)))(int)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINTR EINVAL
exception $return == SIG_ERR || $return == SIG_HOLD
end
function _sigset
weak sigset
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function sigsetjmp
include <setjmp.h>
declaration int sigsetjmp(sigjmp_buf env, int savemask)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _sigsetjmp
weak sigsetjmp
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function sigstack
include <signal.h>
declaration int sigstack(struct sigstack *ss, struct sigstack *oss)
version SUNW_1.1
errno EPERM
exception $return == -1
end
function _sigstack
weak sigstack
version SUNWprivate_1.1
end
function sleep
include <unistd.h>
declaration unsigned sleep(unsigned seconds)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function srand
include <stdlib.h>
declaration void srand(unsigned int seed)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function srand48
include <stdlib.h>
declaration void srand48(long seedval)
version SUNW_0.7
end
function srandom
include <stdlib.h>
declaration void srandom(unsigned int seed)
version SUNW_0.9
end
function ssignal
include <signal.h>
declaration int (*ssignal(int sig, int (*action)(int)))(int)
version SUNW_0.7
exception $return == (int (*)(int)) SIG_DFL
end
function str2sig
include <signal.h>
declaration int str2sig(const char *str, int *signum)
version SUNW_0.7
exception $return == -1
end
function _stack_grow
declaration void *_stack_grow(void *)
version SUNW_1.21.2
end
function stack_getbounds
declaration int stack_getbounds(stack_t *sp)
version SUNW_1.21.2
end
function _stack_getbounds
weak stack_getbounds
version SUNW_1.21.2
end
function stack_setbounds
declaration int stack_setbounds(const stack_t *sp)
version SUNW_1.21.2
end
function _stack_setbounds
weak stack_setbounds
version SUNW_1.21.2
end
function stack_inbounds
declaration int stack_inbounds(void *addr)
version SUNW_1.21.2
end
function _stack_inbounds
weak stack_inbounds
version SUNW_1.21.2
end
function stack_violation
declaration int stack_violation(int sig, const siginfo_t *sip, \
const ucontext_t *ucp)
version SUNW_1.21.2
end
function _stack_violation
weak stack_violation
version SUNW_1.21.2
end
function strcasecmp
include <strings.h>
declaration int strcasecmp(const char *s1, const char *s2)
version SUNW_0.7
end
function strcat
include <string.h>
declaration char *strcat(char *_RESTRICT_KYWD dst, \
const char *_RESTRICT_KYWD src)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function strchr
include <string.h>
declaration char *strchr(const char *s, int c)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function strcmp
include <string.h>
declaration int strcmp(const char *s1, const char *s2)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function strcpy
include <string.h>
declaration char *strcpy(char *_RESTRICT_KYWD dst, \
const char *_RESTRICT_KYWD src)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function strcspn
include <string.h>
declaration size_t strcspn(const char *s1, const char *s2)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function strdup
include <string.h>
declaration char *strdup(const char *s1)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ENOMEM
exception $return == 0
end
function _strdup
weak strdup
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function strerror
include <string.h>
declaration char *strerror(int errnum)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
errno EINVAL
end
function strerror_r
include <string.h>
declaration int strerror_r(int errnum, char *strerrbuf, size_t buflen)
version SUNW_1.22
exception $return != 0
errno ERANGE EINVAL
end
function _strerror_r
weak strerror_r
version SUNWprivate_1.1
end
function strftime
include <time.h>
declaration size_t strftime(char *_RESTRICT_KYWD s, size_t maxsize, \
const char *_RESTRICT_KYWD format, \
const struct tm *_RESTRICT_KYWD timeptr)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function strlen
include <string.h>
declaration size_t strlen(const char *s)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function strncasecmp
include <strings.h>
declaration int strncasecmp(const char *s1, const char *s2, size_t n)
version SUNW_0.7
end
function strncat
include <string.h>
declaration char *strncat(char *_RESTRICT_KYWD dst, \
const char *_RESTRICT_KYWD src, size_t n)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function strlcat
include <string.h>
declaration size_t strlcat(char *dst, const char *src, size_t dstsize)
version SUNW_1.19
end
function strncmp
include <string.h>
declaration int strncmp(const char *s1, const char *s2, size_t n)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function strncpy
include <string.h>
declaration char *strncpy(char *_RESTRICT_KYWD dst, \
const char *_RESTRICT_KYWD src, size_t n)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function strlcpy
include <string.h>
declaration size_t strlcpy(char *dst, const char *src, size_t dstsize)
version SUNW_1.19
end
function strpbrk
include <string.h>
declaration char *strpbrk(const char *s1, const char *s2)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function strrchr
include <string.h>
declaration char *strrchr(const char *s, int c)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function strsignal
include <string.h>
declaration char *strsignal(int sig)
version SUNW_0.7
exception $return == 0
end
function strspn
include <string.h>
declaration size_t strspn(const char *s1, const char *s2)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function strstr
include <string.h>
declaration char *strstr(const char *s1, const char *s2)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function strtod
include <stdlib.h>
declaration double strtod(const char *_RESTRICT_KYWD str, \
char **_RESTRICT_KYWD endptr)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ERANGE EINVAL
exception errno != 0
end
function strtof
include <stdlib.h>
declaration float strtof(const char *_RESTRICT_KYWD str, \
char **_RESTRICT_KYWD endptr)
version SUNW_1.22
errno ERANGE EINVAL
exception errno != 0
end
function strtoimax
include <inttypes.h>
declaration intmax_t strtoimax(const char *_RESTRICT_KYWD nptr, \
char **_RESTRICT_KYWD endptr, int base)
version SUNW_1.22
end
function _strtoimax_c89
include <inttypes.h>
declaration int32_t _strtoimax_c89(const char *nptr, \
char **endptr, int base)
arch sparc i386
version SUNWprivate_1.1
end
function strtok
include <string.h>
declaration char *strtok(char *_RESTRICT_KYWD s1, \
const char *_RESTRICT_KYWD s2)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function strtok_r
include <string.h>
declaration char *strtok_r(char *_RESTRICT_KYWD s1, \
const char *_RESTRICT_KYWD s2, \
char **_RESTRICT_KYWD lasts)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function strtol
include <stdlib.h>
declaration long strtol(const char *_RESTRICT_KYWD str, \
char **_RESTRICT_KYWD endptr, int base)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ERANGE EINVAL
exception errno != 0
end
function strtold
include <stdlib.h>
declaration long double strtold(const char *_RESTRICT_KYWD str, \
char **_RESTRICT_KYWD endptr)
version SUNW_1.22
errno ERANGE EINVAL
exception errno != 0
end
function strtoll
include <stdlib.h>
declaration long long strtoll(const char *_RESTRICT_KYWD str, \
char **_RESTRICT_KYWD endptr, int base)
version SUNW_0.7
errno ERANGE EINVAL
exception errno != 0
end
function strtoul
include <stdlib.h>
declaration unsigned long strtoul(const char *_RESTRICT_KYWD str, \
char **_RESTRICT_KYWD endptr, int base)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINVAL ERANGE
exception errno != 0
end
function strtoull
include <stdlib.h>
declaration unsigned long long strtoull(const char *_RESTRICT_KYWD str, \
char **_RESTRICT_KYWD endptr, \
int base)
version SUNW_0.7
errno EINVAL ERANGE
exception errno != 0
end
function strtoumax
include <inttypes.h>
declaration uintmax_t strtoumax(const char *_RESTRICT_KYWD nptr, \
char **_RESTRICT_KYWD endptr, int base)
version SUNW_1.22
end
function _strtoumax_c89
include <inttypes.h>
declaration uint32_t _strtoumax_c89(const char *nptr, \
char **endptr, int base)
arch sparc i386
version SUNWprivate_1.1
end
function swab
include <unistd.h>
declaration void swab(const char *_RESTRICT_KYWD src, \
char *_RESTRICT_KYWD dest, ssize_t nbytes)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _swab
weak swab
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function swapcontext
include <ucontext.h>
declaration int swapcontext(ucontext_t *_RESTRICT_KYWD oucp, \
const ucontext_t *_RESTRICT_KYWD ucp)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EFAULT ENOMEM
exception $return == -1
end
function _swapcontext
weak swapcontext
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function swapctl
include <sys/stat.h>, <sys/swap.h>
declaration int swapctl(int cmd, void *arg)
version SUNW_0.7
errno EEXIST EFAULT EINVAL EISDIR ELOOP ENAMETOOLONG ENOENT ENOMEM \
ENOSYS ENOTDIR EPERM EROFS
exception $return == -1
end
function sync_instruction_memory
declaration void sync_instruction_memory(caddr_t addr, int len)
version SUNW_1.1
end
function sysconf
include <unistd.h>
declaration long sysconf(int name)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EINVAL
exception $return == -1 && errno != 0
end
function _sysconf
weak sysconf
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function syslog
include <syslog.h>
declaration void syslog(int priority, const char *message, ...)
version SUNW_0.7
end
function _syslog
weak syslog
version SUNW_0.7
end
function tcdrain
include <termios.h>
declaration int tcdrain(int fildes)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF EINTR ENOTTY EIO
exception ($return == -1)
end
function _tcdrain
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function tcflow
include <termios.h>
declaration int tcflow(int fildes, int action)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF EINVAL ENOTTY EIO
exception ($return == -1)
end
function _tcflow
weak tcflow
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function tcflush
include <termios.h>
declaration int tcflush(int fildes, int queue_selector)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF EINVAL ENOTTY EIO
exception ($return == -1)
end
function _tcflush
weak tcflush
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function tcgetattr
include <termios.h>
declaration int tcgetattr(int fildes, struct termios *termios_p)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF ENOTTY
exception ($return == -1)
end
function _tcgetattr
weak tcgetattr
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function tcgetpgrp
include <sys/types.h>, <unistd.h>
declaration pid_t tcgetpgrp(int fildes)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF ENOTTY
exception ($return == -1)
end
function _tcgetpgrp
weak tcgetpgrp
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function tcgetsid
include <termios.h>
declaration pid_t tcgetsid(int fildes)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EACCES EBADF ENOTTY
exception ($return == -1)
end
function _tcgetsid
weak tcgetsid
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function tcsendbreak
include <termios.h>
declaration int tcsendbreak(int fildes, int duration)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF ENOTTY EIO
exception ($return == -1)
end
function _tcsendbreak
weak tcsendbreak
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function tcsetattr
include <termios.h>
declaration int tcsetattr(int fildes, int optional_actions, \
const struct termios *termios_p)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF EINTR EINVAL ENOTTY EIO
exception ($return == -1)
end
function _tcsetattr
weak tcsetattr
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function tcsetpgrp
include <sys/types.h>, <unistd.h>
declaration int tcsetpgrp(int fildes, pid_t pgid_id)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF EINVAL ENOTTY EPERM
exception ($return == -1)
end
function _tcsetpgrp
weak tcsetpgrp
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function tdelete
include <search.h>
declaration void *tdelete(const void *_RESTRICT_KYWD key, \
void **_RESTRICT_KYWD rootp, \
int (*compar)(const void *, const void *))
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function _tdelete
weak tdelete
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function telldir
include <dirent.h>
declaration long int telldir(DIR *dirp)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _telldir
weak telldir
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function tfind
include <search.h>
declaration void *tfind(const void *key, void *const *rootp, \
int (*compar)(const void *, const void *))
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function _tfind
weak tfind
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function truncate
include <unistd.h>
declaration int truncate(const char *path, off_t length)
version SUNW_0.7
errno EINTR EINVAL EFBIG EIO EACCES EFAULT EISDIR ELOOP EMFILE \
EMULTIHOP ENAMETOOLONG ENOENT ENFILE ENOTDIR ENOLINK \
EROFS EAGAIN EBADF
exception $return == -1
end
function _truncate
weak truncate
version SUNWprivate_1.1
end
function tsearch
include <search.h>
declaration void *tsearch(const void *key, void **rootp, \
int (*compar)(const void *, const void *))
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
exception $return == 0
end
function _tsearch
weak tsearch
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function ttyname
include <unistd.h>
declaration char *ttyname(int fildes)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ERANGE EBADF ENOTTY
exception $return == 0
end
function ttyname_r
include <unistd.h>, <limits.h>
declaration char *ttyname_r(int fildes, char *name, int namelen)
version i386=SUNW_0.7 sparc=SISCD_2.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ERANGE EBADF ENOTTY
exception $return == 0
end
function ttyslot
include <stdlib.h>
declaration int ttyslot(void)
version SUNW_0.7
exception $return == -1
end
function twalk
include <search.h>
declaration void twalk(const void *root, \
void (*action)(const void *, VISIT, int))
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _twalk
weak twalk
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function tzset
include <time.h>
declaration void tzset(void)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function _tzset
weak tzset
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function ulckpwdf
include <shadow.h>
declaration int ulckpwdf(void)
version SUNW_0.7
exception $return == -1
end
function unlockpt
include <stdlib.h>
declaration int unlockpt(int fildes)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno EBADF EINVAL
exception $return == -1
end
function _unlockpt
weak unlockpt
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function unsetenv
include <stdlib.h>
declaration int unsetenv(const char *name)
version SUNW_1.22
errno ENOMEM
exception $return != 0
end
function _unsetenv # extends libc/spec/gen.spec unsetenv
weak unsetenv
#Declaration /* Unknown */
version SUNWprivate_1.1
end
function updwtmp
include <utmpx.h>
declaration void updwtmp(const char *wfile, struct utmp *utmp)
version SUNW_0.7
end
function updwtmpx
include <utmpx.h>
declaration void updwtmpx(const char *wfilex, struct utmpx *utmpx)
version SUNW_0.7
end
function usleep
include <unistd.h>
declaration int usleep(useconds_t useconds)
version SUNW_0.9
errno EINVAL
exception $return == -1
end
function _usleep
weak usleep
version SUNWprivate_1.1
end
function utmpname
include <utmp.h>
declaration int utmpname(const char *file)
version SUNW_0.7
exception $return == 0
end
function utmpxname
include <utmpx.h>
declaration int utmpxname(const char *file)
version SUNW_0.7
exception $return == 1
end
function valloc
include <stdlib.h>, <alloca.h>
declaration void *valloc(size_t size)
version SUNW_0.7
errno ENOMEM EAGAIN
exception $return == 0
binding nodirect
end
function vlfmt
include <pfmt.h>, <stdarg.h>
declaration int vlfmt(FILE *stream, long flags, const char *format, \
va_list ap)
version SUNW_0.8
exception $return == -1 || $return == -2
end
function vpfmt
include <pfmt.h>, <stdarg.h>
declaration int vpfmt(FILE *stream, long flags, const char *format, \
va_list ap)
version SUNW_0.8
exception $return == -1
end
function vsyslog
include <syslog.h>
declaration void vsyslog(int priority, const char *message, va_list ap)
version SUNW_0.7
end
function wait3
include <sys/wait.h>, <sys/time.h>, <sys/resource.h>
declaration pid_t wait3(int *statusp, int options, struct rusage *rusage)
version SUNW_0.9
errno ECHILD EFAULT EINTR EINVAL
exception $return == -1
end
function _wait3
weak wait3
version SUNWprivate_1.1
end
function wait4
include <sys/wait.h>, <sys/time.h>, <sys/resource.h>
declaration pid_t wait4(pid_t pid, int *statusp, int options, \
struct rusage *rusage)
version SUNW_0.9
errno ECHILD EFAULT EINTR EINVAL
exception $return == -1
end
function waitpid
include <sys/types.h>, <sys/wait.h>
declaration pid_t waitpid(pid_t pid, int *stat_loc, int options)
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
errno ECHILD EINTR EINVAL
exception $return == -1
end
function _waitpid
version sparc=SYSVABI_1.3 i386=SYSVABI_1.3 sparcv9=SUNW_0.7 \
amd64=SUNW_0.7
end
function walkcontext
include <ucontext.h> <sys/types.h>
declaration int walkcontext(const ucontext_t *uptr, \
int (*func)(uintptr_t pc, int signo, \
void * usrarg), void * usrarg);
version sparc=SUNW_1.21 i386=SUNW_1.21 sparcv9=SUNW_1.22 \
amd64=SUNW_1.22
exception $return == -1
end
function _walkcontext
weak walkcontext
version SUNWprivate_1.1
end
function select_large_fdset
include <sys/types.h>, <sys/time.h>, <sys/poll.h>, <sys/select.h>
declaration int select_large_fdset(int nfds, \
fd_set *_RESTRICT_KYWD readfds, \
fd_set *_RESTRICT_KYWD writefds, \
fd_set *_RESTRICT_KYWD errorfds, \
struct timeval *_RESTRICT_KYWD timeout)
arch sparc i386
version SUNW_1.18
errno EBADF EINTR EINVAL
exception $return == -1
end
function pselect_large_fdset
include <sys/types.h>, <sys/time.h>, <sys/poll.h>, <sys/select.h>
declaration int pselect_large_fdset(int nfds, \
fd_set *_RESTRICT_KYWD readfds, \
fd_set *_RESTRICT_KYWD writefds, \
fd_set *_RESTRICT_KYWD errorfds, \
const struct timespec *_RESTRICT_KYWD timeout, \
const sigset_t *_RESTRICT_KYWD sigmask)
arch sparc i386
version SUNW_1.22
errno EBADF EINTR EINVAL
exception $return == -1
end
function atoll
include <stdlib.h>
declaration long long atoll(const char *str)
version SUNW_0.7
end
function _atoll
weak atoll
version SUNWprivate_1.1
end
function lltostr
include <stdlib.h>
declaration char *lltostr(long long value, char *endptr)
version SUNW_0.7
end
function _lltostr
weak lltostr
version SUNWprivate_1.1
end
function ulltostr
include <stdlib.h>
declaration char *ulltostr(unsigned long long value, char *endptr)
version SUNW_0.7
end
function isaexec
include <unistd.h>
declaration int isaexec(const char *path, char *const argv[], \
char *const envp[])
version SUNW_1.18
end
function priv_ineffect
include <priv.h>
declaration boolean_t priv_ineffect(const char *)
version SUNW_1.22
exception $return == B_FALSE
errno ENOMEM EINVAL
end
function _priv_ineffect
weak priv_ineffect
version SUNW_1.22
end
function priv_set
include <priv.h>
declaration int priv_set(priv_op_t, priv_ptype_t, ...)
version SUNW_1.22
exception $return != 0
errno ENOMEM EPERM EINVAL
end
function _priv_set
weak priv_set
version SUNW_1.22
end
function priv_str_to_set
include <priv.h>
declaration priv_set_t *priv_str_to_set(const char *, const char *, const char **)
version SUNW_1.22
exception $return == 0
errno ENOMEM EINVAL
end
function _priv_str_to_set
weak priv_str_to_set
version SUNW_1.22
end
function __priv_set_to_str
include <priv.h>
declaration char *__priv_set_to_str(void *, const priv_set_t *, char, int)
version SUNW_1.22
exception $return == 0
errno ENOSYS ENOMEM
end
function priv_set_to_str
include <priv.h>
declaration char *priv_set_to_str(const priv_set_t *, char, int)
version SUNW_1.22
exception $return == 0
errno ENOSYS ENOMEM
end
function _priv_set_to_str
weak priv_set_to_str
version SUNW_1.22
end
function __priv_free_info
include <priv.h>
declaration void __priv_free_info(void *)
version SUNW_1.22
end
function __priv_parse_info
include <priv.h>
declaration void *__priv_parse_info(priv_impl_info_t *)
version SUNW_1.22
end
function __priv_getsetbynum
include <priv.h>
declaration const char *__priv_getsetbynum(int, void *)
version SUNW_1.22
exception $return == 0
errno EINVAL
end
function __priv_getdata
version SUNW_1.22
end
function __priv_getbynum
include <priv.h>
declaration const char *__priv_getbynum(int, void *)
version SUNW_1.22
exception $return == 0
errno EINVAL
end
function priv_getbynum
include <priv.h>
declaration const char *priv_getbynum(int)
version SUNW_1.22
exception $return == 0
errno EINVAL
end
function _priv_getbynum
weak priv_getbynum
version SUNW_1.22
end
function priv_getsetbynum
include <priv.h>
declaration const char *priv_getsetbynum(int)
version SUNW_1.22
exception $return == 0
errno EINVAL
end
function _priv_getsetbynum
weak priv_getsetbynum
version SUNW_1.22
end
function __priv_getsetbyname
include <priv.h>
declaration int __priv_getsetbyname(const char *, void *)
version SUNW_1.22
exception $return == -1
errno EINVAL
end
function __priv_getbyname
include <priv.h>
declaration int __priv_getbyname(const char *, void *)
version SUNW_1.22
exception $return == -1
errno EINVAL
end
function priv_getbyname
include <priv.h>
declaration int priv_getbyname(const char *)
version SUNW_1.22
exception $return == -1
errno EINVAL
end
function _priv_getbyname
weak priv_getbyname
version SUNW_1.22
end
function priv_getsetbyname
include <priv.h>
declaration int priv_getsetbyname(const char *)
version SUNW_1.22
exception $return == -1
errno EINVAL
end
function _priv_getsetbyname
weak priv_getsetbyname
version SUNW_1.22
end
function priv_gettext
include <priv.h>
declaration char *priv_gettext(const char *)
version SUNW_1.22
exception $return == 0
end
function _priv_gettext
weak priv_gettext
version SUNW_1.22
end
function priv_allocset
include <priv.h>
declaration priv_set_t *priv_allocset(void)
version SUNW_1.22
exception $return == 0
errno ENOMEM
end
function _priv_allocset
weak priv_allocset
version SUNW_1.22
end
function priv_freeset
include <priv.h>
declaration void priv_freeset(priv_set_t *)
version SUNW_1.22
end
function _priv_freeset
weak priv_freeset
version SUNW_1.22
end
function priv_emptyset
include <priv.h>
declaration void priv_emptyset(priv_set_t *)
version SUNW_1.22
end
function _priv_emptyset
weak priv_emptyset
version SUNW_1.22
end
function priv_fillset
include <priv.h>
declaration void priv_fillset(priv_set_t *)
version SUNW_1.22
end
function _priv_fillset
weak priv_fillset
version SUNW_1.22
end
function priv_isemptyset
include <priv.h>
declaration boolean_t priv_isemptyset(const priv_set_t *)
version SUNW_1.22
end
function _priv_isemptyset
weak priv_isemptyset
version SUNW_1.22
end
function priv_isfullset
include <priv.h>
declaration boolean_t priv_isfullset(const priv_set_t *)
version SUNW_1.22
end
function _priv_isfullset
weak priv_isfullset
version SUNW_1.22
end
function priv_isequalset
include <priv.h>
declaration boolean_t priv_isequalset(const priv_set_t *, const priv_set_t *)
version SUNW_1.22
end
function _priv_isequalset
weak priv_isequalset
version SUNW_1.22
end
function priv_issubset
include <priv.h>
declaration boolean_t priv_issubset(const priv_set_t *, const priv_set_t *)
version SUNW_1.22
end
function _priv_issubset
weak priv_issubset
version SUNW_1.22
end
function priv_intersect
include <priv.h>
declaration void priv_intersect(const priv_set_t *, priv_set_t *)
version SUNW_1.22
end
function _priv_intersect
weak priv_intersect
version SUNW_1.22
end
function priv_union
include <priv.h>
declaration void priv_union(const priv_set_t *, priv_set_t *)
version SUNW_1.22
end
function _priv_union
weak priv_union
version SUNW_1.22
end
function priv_inverse
include <priv.h>
declaration void priv_inverse(priv_set_t *)
version SUNW_1.22
end
function _priv_inverse
weak priv_inverse
version SUNW_1.22
end
function priv_addset
include <priv.h>
declaration int priv_addset(priv_set_t *, const char *)
version SUNW_1.22
end
function _priv_addset
weak priv_addset
version SUNW_1.22
end
function priv_delset
include <priv.h>
declaration int priv_delset(priv_set_t *, const char *)
version SUNW_1.22
end
function _priv_delset
weak priv_delset
version SUNW_1.22
end
function priv_copyset
include <priv.h>
declaration void priv_copyset(const priv_set_t *, priv_set_t *)
version SUNW_1.22
end
function _priv_copyset
weak priv_copyset
version SUNW_1.22
end
function priv_ismember
include <priv.h>
declaration boolean_t priv_ismember(const priv_set_t *, const char *)
version SUNW_1.22
end
function _priv_ismember
weak priv_ismember
version SUNW_1.22
end
function ucred_get
include <ucred.h>
declaration ucred_t *ucred_get(pid_t pid)
version SUNW_1.22
end
function _ucred_get
weak ucred_get
version SUNW_1.22
end
function _ucred_alloc
include <ucred.h>
declaration ucred_t *_ucred_alloc(void)
version SUNWprivate_1.1
end
function ucred_free
include <ucred.h>
declaration void ucred_free(ucred_t *)
version SUNW_1.22
end
function _ucred_free
weak ucred_free
version SUNW_1.22
end
function ucred_geteuid
include <ucred.h>
declaration uid_t ucred_geteuid(const ucred_t *)
version SUNW_1.22
end
function _ucred_geteuid
weak ucred_geteuid
version SUNW_1.22
end
function ucred_getruid
include <ucred.h>
declaration uid_t ucred_getruid(const ucred_t *)
version SUNW_1.22
end
function _ucred_getruid
weak ucred_getruid
version SUNW_1.22
end
function ucred_getsuid
include <ucred.h>
declaration uid_t ucred_getsuid(const ucred_t *)
version SUNW_1.22
end
function _ucred_getsuid
weak ucred_getsuid
version SUNW_1.22
end
function ucred_getegid
include <ucred.h>
declaration gid_t ucred_getegid(const ucred_t *)
version SUNW_1.22
end
function _ucred_getegid
weak ucred_getegid
version SUNW_1.22
end
function ucred_getrgid
include <ucred.h>
declaration gid_t ucred_getrgid(const ucred_t *)
version SUNW_1.22
end
function _ucred_getrgid
weak ucred_getrgid
version SUNW_1.22
end
function ucred_getsgid
include <ucred.h>
declaration gid_t ucred_getsgid(const ucred_t *)
version SUNW_1.22
end
function _ucred_getsgid
weak ucred_getsgid
version SUNW_1.22
end
function ucred_getgroups
include <ucred.h>
declaration int ucred_getgroups(const ucred_t *, const gid_t **)
version SUNW_1.22
end
function _ucred_getgroups
weak ucred_getgroups
version SUNW_1.22
end
function ucred_getprivset
include <ucred.h>
declaration const priv_set_t *ucred_getprivset(const ucred_t *, priv_ptype_t)
version SUNW_1.22
end
function _ucred_getprivset
weak ucred_getprivset
version SUNW_1.22
end
function ucred_getpid
include <ucred.h>
declaration pid_t ucred_getpid(const ucred_t *)
version SUNW_1.22
end
function _ucred_getpid
weak ucred_getpid
version SUNW_1.22
end
function ucred_getprojid
include <ucred.h>
declaration projid_t ucred_getprojid(const ucred_t *)
version SUNW_1.22
end
function _ucred_getprojid
weak ucred_getprojid
version SUNW_1.22
end
function ucred_getzoneid
include <ucred.h>
declaration zoneid_t ucred_getzoneid(const ucred_t *)
version SUNW_1.22
end
function _ucred_getzoneid
weak ucred_getzoneid
version SUNW_1.22
end
function ucred_getlabel
include <ucred.h>
declaration bslabel_t *ucred_getlabel(const ucred_t *)
version SUNW_1.23
end
function _ucred_getlabel
weak ucred_getlabel
version SUNW_1.23
end
function ucred_getpflags
include <ucred.h>
declaration uint_t ucred_getpflags(const ucred_t *, uint_t)
version SUNW_1.22
end
function _ucred_getpflags
weak ucred_getpflags
version SUNW_1.22
end
function zonept
include <stdlib.h> <sys/zone.h>
declaration int zonept(int filedes, zoneid_t zoneid)
version SUNWprivate_1.1
errno EBADF EINVAL
exception $return == -1
end
function getpeerucred
include <ucred.h>
declaration int getpeerucred(int, ucred_t **)
version SUNW_1.22
exception $return == -1
errno EINVAL ENOTCONN EBADF EAGAIN ENOTSUP EFAULT
end
function _getpeerucred
weak getpeerucred
version SUNW_1.22
end
function port_create
include <port.h>
declaration int port_create()
version SUNW_1.22
errno EAGAIN EMFILE
end
function _port_create
weak port_create
version SUNWprivate_1.1
end
function port_associate
include <port.h>
declaration int port_associate(int port, int source, uintptr_t object, \
int events, void *user)
version SUNW_1.22
errno ENOMEM EINVAL EBADF EBADFD EAGAIN
end
function _port_associate
weak port_associate
version SUNWprivate_1.1
end
function port_dissociate
include <port.h>
declaration int port_dissociate(int port, int type, uintptr_t object)
version SUNW_1.22
errno EINVAL EBADF EBADFD EACCES
end
function _port_dissociate
weak port_dissociate
version SUNWprivate_1.1
end
function port_get
include <port.h>
declaration int port_get(int port, port_event_t *pe, \
struct timespec *timeout)
version SUNW_1.22
errno EFAULT EINVAL EBADF EBADFD EINTR ETIME
end
function _port_get
weak port_get
version SUNWprivate_1.1
end
function port_getn
include <port.h>
declaration int port_getn(int port, port_event_t list[], uint_t nent, \
uint_t *nwait, struct timespec *timeout)
version SUNW_1.22
errno EFAULT EINVAL EBADF EBADFD EINTR ETIME
end
function _port_getn
weak port_getn
version SUNWprivate_1.1
end
function port_send
include <port.h>
declaration int port_send(int port, int events, void *user)
version SUNW_1.22
errno EAGAIN EBADF EBADFD ENOMEM
end
function _port_send
weak port_send
version SUNWprivate_1.1
end
function port_sendn
include <port.h>
declaration int port_sendn(int ports[], int errors[], uint_t nent, \
int events, void *user)
version SUNW_1.22
errno EAGAIN EBADF EBADFD ENOMEM EINVAL EFAULT EIO
end
function _port_sendn
weak port_sendn
version SUNWprivate_1.1
end
function port_alert
include <port.h>
declaration int port_alert(int port, int flags, int events, void *user)
version SUNW_1.22
errno EBADF EBADFD EBUSY EINVAL
end
function _port_alert
weak port_alert
version SUNWprivate_1.1
end
function ucred_size
include <ucred.h>
declaration size_t ucred_size(void)
version SUNW_1.22
end
function _ucred_size
weak ucred_size
version SUNW_1.22
end
function ucred_getauid
include <ucred.h>, <bsm/audit.h>
declaration au_id_t ucred_getauid(const ucred_t *)
version SUNWprivate_1.1
end
function _ucred_getauid
weak ucred_getauid
version SUNWprivate_1.1
end
function ucred_getasid
include <ucred.h>, <bsm/audit.h>
declaration au_asid_t ucred_getasid(const ucred_t *)
version SUNWprivate_1.1
end
function _ucred_getasid
weak ucred_getasid
version SUNWprivate_1.1
end
function ucred_getamask
include <ucred.h>, <bsm/audit.h>
declaration const au_mask_t *ucred_getamask(const ucred_t *)
version SUNWprivate_1.1
end
function _ucred_getamask
weak ucred_getamask
version SUNWprivate_1.1
end
function ucred_getatid
include <ucred.h>, <bsm/audit.h>
declaration const au_tid64_addr_t *ucred_getatid(const ucred_t *)
version SUNWprivate_1.1
end
function _ucred_getatid
weak ucred_getatid
version SUNWprivate_1.1
end
|