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
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
/* automatically generated by rust-bindgen */

#![allow(bad_style)]
use libc::{time_t, uid_t, gid_t, mode_t};

pub const EI_NIDENT: ::libc::c_uint = 16;
pub const EI_MAG0: ::libc::c_uint = 0;
pub const ELFMAG0: ::libc::c_uint = 127;
pub const EI_MAG1: ::libc::c_uint = 1;
pub const ELFMAG1: u8 = b'E';
pub const EI_MAG2: ::libc::c_uint = 2;
pub const ELFMAG2: u8 = b'L';
pub const EI_MAG3: ::libc::c_uint = 3;
pub const ELFMAG3: u8 = b'F';
pub const ELFMAG: &'static [u8; 5usize] = b"\x7fELF\x00";
pub const EI_CLASS: ::libc::c_uint = 4;
pub const ELFCLASSNONE: ::libc::c_uint = 0;
pub const ELFCLASS32: ::libc::c_uint = 1;
pub const ELFCLASS64: ::libc::c_uint = 2;
pub const ELFCLASSNUM: ::libc::c_uint = 3;
pub const EI_DATA: ::libc::c_uint = 5;
pub const ELFDATANONE: ::libc::c_uint = 0;
pub const ELFDATA2LSB: ::libc::c_uint = 1;
pub const ELFDATA2MSB: ::libc::c_uint = 2;
pub const ELFDATANUM: ::libc::c_uint = 3;
pub const EI_VERSION: ::libc::c_uint = 6;
pub const EI_OSABI: ::libc::c_uint = 7;
pub const ELFOSABI_NONE: ::libc::c_uint = 0;
pub const ELFOSABI_SYSV: ::libc::c_uint = 0;
pub const ELFOSABI_HPUX: ::libc::c_uint = 1;
pub const ELFOSABI_NETBSD: ::libc::c_uint = 2;
pub const ELFOSABI_GNU: ::libc::c_uint = 3;
pub const ELFOSABI_LINUX: ::libc::c_uint = 3;
pub const ELFOSABI_SOLARIS: ::libc::c_uint = 6;
pub const ELFOSABI_AIX: ::libc::c_uint = 7;
pub const ELFOSABI_IRIX: ::libc::c_uint = 8;
pub const ELFOSABI_FREEBSD: ::libc::c_uint = 9;
pub const ELFOSABI_TRU64: ::libc::c_uint = 10;
pub const ELFOSABI_MODESTO: ::libc::c_uint = 11;
pub const ELFOSABI_OPENBSD: ::libc::c_uint = 12;
pub const ELFOSABI_ARM_AEABI: ::libc::c_uint = 64;
pub const ELFOSABI_ARM: ::libc::c_uint = 97;
pub const ELFOSABI_STANDALONE: ::libc::c_uint = 255;
pub const EI_ABIVERSION: ::libc::c_uint = 8;
pub const EI_PAD: ::libc::c_uint = 9;
pub const ET_NONE: ::libc::c_uint = 0;
pub const ET_REL: ::libc::c_uint = 1;
pub const ET_EXEC: ::libc::c_uint = 2;
pub const ET_DYN: ::libc::c_uint = 3;
pub const ET_CORE: ::libc::c_uint = 4;
pub const ET_NUM: ::libc::c_uint = 5;
pub const ET_LOOS: ::libc::c_uint = 65024;
pub const ET_HIOS: ::libc::c_uint = 65279;
pub const ET_LOPROC: ::libc::c_uint = 65280;
pub const ET_HIPROC: ::libc::c_uint = 65535;
pub const EM_NONE: ::libc::c_uint = 0;
pub const EM_M32: ::libc::c_uint = 1;
pub const EM_SPARC: ::libc::c_uint = 2;
pub const EM_386: ::libc::c_uint = 3;
pub const EM_68K: ::libc::c_uint = 4;
pub const EM_88K: ::libc::c_uint = 5;
pub const EM_IAMCU: ::libc::c_uint = 6;
pub const EM_860: ::libc::c_uint = 7;
pub const EM_MIPS: ::libc::c_uint = 8;
pub const EM_S370: ::libc::c_uint = 9;
pub const EM_MIPS_RS3_LE: ::libc::c_uint = 10;
pub const EM_PARISC: ::libc::c_uint = 15;
pub const EM_VPP500: ::libc::c_uint = 17;
pub const EM_SPARC32PLUS: ::libc::c_uint = 18;
pub const EM_960: ::libc::c_uint = 19;
pub const EM_PPC: ::libc::c_uint = 20;
pub const EM_PPC64: ::libc::c_uint = 21;
pub const EM_S390: ::libc::c_uint = 22;
pub const EM_SPU: ::libc::c_uint = 23;
pub const EM_V800: ::libc::c_uint = 36;
pub const EM_FR20: ::libc::c_uint = 37;
pub const EM_RH32: ::libc::c_uint = 38;
pub const EM_RCE: ::libc::c_uint = 39;
pub const EM_ARM: ::libc::c_uint = 40;
pub const EM_FAKE_ALPHA: ::libc::c_uint = 41;
pub const EM_SH: ::libc::c_uint = 42;
pub const EM_SPARCV9: ::libc::c_uint = 43;
pub const EM_TRICORE: ::libc::c_uint = 44;
pub const EM_ARC: ::libc::c_uint = 45;
pub const EM_H8_300: ::libc::c_uint = 46;
pub const EM_H8_300H: ::libc::c_uint = 47;
pub const EM_H8S: ::libc::c_uint = 48;
pub const EM_H8_500: ::libc::c_uint = 49;
pub const EM_IA_64: ::libc::c_uint = 50;
pub const EM_MIPS_X: ::libc::c_uint = 51;
pub const EM_COLDFIRE: ::libc::c_uint = 52;
pub const EM_68HC12: ::libc::c_uint = 53;
pub const EM_MMA: ::libc::c_uint = 54;
pub const EM_PCP: ::libc::c_uint = 55;
pub const EM_NCPU: ::libc::c_uint = 56;
pub const EM_NDR1: ::libc::c_uint = 57;
pub const EM_STARCORE: ::libc::c_uint = 58;
pub const EM_ME16: ::libc::c_uint = 59;
pub const EM_ST100: ::libc::c_uint = 60;
pub const EM_TINYJ: ::libc::c_uint = 61;
pub const EM_X86_64: ::libc::c_uint = 62;
pub const EM_PDSP: ::libc::c_uint = 63;
pub const EM_PDP10: ::libc::c_uint = 64;
pub const EM_PDP11: ::libc::c_uint = 65;
pub const EM_FX66: ::libc::c_uint = 66;
pub const EM_ST9PLUS: ::libc::c_uint = 67;
pub const EM_ST7: ::libc::c_uint = 68;
pub const EM_68HC16: ::libc::c_uint = 69;
pub const EM_68HC11: ::libc::c_uint = 70;
pub const EM_68HC08: ::libc::c_uint = 71;
pub const EM_68HC05: ::libc::c_uint = 72;
pub const EM_SVX: ::libc::c_uint = 73;
pub const EM_ST19: ::libc::c_uint = 74;
pub const EM_VAX: ::libc::c_uint = 75;
pub const EM_CRIS: ::libc::c_uint = 76;
pub const EM_JAVELIN: ::libc::c_uint = 77;
pub const EM_FIREPATH: ::libc::c_uint = 78;
pub const EM_ZSP: ::libc::c_uint = 79;
pub const EM_MMIX: ::libc::c_uint = 80;
pub const EM_HUANY: ::libc::c_uint = 81;
pub const EM_PRISM: ::libc::c_uint = 82;
pub const EM_AVR: ::libc::c_uint = 83;
pub const EM_FR30: ::libc::c_uint = 84;
pub const EM_D10V: ::libc::c_uint = 85;
pub const EM_D30V: ::libc::c_uint = 86;
pub const EM_V850: ::libc::c_uint = 87;
pub const EM_M32R: ::libc::c_uint = 88;
pub const EM_MN10300: ::libc::c_uint = 89;
pub const EM_MN10200: ::libc::c_uint = 90;
pub const EM_PJ: ::libc::c_uint = 91;
pub const EM_OPENRISC: ::libc::c_uint = 92;
pub const EM_ARC_COMPACT: ::libc::c_uint = 93;
pub const EM_XTENSA: ::libc::c_uint = 94;
pub const EM_VIDEOCORE: ::libc::c_uint = 95;
pub const EM_TMM_GPP: ::libc::c_uint = 96;
pub const EM_NS32K: ::libc::c_uint = 97;
pub const EM_TPC: ::libc::c_uint = 98;
pub const EM_SNP1K: ::libc::c_uint = 99;
pub const EM_ST200: ::libc::c_uint = 100;
pub const EM_IP2K: ::libc::c_uint = 101;
pub const EM_MAX: ::libc::c_uint = 102;
pub const EM_CR: ::libc::c_uint = 103;
pub const EM_F2MC16: ::libc::c_uint = 104;
pub const EM_MSP430: ::libc::c_uint = 105;
pub const EM_BLACKFIN: ::libc::c_uint = 106;
pub const EM_SE_C33: ::libc::c_uint = 107;
pub const EM_SEP: ::libc::c_uint = 108;
pub const EM_ARCA: ::libc::c_uint = 109;
pub const EM_UNICORE: ::libc::c_uint = 110;
pub const EM_EXCESS: ::libc::c_uint = 111;
pub const EM_DXP: ::libc::c_uint = 112;
pub const EM_ALTERA_NIOS2: ::libc::c_uint = 113;
pub const EM_CRX: ::libc::c_uint = 114;
pub const EM_XGATE: ::libc::c_uint = 115;
pub const EM_C166: ::libc::c_uint = 116;
pub const EM_M16C: ::libc::c_uint = 117;
pub const EM_DSPIC30F: ::libc::c_uint = 118;
pub const EM_CE: ::libc::c_uint = 119;
pub const EM_M32C: ::libc::c_uint = 120;
pub const EM_TSK3000: ::libc::c_uint = 131;
pub const EM_RS08: ::libc::c_uint = 132;
pub const EM_SHARC: ::libc::c_uint = 133;
pub const EM_ECOG2: ::libc::c_uint = 134;
pub const EM_SCORE7: ::libc::c_uint = 135;
pub const EM_DSP24: ::libc::c_uint = 136;
pub const EM_VIDEOCORE3: ::libc::c_uint = 137;
pub const EM_LATTICEMICO32: ::libc::c_uint = 138;
pub const EM_SE_C17: ::libc::c_uint = 139;
pub const EM_TI_C6000: ::libc::c_uint = 140;
pub const EM_TI_C2000: ::libc::c_uint = 141;
pub const EM_TI_C5500: ::libc::c_uint = 142;
pub const EM_TI_ARP32: ::libc::c_uint = 143;
pub const EM_TI_PRU: ::libc::c_uint = 144;
pub const EM_MMDSP_PLUS: ::libc::c_uint = 160;
pub const EM_CYPRESS_M8C: ::libc::c_uint = 161;
pub const EM_R32C: ::libc::c_uint = 162;
pub const EM_TRIMEDIA: ::libc::c_uint = 163;
pub const EM_QDSP6: ::libc::c_uint = 164;
pub const EM_8051: ::libc::c_uint = 165;
pub const EM_STXP7X: ::libc::c_uint = 166;
pub const EM_NDS32: ::libc::c_uint = 167;
pub const EM_ECOG1X: ::libc::c_uint = 168;
pub const EM_MAXQ30: ::libc::c_uint = 169;
pub const EM_XIMO16: ::libc::c_uint = 170;
pub const EM_MANIK: ::libc::c_uint = 171;
pub const EM_CRAYNV2: ::libc::c_uint = 172;
pub const EM_RX: ::libc::c_uint = 173;
pub const EM_METAG: ::libc::c_uint = 174;
pub const EM_MCST_ELBRUS: ::libc::c_uint = 175;
pub const EM_ECOG16: ::libc::c_uint = 176;
pub const EM_CR16: ::libc::c_uint = 177;
pub const EM_ETPU: ::libc::c_uint = 178;
pub const EM_SLE9X: ::libc::c_uint = 179;
pub const EM_L10M: ::libc::c_uint = 180;
pub const EM_K10M: ::libc::c_uint = 181;
pub const EM_AARCH64: ::libc::c_uint = 183;
pub const EM_AVR32: ::libc::c_uint = 185;
pub const EM_STM8: ::libc::c_uint = 186;
pub const EM_TILE64: ::libc::c_uint = 187;
pub const EM_TILEPRO: ::libc::c_uint = 188;
pub const EM_MICROBLAZE: ::libc::c_uint = 189;
pub const EM_CUDA: ::libc::c_uint = 190;
pub const EM_TILEGX: ::libc::c_uint = 191;
pub const EM_CLOUDSHIELD: ::libc::c_uint = 192;
pub const EM_COREA_1ST: ::libc::c_uint = 193;
pub const EM_COREA_2ND: ::libc::c_uint = 194;
pub const EM_ARC_COMPACT2: ::libc::c_uint = 195;
pub const EM_OPEN8: ::libc::c_uint = 196;
pub const EM_RL78: ::libc::c_uint = 197;
pub const EM_VIDEOCORE5: ::libc::c_uint = 198;
pub const EM_78KOR: ::libc::c_uint = 199;
pub const EM_56800EX: ::libc::c_uint = 200;
pub const EM_BA1: ::libc::c_uint = 201;
pub const EM_BA2: ::libc::c_uint = 202;
pub const EM_XCORE: ::libc::c_uint = 203;
pub const EM_MCHP_PIC: ::libc::c_uint = 204;
pub const EM_KM32: ::libc::c_uint = 210;
pub const EM_KMX32: ::libc::c_uint = 211;
pub const EM_EMX16: ::libc::c_uint = 212;
pub const EM_EMX8: ::libc::c_uint = 213;
pub const EM_KVARC: ::libc::c_uint = 214;
pub const EM_CDP: ::libc::c_uint = 215;
pub const EM_COGE: ::libc::c_uint = 216;
pub const EM_COOL: ::libc::c_uint = 217;
pub const EM_NORC: ::libc::c_uint = 218;
pub const EM_CSR_KALIMBA: ::libc::c_uint = 219;
pub const EM_Z80: ::libc::c_uint = 220;
pub const EM_VISIUM: ::libc::c_uint = 221;
pub const EM_FT32: ::libc::c_uint = 222;
pub const EM_MOXIE: ::libc::c_uint = 223;
pub const EM_AMDGPU: ::libc::c_uint = 224;
pub const EM_RISCV: ::libc::c_uint = 243;
pub const EM_BPF: ::libc::c_uint = 247;
pub const EM_NUM: ::libc::c_uint = 248;
pub const EM_ARC_A5: ::libc::c_uint = 93;
pub const EM_ALPHA: ::libc::c_uint = 36902;
pub const EV_NONE: ::libc::c_uint = 0;
pub const EV_CURRENT: ::libc::c_uint = 1;
pub const EV_NUM: ::libc::c_uint = 2;
pub const SHN_UNDEF: ::libc::c_uint = 0;
pub const SHN_LORESERVE: ::libc::c_uint = 65280;
pub const SHN_LOPROC: ::libc::c_uint = 65280;
pub const SHN_BEFORE: ::libc::c_uint = 65280;
pub const SHN_AFTER: ::libc::c_uint = 65281;
pub const SHN_HIPROC: ::libc::c_uint = 65311;
pub const SHN_LOOS: ::libc::c_uint = 65312;
pub const SHN_HIOS: ::libc::c_uint = 65343;
pub const SHN_ABS: ::libc::c_uint = 65521;
pub const SHN_COMMON: ::libc::c_uint = 65522;
pub const SHN_XINDEX: ::libc::c_uint = 65535;
pub const SHN_HIRESERVE: ::libc::c_uint = 65535;
pub const SHT_NULL: ::libc::c_uint = 0;
pub const SHT_PROGBITS: ::libc::c_uint = 1;
pub const SHT_SYMTAB: ::libc::c_uint = 2;
pub const SHT_STRTAB: ::libc::c_uint = 3;
pub const SHT_RELA: ::libc::c_uint = 4;
pub const SHT_HASH: ::libc::c_uint = 5;
pub const SHT_DYNAMIC: ::libc::c_uint = 6;
pub const SHT_NOTE: ::libc::c_uint = 7;
pub const SHT_NOBITS: ::libc::c_uint = 8;
pub const SHT_REL: ::libc::c_uint = 9;
pub const SHT_SHLIB: ::libc::c_uint = 10;
pub const SHT_DYNSYM: ::libc::c_uint = 11;
pub const SHT_INIT_ARRAY: ::libc::c_uint = 14;
pub const SHT_FINI_ARRAY: ::libc::c_uint = 15;
pub const SHT_PREINIT_ARRAY: ::libc::c_uint = 16;
pub const SHT_GROUP: ::libc::c_uint = 17;
pub const SHT_SYMTAB_SHNDX: ::libc::c_uint = 18;
pub const SHT_NUM: ::libc::c_uint = 19;
pub const SHT_LOOS: ::libc::c_uint = 1610612736;
pub const SHT_GNU_ATTRIBUTES: ::libc::c_uint = 1879048181;
pub const SHT_GNU_HASH: ::libc::c_uint = 1879048182;
pub const SHT_GNU_LIBLIST: ::libc::c_uint = 1879048183;
pub const SHT_CHECKSUM: ::libc::c_uint = 1879048184;
pub const SHT_LOSUNW: ::libc::c_uint = 1879048186;
pub const SHT_SUNW_move: ::libc::c_uint = 1879048186;
pub const SHT_SUNW_COMDAT: ::libc::c_uint = 1879048187;
pub const SHT_SUNW_syminfo: ::libc::c_uint = 1879048188;
pub const SHT_GNU_verdef: ::libc::c_uint = 1879048189;
pub const SHT_GNU_verneed: ::libc::c_uint = 1879048190;
pub const SHT_GNU_versym: ::libc::c_uint = 1879048191;
pub const SHT_HISUNW: ::libc::c_uint = 1879048191;
pub const SHT_HIOS: ::libc::c_uint = 1879048191;
pub const SHT_LOPROC: ::libc::c_uint = 1879048192;
pub const SHT_HIPROC: ::libc::c_uint = 2147483647;
pub const SHT_LOUSER: ::libc::c_uint = 2147483648;
pub const SHT_HIUSER: ::libc::c_uint = 2415919103;
pub const SHF_WRITE: ::libc::c_uint = 1;
pub const SHF_ALLOC: ::libc::c_uint = 2;
pub const SHF_EXECINSTR: ::libc::c_uint = 4;
pub const SHF_MERGE: ::libc::c_uint = 16;
pub const SHF_STRINGS: ::libc::c_uint = 32;
pub const SHF_INFO_LINK: ::libc::c_uint = 64;
pub const SHF_LINK_ORDER: ::libc::c_uint = 128;
pub const SHF_OS_NONCONFORMING: ::libc::c_uint = 256;
pub const SHF_GROUP: ::libc::c_uint = 512;
pub const SHF_TLS: ::libc::c_uint = 1024;
pub const SHF_COMPRESSED: ::libc::c_uint = 2048;
pub const SHF_MASKOS: ::libc::c_uint = 267386880;
pub const SHF_MASKPROC: ::libc::c_uint = 4026531840;
pub const SHF_ORDERED: ::libc::c_uint = 1073741824;
pub const SHF_EXCLUDE: ::libc::c_uint = 2147483648;
pub const ELFCOMPRESS_ZLIB: ::libc::c_uint = 1;
pub const ELFCOMPRESS_LOOS: ::libc::c_uint = 1610612736;
pub const ELFCOMPRESS_HIOS: ::libc::c_uint = 1879048191;
pub const ELFCOMPRESS_LOPROC: ::libc::c_uint = 1879048192;
pub const ELFCOMPRESS_HIPROC: ::libc::c_uint = 2147483647;
pub const SYMINFO_BT_SELF: ::libc::c_uint = 65535;
pub const SYMINFO_BT_PARENT: ::libc::c_uint = 65534;
pub const SYMINFO_BT_LOWRESERVE: ::libc::c_uint = 65280;
pub const SYMINFO_FLG_DIRECT: ::libc::c_uint = 1;
pub const SYMINFO_FLG_PASSTHRU: ::libc::c_uint = 2;
pub const SYMINFO_FLG_COPY: ::libc::c_uint = 4;
pub const SYMINFO_FLG_LAZYLOAD: ::libc::c_uint = 8;
pub const SYMINFO_NONE: ::libc::c_uint = 0;
pub const SYMINFO_CURRENT: ::libc::c_uint = 1;
pub const SYMINFO_NUM: ::libc::c_uint = 2;
pub const STB_LOCAL: ::libc::c_uint = 0;
pub const STB_GLOBAL: ::libc::c_uint = 1;
pub const STB_WEAK: ::libc::c_uint = 2;
pub const STB_NUM: ::libc::c_uint = 3;
pub const STB_LOOS: ::libc::c_uint = 10;
pub const STB_GNU_UNIQUE: ::libc::c_uint = 10;
pub const STB_HIOS: ::libc::c_uint = 12;
pub const STB_LOPROC: ::libc::c_uint = 13;
pub const STB_HIPROC: ::libc::c_uint = 15;
pub const STT_NOTYPE: ::libc::c_uint = 0;
pub const STT_OBJECT: ::libc::c_uint = 1;
pub const STT_FUNC: ::libc::c_uint = 2;
pub const STT_SECTION: ::libc::c_uint = 3;
pub const STT_FILE: ::libc::c_uint = 4;
pub const STT_COMMON: ::libc::c_uint = 5;
pub const STT_TLS: ::libc::c_uint = 6;
pub const STT_NUM: ::libc::c_uint = 7;
pub const STT_LOOS: ::libc::c_uint = 10;
pub const STT_GNU_IFUNC: ::libc::c_uint = 10;
pub const STT_HIOS: ::libc::c_uint = 12;
pub const STT_LOPROC: ::libc::c_uint = 13;
pub const STT_HIPROC: ::libc::c_uint = 15;
pub const STN_UNDEF: ::libc::c_uint = 0;
pub const STV_DEFAULT: ::libc::c_uint = 0;
pub const STV_INTERNAL: ::libc::c_uint = 1;
pub const STV_HIDDEN: ::libc::c_uint = 2;
pub const STV_PROTECTED: ::libc::c_uint = 3;
pub const PN_XNUM: ::libc::c_uint = 65535;
pub const PT_NULL: ::libc::c_uint = 0;
pub const PT_LOAD: ::libc::c_uint = 1;
pub const PT_DYNAMIC: ::libc::c_uint = 2;
pub const PT_INTERP: ::libc::c_uint = 3;
pub const PT_NOTE: ::libc::c_uint = 4;
pub const PT_SHLIB: ::libc::c_uint = 5;
pub const PT_PHDR: ::libc::c_uint = 6;
pub const PT_TLS: ::libc::c_uint = 7;
pub const PT_NUM: ::libc::c_uint = 8;
pub const PT_LOOS: ::libc::c_uint = 1610612736;
pub const PT_GNU_EH_FRAME: ::libc::c_uint = 1685382480;
pub const PT_GNU_STACK: ::libc::c_uint = 1685382481;
pub const PT_GNU_RELRO: ::libc::c_uint = 1685382482;
pub const PT_LOSUNW: ::libc::c_uint = 1879048186;
pub const PT_SUNWBSS: ::libc::c_uint = 1879048186;
pub const PT_SUNWSTACK: ::libc::c_uint = 1879048187;
pub const PT_HISUNW: ::libc::c_uint = 1879048191;
pub const PT_HIOS: ::libc::c_uint = 1879048191;
pub const PT_LOPROC: ::libc::c_uint = 1879048192;
pub const PT_HIPROC: ::libc::c_uint = 2147483647;
pub const PF_X: ::libc::c_uint = 1;
pub const PF_W: ::libc::c_uint = 2;
pub const PF_R: ::libc::c_uint = 4;
pub const PF_MASKOS: ::libc::c_uint = 267386880;
pub const PF_MASKPROC: ::libc::c_uint = 4026531840;
pub const NT_PRSTATUS: ::libc::c_uint = 1;
pub const NT_FPREGSET: ::libc::c_uint = 2;
pub const NT_PRPSINFO: ::libc::c_uint = 3;
pub const NT_PRXREG: ::libc::c_uint = 4;
pub const NT_TASKSTRUCT: ::libc::c_uint = 4;
pub const NT_PLATFORM: ::libc::c_uint = 5;
pub const NT_AUXV: ::libc::c_uint = 6;
pub const NT_GWINDOWS: ::libc::c_uint = 7;
pub const NT_ASRS: ::libc::c_uint = 8;
pub const NT_PSTATUS: ::libc::c_uint = 10;
pub const NT_PSINFO: ::libc::c_uint = 13;
pub const NT_PRCRED: ::libc::c_uint = 14;
pub const NT_UTSNAME: ::libc::c_uint = 15;
pub const NT_LWPSTATUS: ::libc::c_uint = 16;
pub const NT_LWPSINFO: ::libc::c_uint = 17;
pub const NT_PRFPXREG: ::libc::c_uint = 20;
pub const NT_SIGINFO: ::libc::c_uint = 1397311305;
pub const NT_FILE: ::libc::c_uint = 1179208773;
pub const NT_PRXFPREG: ::libc::c_uint = 1189489535;
pub const NT_PPC_VMX: ::libc::c_uint = 256;
pub const NT_PPC_SPE: ::libc::c_uint = 257;
pub const NT_PPC_VSX: ::libc::c_uint = 258;
pub const NT_386_TLS: ::libc::c_uint = 512;
pub const NT_PPC_TM_SPR: ::libc::c_uint = 268;
pub const NT_386_IOPERM: ::libc::c_uint = 513;
pub const NT_X86_XSTATE: ::libc::c_uint = 514;
pub const NT_S390_HIGH_GPRS: ::libc::c_uint = 768;
pub const NT_S390_TIMER: ::libc::c_uint = 769;
pub const NT_S390_TODCMP: ::libc::c_uint = 770;
pub const NT_S390_TODPREG: ::libc::c_uint = 771;
pub const NT_S390_CTRS: ::libc::c_uint = 772;
pub const NT_S390_PREFIX: ::libc::c_uint = 773;
pub const NT_S390_LAST_BREAK: ::libc::c_uint = 774;
pub const NT_S390_SYSTEM_CALL: ::libc::c_uint = 775;
pub const NT_S390_TDB: ::libc::c_uint = 776;
pub const NT_ARM_VFP: ::libc::c_uint = 1024;
pub const NT_ARM_TLS: ::libc::c_uint = 1025;
pub const NT_ARM_HW_BREAK: ::libc::c_uint = 1026;
pub const NT_ARM_HW_WATCH: ::libc::c_uint = 1027;
pub const NT_ARM_SYSTEM_CALL: ::libc::c_uint = 1028;
pub const NT_VERSION: ::libc::c_uint = 1;
pub const DT_NULL: ::libc::c_uint = 0;
pub const DT_NEEDED: ::libc::c_uint = 1;
pub const DT_PLTRELSZ: ::libc::c_uint = 2;
pub const DT_PLTGOT: ::libc::c_uint = 3;
pub const DT_HASH: ::libc::c_uint = 4;
pub const DT_STRTAB: ::libc::c_uint = 5;
pub const DT_SYMTAB: ::libc::c_uint = 6;
pub const DT_RELA: ::libc::c_uint = 7;
pub const DT_RELASZ: ::libc::c_uint = 8;
pub const DT_RELAENT: ::libc::c_uint = 9;
pub const DT_STRSZ: ::libc::c_uint = 10;
pub const DT_SYMENT: ::libc::c_uint = 11;
pub const DT_INIT: ::libc::c_uint = 12;
pub const DT_FINI: ::libc::c_uint = 13;
pub const DT_SONAME: ::libc::c_uint = 14;
pub const DT_RPATH: ::libc::c_uint = 15;
pub const DT_SYMBOLIC: ::libc::c_uint = 16;
pub const DT_REL: ::libc::c_uint = 17;
pub const DT_RELSZ: ::libc::c_uint = 18;
pub const DT_RELENT: ::libc::c_uint = 19;
pub const DT_PLTREL: ::libc::c_uint = 20;
pub const DT_DEBUG: ::libc::c_uint = 21;
pub const DT_TEXTREL: ::libc::c_uint = 22;
pub const DT_JMPREL: ::libc::c_uint = 23;
pub const DT_BIND_NOW: ::libc::c_uint = 24;
pub const DT_INIT_ARRAY: ::libc::c_uint = 25;
pub const DT_FINI_ARRAY: ::libc::c_uint = 26;
pub const DT_INIT_ARRAYSZ: ::libc::c_uint = 27;
pub const DT_FINI_ARRAYSZ: ::libc::c_uint = 28;
pub const DT_RUNPATH: ::libc::c_uint = 29;
pub const DT_FLAGS: ::libc::c_uint = 30;
pub const DT_ENCODING: ::libc::c_uint = 32;
pub const DT_PREINIT_ARRAY: ::libc::c_uint = 32;
pub const DT_PREINIT_ARRAYSZ: ::libc::c_uint = 33;
pub const DT_NUM: ::libc::c_uint = 34;
pub const DT_LOOS: ::libc::c_uint = 1610612749;
pub const DT_HIOS: ::libc::c_uint = 1879044096;
pub const DT_LOPROC: ::libc::c_uint = 1879048192;
pub const DT_HIPROC: ::libc::c_uint = 2147483647;
pub const DT_VALRNGLO: ::libc::c_uint = 1879047424;
pub const DT_GNU_PRELINKED: ::libc::c_uint = 1879047669;
pub const DT_GNU_CONFLICTSZ: ::libc::c_uint = 1879047670;
pub const DT_GNU_LIBLISTSZ: ::libc::c_uint = 1879047671;
pub const DT_CHECKSUM: ::libc::c_uint = 1879047672;
pub const DT_PLTPADSZ: ::libc::c_uint = 1879047673;
pub const DT_MOVEENT: ::libc::c_uint = 1879047674;
pub const DT_MOVESZ: ::libc::c_uint = 1879047675;
pub const DT_FEATURE_1: ::libc::c_uint = 1879047676;
pub const DT_POSFLAG_1: ::libc::c_uint = 1879047677;
pub const DT_SYMINSZ: ::libc::c_uint = 1879047678;
pub const DT_SYMINENT: ::libc::c_uint = 1879047679;
pub const DT_VALRNGHI: ::libc::c_uint = 1879047679;
pub const DT_VALNUM: ::libc::c_uint = 12;
pub const DT_ADDRRNGLO: ::libc::c_uint = 1879047680;
pub const DT_GNU_HASH: ::libc::c_uint = 1879047925;
pub const DT_TLSDESC_PLT: ::libc::c_uint = 1879047926;
pub const DT_TLSDESC_GOT: ::libc::c_uint = 1879047927;
pub const DT_GNU_CONFLICT: ::libc::c_uint = 1879047928;
pub const DT_GNU_LIBLIST: ::libc::c_uint = 1879047929;
pub const DT_CONFIG: ::libc::c_uint = 1879047930;
pub const DT_DEPAUDIT: ::libc::c_uint = 1879047931;
pub const DT_AUDIT: ::libc::c_uint = 1879047932;
pub const DT_PLTPAD: ::libc::c_uint = 1879047933;
pub const DT_MOVETAB: ::libc::c_uint = 1879047934;
pub const DT_SYMINFO: ::libc::c_uint = 1879047935;
pub const DT_ADDRRNGHI: ::libc::c_uint = 1879047935;
pub const DT_ADDRNUM: ::libc::c_uint = 11;
pub const DT_VERSYM: ::libc::c_uint = 1879048176;
pub const DT_RELACOUNT: ::libc::c_uint = 1879048185;
pub const DT_RELCOUNT: ::libc::c_uint = 1879048186;
pub const DT_FLAGS_1: ::libc::c_uint = 1879048187;
pub const DT_VERDEF: ::libc::c_uint = 1879048188;
pub const DT_VERDEFNUM: ::libc::c_uint = 1879048189;
pub const DT_VERNEED: ::libc::c_uint = 1879048190;
pub const DT_VERNEEDNUM: ::libc::c_uint = 1879048191;
pub const DT_VERSIONTAGNUM: ::libc::c_uint = 16;
pub const DT_AUXILIARY: ::libc::c_uint = 2147483645;
pub const DT_FILTER: ::libc::c_uint = 2147483647;
pub const DT_EXTRANUM: ::libc::c_uint = 3;
pub const DF_ORIGIN: ::libc::c_uint = 1;
pub const DF_SYMBOLIC: ::libc::c_uint = 2;
pub const DF_TEXTREL: ::libc::c_uint = 4;
pub const DF_BIND_NOW: ::libc::c_uint = 8;
pub const DF_STATIC_TLS: ::libc::c_uint = 16;
pub const DF_1_NOW: ::libc::c_uint = 1;
pub const DF_1_GLOBAL: ::libc::c_uint = 2;
pub const DF_1_GROUP: ::libc::c_uint = 4;
pub const DF_1_NODELETE: ::libc::c_uint = 8;
pub const DF_1_LOADFLTR: ::libc::c_uint = 16;
pub const DF_1_INITFIRST: ::libc::c_uint = 32;
pub const DF_1_NOOPEN: ::libc::c_uint = 64;
pub const DF_1_ORIGIN: ::libc::c_uint = 128;
pub const DF_1_DIRECT: ::libc::c_uint = 256;
pub const DF_1_TRANS: ::libc::c_uint = 512;
pub const DF_1_INTERPOSE: ::libc::c_uint = 1024;
pub const DF_1_NODEFLIB: ::libc::c_uint = 2048;
pub const DF_1_NODUMP: ::libc::c_uint = 4096;
pub const DF_1_CONFALT: ::libc::c_uint = 8192;
pub const DF_1_ENDFILTEE: ::libc::c_uint = 16384;
pub const DF_1_DISPRELDNE: ::libc::c_uint = 32768;
pub const DF_1_DISPRELPND: ::libc::c_uint = 65536;
pub const DF_1_NODIRECT: ::libc::c_uint = 131072;
pub const DF_1_IGNMULDEF: ::libc::c_uint = 262144;
pub const DF_1_NOKSYMS: ::libc::c_uint = 524288;
pub const DF_1_NOHDR: ::libc::c_uint = 1048576;
pub const DF_1_EDITED: ::libc::c_uint = 2097152;
pub const DF_1_NORELOC: ::libc::c_uint = 4194304;
pub const DF_1_SYMINTPOSE: ::libc::c_uint = 8388608;
pub const DF_1_GLOBAUDIT: ::libc::c_uint = 16777216;
pub const DF_1_SINGLETON: ::libc::c_uint = 33554432;
pub const DTF_1_PARINIT: ::libc::c_uint = 1;
pub const DTF_1_CONFEXP: ::libc::c_uint = 2;
pub const DF_P1_LAZYLOAD: ::libc::c_uint = 1;
pub const DF_P1_GROUPPERM: ::libc::c_uint = 2;
pub const VER_DEF_NONE: ::libc::c_uint = 0;
pub const VER_DEF_CURRENT: ::libc::c_uint = 1;
pub const VER_DEF_NUM: ::libc::c_uint = 2;
pub const VER_FLG_BASE: ::libc::c_uint = 1;
pub const VER_FLG_WEAK: ::libc::c_uint = 2;
pub const VER_NDX_LOCAL: ::libc::c_uint = 0;
pub const VER_NDX_GLOBAL: ::libc::c_uint = 1;
pub const VER_NDX_LORESERVE: ::libc::c_uint = 65280;
pub const VER_NDX_ELIMINATE: ::libc::c_uint = 65281;
pub const VER_NEED_NONE: ::libc::c_uint = 0;
pub const VER_NEED_CURRENT: ::libc::c_uint = 1;
pub const VER_NEED_NUM: ::libc::c_uint = 2;
pub const AT_NULL: ::libc::c_uint = 0;
pub const AT_IGNORE: ::libc::c_uint = 1;
pub const AT_EXECFD: ::libc::c_uint = 2;
pub const AT_PHDR: ::libc::c_uint = 3;
pub const AT_PHENT: ::libc::c_uint = 4;
pub const AT_PHNUM: ::libc::c_uint = 5;
pub const AT_PAGESZ: ::libc::c_uint = 6;
pub const AT_BASE: ::libc::c_uint = 7;
pub const AT_FLAGS: ::libc::c_uint = 8;
pub const AT_ENTRY: ::libc::c_uint = 9;
pub const AT_NOTELF: ::libc::c_uint = 10;
pub const AT_UID: ::libc::c_uint = 11;
pub const AT_EUID: ::libc::c_uint = 12;
pub const AT_GID: ::libc::c_uint = 13;
pub const AT_EGID: ::libc::c_uint = 14;
pub const AT_CLKTCK: ::libc::c_uint = 17;
pub const AT_PLATFORM: ::libc::c_uint = 15;
pub const AT_HWCAP: ::libc::c_uint = 16;
pub const AT_FPUCW: ::libc::c_uint = 18;
pub const AT_DCACHEBSIZE: ::libc::c_uint = 19;
pub const AT_ICACHEBSIZE: ::libc::c_uint = 20;
pub const AT_UCACHEBSIZE: ::libc::c_uint = 21;
pub const AT_IGNOREPPC: ::libc::c_uint = 22;
pub const AT_SECURE: ::libc::c_uint = 23;
pub const AT_BASE_PLATFORM: ::libc::c_uint = 24;
pub const AT_RANDOM: ::libc::c_uint = 25;
pub const AT_HWCAP2: ::libc::c_uint = 26;
pub const AT_EXECFN: ::libc::c_uint = 31;
pub const AT_SYSINFO: ::libc::c_uint = 32;
pub const AT_SYSINFO_EHDR: ::libc::c_uint = 33;
pub const AT_L1I_CACHESHAPE: ::libc::c_uint = 34;
pub const AT_L1D_CACHESHAPE: ::libc::c_uint = 35;
pub const AT_L2_CACHESHAPE: ::libc::c_uint = 36;
pub const AT_L3_CACHESHAPE: ::libc::c_uint = 37;
pub const ELF_NOTE_SOLARIS: &'static [u8; 13usize] = b"SUNW Solaris\x00";
pub const ELF_NOTE_GNU: &'static [u8; 4usize] = b"GNU\x00";
pub const ELF_NOTE_PAGESIZE_HINT: ::libc::c_uint = 1;
pub const NT_GNU_ABI_TAG: ::libc::c_uint = 1;
pub const ELF_NOTE_ABI: ::libc::c_uint = 1;
pub const ELF_NOTE_OS_LINUX: ::libc::c_uint = 0;
pub const ELF_NOTE_OS_GNU: ::libc::c_uint = 1;
pub const ELF_NOTE_OS_SOLARIS2: ::libc::c_uint = 2;
pub const ELF_NOTE_OS_FREEBSD: ::libc::c_uint = 3;
pub const NT_GNU_HWCAP: ::libc::c_uint = 2;
pub const NT_GNU_BUILD_ID: ::libc::c_uint = 3;
pub const NT_GNU_GOLD_VERSION: ::libc::c_uint = 4;
pub const EF_CPU32: ::libc::c_uint = 8454144;
pub const R_68K_NONE: ::libc::c_uint = 0;
pub const R_68K_32: ::libc::c_uint = 1;
pub const R_68K_16: ::libc::c_uint = 2;
pub const R_68K_8: ::libc::c_uint = 3;
pub const R_68K_PC32: ::libc::c_uint = 4;
pub const R_68K_PC16: ::libc::c_uint = 5;
pub const R_68K_PC8: ::libc::c_uint = 6;
pub const R_68K_GOT32: ::libc::c_uint = 7;
pub const R_68K_GOT16: ::libc::c_uint = 8;
pub const R_68K_GOT8: ::libc::c_uint = 9;
pub const R_68K_GOT32O: ::libc::c_uint = 10;
pub const R_68K_GOT16O: ::libc::c_uint = 11;
pub const R_68K_GOT8O: ::libc::c_uint = 12;
pub const R_68K_PLT32: ::libc::c_uint = 13;
pub const R_68K_PLT16: ::libc::c_uint = 14;
pub const R_68K_PLT8: ::libc::c_uint = 15;
pub const R_68K_PLT32O: ::libc::c_uint = 16;
pub const R_68K_PLT16O: ::libc::c_uint = 17;
pub const R_68K_PLT8O: ::libc::c_uint = 18;
pub const R_68K_COPY: ::libc::c_uint = 19;
pub const R_68K_GLOB_DAT: ::libc::c_uint = 20;
pub const R_68K_JMP_SLOT: ::libc::c_uint = 21;
pub const R_68K_RELATIVE: ::libc::c_uint = 22;
pub const R_68K_TLS_GD32: ::libc::c_uint = 25;
pub const R_68K_TLS_GD16: ::libc::c_uint = 26;
pub const R_68K_TLS_GD8: ::libc::c_uint = 27;
pub const R_68K_TLS_LDM32: ::libc::c_uint = 28;
pub const R_68K_TLS_LDM16: ::libc::c_uint = 29;
pub const R_68K_TLS_LDM8: ::libc::c_uint = 30;
pub const R_68K_TLS_LDO32: ::libc::c_uint = 31;
pub const R_68K_TLS_LDO16: ::libc::c_uint = 32;
pub const R_68K_TLS_LDO8: ::libc::c_uint = 33;
pub const R_68K_TLS_IE32: ::libc::c_uint = 34;
pub const R_68K_TLS_IE16: ::libc::c_uint = 35;
pub const R_68K_TLS_IE8: ::libc::c_uint = 36;
pub const R_68K_TLS_LE32: ::libc::c_uint = 37;
pub const R_68K_TLS_LE16: ::libc::c_uint = 38;
pub const R_68K_TLS_LE8: ::libc::c_uint = 39;
pub const R_68K_TLS_DTPMOD32: ::libc::c_uint = 40;
pub const R_68K_TLS_DTPREL32: ::libc::c_uint = 41;
pub const R_68K_TLS_TPREL32: ::libc::c_uint = 42;
pub const R_68K_NUM: ::libc::c_uint = 43;
pub const R_386_NONE: ::libc::c_uint = 0;
pub const R_386_32: ::libc::c_uint = 1;
pub const R_386_PC32: ::libc::c_uint = 2;
pub const R_386_GOT32: ::libc::c_uint = 3;
pub const R_386_PLT32: ::libc::c_uint = 4;
pub const R_386_COPY: ::libc::c_uint = 5;
pub const R_386_GLOB_DAT: ::libc::c_uint = 6;
pub const R_386_JMP_SLOT: ::libc::c_uint = 7;
pub const R_386_RELATIVE: ::libc::c_uint = 8;
pub const R_386_GOTOFF: ::libc::c_uint = 9;
pub const R_386_GOTPC: ::libc::c_uint = 10;
pub const R_386_32PLT: ::libc::c_uint = 11;
pub const R_386_TLS_TPOFF: ::libc::c_uint = 14;
pub const R_386_TLS_IE: ::libc::c_uint = 15;
pub const R_386_TLS_GOTIE: ::libc::c_uint = 16;
pub const R_386_TLS_LE: ::libc::c_uint = 17;
pub const R_386_TLS_GD: ::libc::c_uint = 18;
pub const R_386_TLS_LDM: ::libc::c_uint = 19;
pub const R_386_16: ::libc::c_uint = 20;
pub const R_386_PC16: ::libc::c_uint = 21;
pub const R_386_8: ::libc::c_uint = 22;
pub const R_386_PC8: ::libc::c_uint = 23;
pub const R_386_TLS_GD_32: ::libc::c_uint = 24;
pub const R_386_TLS_GD_PUSH: ::libc::c_uint = 25;
pub const R_386_TLS_GD_CALL: ::libc::c_uint = 26;
pub const R_386_TLS_GD_POP: ::libc::c_uint = 27;
pub const R_386_TLS_LDM_32: ::libc::c_uint = 28;
pub const R_386_TLS_LDM_PUSH: ::libc::c_uint = 29;
pub const R_386_TLS_LDM_CALL: ::libc::c_uint = 30;
pub const R_386_TLS_LDM_POP: ::libc::c_uint = 31;
pub const R_386_TLS_LDO_32: ::libc::c_uint = 32;
pub const R_386_TLS_IE_32: ::libc::c_uint = 33;
pub const R_386_TLS_LE_32: ::libc::c_uint = 34;
pub const R_386_TLS_DTPMOD32: ::libc::c_uint = 35;
pub const R_386_TLS_DTPOFF32: ::libc::c_uint = 36;
pub const R_386_TLS_TPOFF32: ::libc::c_uint = 37;
pub const R_386_SIZE32: ::libc::c_uint = 38;
pub const R_386_TLS_GOTDESC: ::libc::c_uint = 39;
pub const R_386_TLS_DESC_CALL: ::libc::c_uint = 40;
pub const R_386_TLS_DESC: ::libc::c_uint = 41;
pub const R_386_IRELATIVE: ::libc::c_uint = 42;
pub const R_386_GOT32X: ::libc::c_uint = 43;
pub const R_386_NUM: ::libc::c_uint = 44;
pub const STT_SPARC_REGISTER: ::libc::c_uint = 13;
pub const EF_SPARCV9_MM: ::libc::c_uint = 3;
pub const EF_SPARCV9_TSO: ::libc::c_uint = 0;
pub const EF_SPARCV9_PSO: ::libc::c_uint = 1;
pub const EF_SPARCV9_RMO: ::libc::c_uint = 2;
pub const EF_SPARC_LEDATA: ::libc::c_uint = 8388608;
pub const EF_SPARC_EXT_MASK: ::libc::c_uint = 16776960;
pub const EF_SPARC_32PLUS: ::libc::c_uint = 256;
pub const EF_SPARC_SUN_US1: ::libc::c_uint = 512;
pub const EF_SPARC_HAL_R1: ::libc::c_uint = 1024;
pub const EF_SPARC_SUN_US3: ::libc::c_uint = 2048;
pub const R_SPARC_NONE: ::libc::c_uint = 0;
pub const R_SPARC_8: ::libc::c_uint = 1;
pub const R_SPARC_16: ::libc::c_uint = 2;
pub const R_SPARC_32: ::libc::c_uint = 3;
pub const R_SPARC_DISP8: ::libc::c_uint = 4;
pub const R_SPARC_DISP16: ::libc::c_uint = 5;
pub const R_SPARC_DISP32: ::libc::c_uint = 6;
pub const R_SPARC_WDISP30: ::libc::c_uint = 7;
pub const R_SPARC_WDISP22: ::libc::c_uint = 8;
pub const R_SPARC_HI22: ::libc::c_uint = 9;
pub const R_SPARC_22: ::libc::c_uint = 10;
pub const R_SPARC_13: ::libc::c_uint = 11;
pub const R_SPARC_LO10: ::libc::c_uint = 12;
pub const R_SPARC_GOT10: ::libc::c_uint = 13;
pub const R_SPARC_GOT13: ::libc::c_uint = 14;
pub const R_SPARC_GOT22: ::libc::c_uint = 15;
pub const R_SPARC_PC10: ::libc::c_uint = 16;
pub const R_SPARC_PC22: ::libc::c_uint = 17;
pub const R_SPARC_WPLT30: ::libc::c_uint = 18;
pub const R_SPARC_COPY: ::libc::c_uint = 19;
pub const R_SPARC_GLOB_DAT: ::libc::c_uint = 20;
pub const R_SPARC_JMP_SLOT: ::libc::c_uint = 21;
pub const R_SPARC_RELATIVE: ::libc::c_uint = 22;
pub const R_SPARC_UA32: ::libc::c_uint = 23;
pub const R_SPARC_PLT32: ::libc::c_uint = 24;
pub const R_SPARC_HIPLT22: ::libc::c_uint = 25;
pub const R_SPARC_LOPLT10: ::libc::c_uint = 26;
pub const R_SPARC_PCPLT32: ::libc::c_uint = 27;
pub const R_SPARC_PCPLT22: ::libc::c_uint = 28;
pub const R_SPARC_PCPLT10: ::libc::c_uint = 29;
pub const R_SPARC_10: ::libc::c_uint = 30;
pub const R_SPARC_11: ::libc::c_uint = 31;
pub const R_SPARC_64: ::libc::c_uint = 32;
pub const R_SPARC_OLO10: ::libc::c_uint = 33;
pub const R_SPARC_HH22: ::libc::c_uint = 34;
pub const R_SPARC_HM10: ::libc::c_uint = 35;
pub const R_SPARC_LM22: ::libc::c_uint = 36;
pub const R_SPARC_PC_HH22: ::libc::c_uint = 37;
pub const R_SPARC_PC_HM10: ::libc::c_uint = 38;
pub const R_SPARC_PC_LM22: ::libc::c_uint = 39;
pub const R_SPARC_WDISP16: ::libc::c_uint = 40;
pub const R_SPARC_WDISP19: ::libc::c_uint = 41;
pub const R_SPARC_GLOB_JMP: ::libc::c_uint = 42;
pub const R_SPARC_7: ::libc::c_uint = 43;
pub const R_SPARC_5: ::libc::c_uint = 44;
pub const R_SPARC_6: ::libc::c_uint = 45;
pub const R_SPARC_DISP64: ::libc::c_uint = 46;
pub const R_SPARC_PLT64: ::libc::c_uint = 47;
pub const R_SPARC_HIX22: ::libc::c_uint = 48;
pub const R_SPARC_LOX10: ::libc::c_uint = 49;
pub const R_SPARC_H44: ::libc::c_uint = 50;
pub const R_SPARC_M44: ::libc::c_uint = 51;
pub const R_SPARC_L44: ::libc::c_uint = 52;
pub const R_SPARC_REGISTER: ::libc::c_uint = 53;
pub const R_SPARC_UA64: ::libc::c_uint = 54;
pub const R_SPARC_UA16: ::libc::c_uint = 55;
pub const R_SPARC_TLS_GD_HI22: ::libc::c_uint = 56;
pub const R_SPARC_TLS_GD_LO10: ::libc::c_uint = 57;
pub const R_SPARC_TLS_GD_ADD: ::libc::c_uint = 58;
pub const R_SPARC_TLS_GD_CALL: ::libc::c_uint = 59;
pub const R_SPARC_TLS_LDM_HI22: ::libc::c_uint = 60;
pub const R_SPARC_TLS_LDM_LO10: ::libc::c_uint = 61;
pub const R_SPARC_TLS_LDM_ADD: ::libc::c_uint = 62;
pub const R_SPARC_TLS_LDM_CALL: ::libc::c_uint = 63;
pub const R_SPARC_TLS_LDO_HIX22: ::libc::c_uint = 64;
pub const R_SPARC_TLS_LDO_LOX10: ::libc::c_uint = 65;
pub const R_SPARC_TLS_LDO_ADD: ::libc::c_uint = 66;
pub const R_SPARC_TLS_IE_HI22: ::libc::c_uint = 67;
pub const R_SPARC_TLS_IE_LO10: ::libc::c_uint = 68;
pub const R_SPARC_TLS_IE_LD: ::libc::c_uint = 69;
pub const R_SPARC_TLS_IE_LDX: ::libc::c_uint = 70;
pub const R_SPARC_TLS_IE_ADD: ::libc::c_uint = 71;
pub const R_SPARC_TLS_LE_HIX22: ::libc::c_uint = 72;
pub const R_SPARC_TLS_LE_LOX10: ::libc::c_uint = 73;
pub const R_SPARC_TLS_DTPMOD32: ::libc::c_uint = 74;
pub const R_SPARC_TLS_DTPMOD64: ::libc::c_uint = 75;
pub const R_SPARC_TLS_DTPOFF32: ::libc::c_uint = 76;
pub const R_SPARC_TLS_DTPOFF64: ::libc::c_uint = 77;
pub const R_SPARC_TLS_TPOFF32: ::libc::c_uint = 78;
pub const R_SPARC_TLS_TPOFF64: ::libc::c_uint = 79;
pub const R_SPARC_GOTDATA_HIX22: ::libc::c_uint = 80;
pub const R_SPARC_GOTDATA_LOX10: ::libc::c_uint = 81;
pub const R_SPARC_GOTDATA_OP_HIX22: ::libc::c_uint = 82;
pub const R_SPARC_GOTDATA_OP_LOX10: ::libc::c_uint = 83;
pub const R_SPARC_GOTDATA_OP: ::libc::c_uint = 84;
pub const R_SPARC_H34: ::libc::c_uint = 85;
pub const R_SPARC_SIZE32: ::libc::c_uint = 86;
pub const R_SPARC_SIZE64: ::libc::c_uint = 87;
pub const R_SPARC_WDISP10: ::libc::c_uint = 88;
pub const R_SPARC_JMP_IREL: ::libc::c_uint = 248;
pub const R_SPARC_IRELATIVE: ::libc::c_uint = 249;
pub const R_SPARC_GNU_VTINHERIT: ::libc::c_uint = 250;
pub const R_SPARC_GNU_VTENTRY: ::libc::c_uint = 251;
pub const R_SPARC_REV32: ::libc::c_uint = 252;
pub const R_SPARC_NUM: ::libc::c_uint = 253;
pub const DT_SPARC_REGISTER: ::libc::c_uint = 1879048193;
pub const DT_SPARC_NUM: ::libc::c_uint = 2;
pub const EF_MIPS_NOREORDER: ::libc::c_uint = 1;
pub const EF_MIPS_PIC: ::libc::c_uint = 2;
pub const EF_MIPS_CPIC: ::libc::c_uint = 4;
pub const EF_MIPS_XGOT: ::libc::c_uint = 8;
pub const EF_MIPS_64BIT_WHIRL: ::libc::c_uint = 16;
pub const EF_MIPS_ABI2: ::libc::c_uint = 32;
pub const EF_MIPS_ABI_ON32: ::libc::c_uint = 64;
pub const EF_MIPS_FP64: ::libc::c_uint = 512;
pub const EF_MIPS_NAN2008: ::libc::c_uint = 1024;
pub const EF_MIPS_ARCH: ::libc::c_uint = 4026531840;
pub const EF_MIPS_ARCH_1: ::libc::c_uint = 0;
pub const EF_MIPS_ARCH_2: ::libc::c_uint = 268435456;
pub const EF_MIPS_ARCH_3: ::libc::c_uint = 536870912;
pub const EF_MIPS_ARCH_4: ::libc::c_uint = 805306368;
pub const EF_MIPS_ARCH_5: ::libc::c_uint = 1073741824;
pub const EF_MIPS_ARCH_32: ::libc::c_uint = 1342177280;
pub const EF_MIPS_ARCH_64: ::libc::c_uint = 1610612736;
pub const EF_MIPS_ARCH_32R2: ::libc::c_uint = 1879048192;
pub const EF_MIPS_ARCH_64R2: ::libc::c_uint = 2147483648;
pub const SHN_MIPS_ACOMMON: ::libc::c_uint = 65280;
pub const SHN_MIPS_TEXT: ::libc::c_uint = 65281;
pub const SHN_MIPS_DATA: ::libc::c_uint = 65282;
pub const SHN_MIPS_SCOMMON: ::libc::c_uint = 65283;
pub const SHN_MIPS_SUNDEFINED: ::libc::c_uint = 65284;
pub const SHT_MIPS_LIBLIST: ::libc::c_uint = 1879048192;
pub const SHT_MIPS_MSYM: ::libc::c_uint = 1879048193;
pub const SHT_MIPS_CONFLICT: ::libc::c_uint = 1879048194;
pub const SHT_MIPS_GPTAB: ::libc::c_uint = 1879048195;
pub const SHT_MIPS_UCODE: ::libc::c_uint = 1879048196;
pub const SHT_MIPS_DEBUG: ::libc::c_uint = 1879048197;
pub const SHT_MIPS_REGINFO: ::libc::c_uint = 1879048198;
pub const SHT_MIPS_PACKAGE: ::libc::c_uint = 1879048199;
pub const SHT_MIPS_PACKSYM: ::libc::c_uint = 1879048200;
pub const SHT_MIPS_RELD: ::libc::c_uint = 1879048201;
pub const SHT_MIPS_IFACE: ::libc::c_uint = 1879048203;
pub const SHT_MIPS_CONTENT: ::libc::c_uint = 1879048204;
pub const SHT_MIPS_OPTIONS: ::libc::c_uint = 1879048205;
pub const SHT_MIPS_SHDR: ::libc::c_uint = 1879048208;
pub const SHT_MIPS_FDESC: ::libc::c_uint = 1879048209;
pub const SHT_MIPS_EXTSYM: ::libc::c_uint = 1879048210;
pub const SHT_MIPS_DENSE: ::libc::c_uint = 1879048211;
pub const SHT_MIPS_PDESC: ::libc::c_uint = 1879048212;
pub const SHT_MIPS_LOCSYM: ::libc::c_uint = 1879048213;
pub const SHT_MIPS_AUXSYM: ::libc::c_uint = 1879048214;
pub const SHT_MIPS_OPTSYM: ::libc::c_uint = 1879048215;
pub const SHT_MIPS_LOCSTR: ::libc::c_uint = 1879048216;
pub const SHT_MIPS_LINE: ::libc::c_uint = 1879048217;
pub const SHT_MIPS_RFDESC: ::libc::c_uint = 1879048218;
pub const SHT_MIPS_DELTASYM: ::libc::c_uint = 1879048219;
pub const SHT_MIPS_DELTAINST: ::libc::c_uint = 1879048220;
pub const SHT_MIPS_DELTACLASS: ::libc::c_uint = 1879048221;
pub const SHT_MIPS_DWARF: ::libc::c_uint = 1879048222;
pub const SHT_MIPS_DELTADECL: ::libc::c_uint = 1879048223;
pub const SHT_MIPS_SYMBOL_LIB: ::libc::c_uint = 1879048224;
pub const SHT_MIPS_EVENTS: ::libc::c_uint = 1879048225;
pub const SHT_MIPS_TRANSLATE: ::libc::c_uint = 1879048226;
pub const SHT_MIPS_PIXIE: ::libc::c_uint = 1879048227;
pub const SHT_MIPS_XLATE: ::libc::c_uint = 1879048228;
pub const SHT_MIPS_XLATE_DEBUG: ::libc::c_uint = 1879048229;
pub const SHT_MIPS_WHIRL: ::libc::c_uint = 1879048230;
pub const SHT_MIPS_EH_REGION: ::libc::c_uint = 1879048231;
pub const SHT_MIPS_XLATE_OLD: ::libc::c_uint = 1879048232;
pub const SHT_MIPS_PDR_EXCEPTION: ::libc::c_uint = 1879048233;
pub const SHF_MIPS_GPREL: ::libc::c_uint = 268435456;
pub const SHF_MIPS_MERGE: ::libc::c_uint = 536870912;
pub const SHF_MIPS_ADDR: ::libc::c_uint = 1073741824;
pub const SHF_MIPS_STRINGS: ::libc::c_uint = 2147483648;
pub const SHF_MIPS_NOSTRIP: ::libc::c_uint = 134217728;
pub const SHF_MIPS_LOCAL: ::libc::c_uint = 67108864;
pub const SHF_MIPS_NAMES: ::libc::c_uint = 33554432;
pub const SHF_MIPS_NODUPE: ::libc::c_uint = 16777216;
pub const STO_MIPS_DEFAULT: ::libc::c_uint = 0;
pub const STO_MIPS_INTERNAL: ::libc::c_uint = 1;
pub const STO_MIPS_HIDDEN: ::libc::c_uint = 2;
pub const STO_MIPS_PROTECTED: ::libc::c_uint = 3;
pub const STO_MIPS_PLT: ::libc::c_uint = 8;
pub const STO_MIPS_SC_ALIGN_UNUSED: ::libc::c_uint = 255;
pub const STB_MIPS_SPLIT_COMMON: ::libc::c_uint = 13;
pub const ODK_NULL: ::libc::c_uint = 0;
pub const ODK_REGINFO: ::libc::c_uint = 1;
pub const ODK_EXCEPTIONS: ::libc::c_uint = 2;
pub const ODK_PAD: ::libc::c_uint = 3;
pub const ODK_HWPATCH: ::libc::c_uint = 4;
pub const ODK_FILL: ::libc::c_uint = 5;
pub const ODK_TAGS: ::libc::c_uint = 6;
pub const ODK_HWAND: ::libc::c_uint = 7;
pub const ODK_HWOR: ::libc::c_uint = 8;
pub const OEX_FPU_MIN: ::libc::c_uint = 31;
pub const OEX_FPU_MAX: ::libc::c_uint = 7936;
pub const OEX_PAGE0: ::libc::c_uint = 65536;
pub const OEX_SMM: ::libc::c_uint = 131072;
pub const OEX_FPDBUG: ::libc::c_uint = 262144;
pub const OEX_PRECISEFP: ::libc::c_uint = 262144;
pub const OEX_DISMISS: ::libc::c_uint = 524288;
pub const OEX_FPU_INVAL: ::libc::c_uint = 16;
pub const OEX_FPU_DIV0: ::libc::c_uint = 8;
pub const OEX_FPU_OFLO: ::libc::c_uint = 4;
pub const OEX_FPU_UFLO: ::libc::c_uint = 2;
pub const OEX_FPU_INEX: ::libc::c_uint = 1;
pub const OHW_R4KEOP: ::libc::c_uint = 1;
pub const OHW_R8KPFETCH: ::libc::c_uint = 2;
pub const OHW_R5KEOP: ::libc::c_uint = 4;
pub const OHW_R5KCVTL: ::libc::c_uint = 8;
pub const OPAD_PREFIX: ::libc::c_uint = 1;
pub const OPAD_POSTFIX: ::libc::c_uint = 2;
pub const OPAD_SYMBOL: ::libc::c_uint = 4;
pub const OHWA0_R4KEOP_CHECKED: ::libc::c_uint = 1;
pub const OHWA1_R4KEOP_CLEAN: ::libc::c_uint = 2;
pub const R_MIPS_NONE: ::libc::c_uint = 0;
pub const R_MIPS_16: ::libc::c_uint = 1;
pub const R_MIPS_32: ::libc::c_uint = 2;
pub const R_MIPS_REL32: ::libc::c_uint = 3;
pub const R_MIPS_26: ::libc::c_uint = 4;
pub const R_MIPS_HI16: ::libc::c_uint = 5;
pub const R_MIPS_LO16: ::libc::c_uint = 6;
pub const R_MIPS_GPREL16: ::libc::c_uint = 7;
pub const R_MIPS_LITERAL: ::libc::c_uint = 8;
pub const R_MIPS_GOT16: ::libc::c_uint = 9;
pub const R_MIPS_PC16: ::libc::c_uint = 10;
pub const R_MIPS_CALL16: ::libc::c_uint = 11;
pub const R_MIPS_GPREL32: ::libc::c_uint = 12;
pub const R_MIPS_SHIFT5: ::libc::c_uint = 16;
pub const R_MIPS_SHIFT6: ::libc::c_uint = 17;
pub const R_MIPS_64: ::libc::c_uint = 18;
pub const R_MIPS_GOT_DISP: ::libc::c_uint = 19;
pub const R_MIPS_GOT_PAGE: ::libc::c_uint = 20;
pub const R_MIPS_GOT_OFST: ::libc::c_uint = 21;
pub const R_MIPS_GOT_HI16: ::libc::c_uint = 22;
pub const R_MIPS_GOT_LO16: ::libc::c_uint = 23;
pub const R_MIPS_SUB: ::libc::c_uint = 24;
pub const R_MIPS_INSERT_A: ::libc::c_uint = 25;
pub const R_MIPS_INSERT_B: ::libc::c_uint = 26;
pub const R_MIPS_DELETE: ::libc::c_uint = 27;
pub const R_MIPS_HIGHER: ::libc::c_uint = 28;
pub const R_MIPS_HIGHEST: ::libc::c_uint = 29;
pub const R_MIPS_CALL_HI16: ::libc::c_uint = 30;
pub const R_MIPS_CALL_LO16: ::libc::c_uint = 31;
pub const R_MIPS_SCN_DISP: ::libc::c_uint = 32;
pub const R_MIPS_REL16: ::libc::c_uint = 33;
pub const R_MIPS_ADD_IMMEDIATE: ::libc::c_uint = 34;
pub const R_MIPS_PJUMP: ::libc::c_uint = 35;
pub const R_MIPS_RELGOT: ::libc::c_uint = 36;
pub const R_MIPS_JALR: ::libc::c_uint = 37;
pub const R_MIPS_TLS_DTPMOD32: ::libc::c_uint = 38;
pub const R_MIPS_TLS_DTPREL32: ::libc::c_uint = 39;
pub const R_MIPS_TLS_DTPMOD64: ::libc::c_uint = 40;
pub const R_MIPS_TLS_DTPREL64: ::libc::c_uint = 41;
pub const R_MIPS_TLS_GD: ::libc::c_uint = 42;
pub const R_MIPS_TLS_LDM: ::libc::c_uint = 43;
pub const R_MIPS_TLS_DTPREL_HI16: ::libc::c_uint = 44;
pub const R_MIPS_TLS_DTPREL_LO16: ::libc::c_uint = 45;
pub const R_MIPS_TLS_GOTTPREL: ::libc::c_uint = 46;
pub const R_MIPS_TLS_TPREL32: ::libc::c_uint = 47;
pub const R_MIPS_TLS_TPREL64: ::libc::c_uint = 48;
pub const R_MIPS_TLS_TPREL_HI16: ::libc::c_uint = 49;
pub const R_MIPS_TLS_TPREL_LO16: ::libc::c_uint = 50;
pub const R_MIPS_GLOB_DAT: ::libc::c_uint = 51;
pub const R_MIPS_COPY: ::libc::c_uint = 126;
pub const R_MIPS_JUMP_SLOT: ::libc::c_uint = 127;
pub const R_MIPS_NUM: ::libc::c_uint = 128;
pub const PT_MIPS_REGINFO: ::libc::c_uint = 1879048192;
pub const PT_MIPS_RTPROC: ::libc::c_uint = 1879048193;
pub const PT_MIPS_OPTIONS: ::libc::c_uint = 1879048194;
pub const PT_MIPS_ABIFLAGS: ::libc::c_uint = 1879048195;
pub const PF_MIPS_LOCAL: ::libc::c_uint = 268435456;
pub const DT_MIPS_RLD_VERSION: ::libc::c_uint = 1879048193;
pub const DT_MIPS_TIME_STAMP: ::libc::c_uint = 1879048194;
pub const DT_MIPS_ICHECKSUM: ::libc::c_uint = 1879048195;
pub const DT_MIPS_IVERSION: ::libc::c_uint = 1879048196;
pub const DT_MIPS_FLAGS: ::libc::c_uint = 1879048197;
pub const DT_MIPS_BASE_ADDRESS: ::libc::c_uint = 1879048198;
pub const DT_MIPS_MSYM: ::libc::c_uint = 1879048199;
pub const DT_MIPS_CONFLICT: ::libc::c_uint = 1879048200;
pub const DT_MIPS_LIBLIST: ::libc::c_uint = 1879048201;
pub const DT_MIPS_LOCAL_GOTNO: ::libc::c_uint = 1879048202;
pub const DT_MIPS_CONFLICTNO: ::libc::c_uint = 1879048203;
pub const DT_MIPS_LIBLISTNO: ::libc::c_uint = 1879048208;
pub const DT_MIPS_SYMTABNO: ::libc::c_uint = 1879048209;
pub const DT_MIPS_UNREFEXTNO: ::libc::c_uint = 1879048210;
pub const DT_MIPS_GOTSYM: ::libc::c_uint = 1879048211;
pub const DT_MIPS_HIPAGENO: ::libc::c_uint = 1879048212;
pub const DT_MIPS_RLD_MAP: ::libc::c_uint = 1879048214;
pub const DT_MIPS_DELTA_CLASS: ::libc::c_uint = 1879048215;
pub const DT_MIPS_DELTA_CLASS_NO: ::libc::c_uint = 1879048216;
pub const DT_MIPS_DELTA_INSTANCE: ::libc::c_uint = 1879048217;
pub const DT_MIPS_DELTA_INSTANCE_NO: ::libc::c_uint = 1879048218;
pub const DT_MIPS_DELTA_RELOC: ::libc::c_uint = 1879048219;
pub const DT_MIPS_DELTA_RELOC_NO: ::libc::c_uint = 1879048220;
pub const DT_MIPS_DELTA_SYM: ::libc::c_uint = 1879048221;
pub const DT_MIPS_DELTA_SYM_NO: ::libc::c_uint = 1879048222;
pub const DT_MIPS_DELTA_CLASSSYM: ::libc::c_uint = 1879048224;
pub const DT_MIPS_DELTA_CLASSSYM_NO: ::libc::c_uint = 1879048225;
pub const DT_MIPS_CXX_FLAGS: ::libc::c_uint = 1879048226;
pub const DT_MIPS_PIXIE_INIT: ::libc::c_uint = 1879048227;
pub const DT_MIPS_SYMBOL_LIB: ::libc::c_uint = 1879048228;
pub const DT_MIPS_LOCALPAGE_GOTIDX: ::libc::c_uint = 1879048229;
pub const DT_MIPS_LOCAL_GOTIDX: ::libc::c_uint = 1879048230;
pub const DT_MIPS_HIDDEN_GOTIDX: ::libc::c_uint = 1879048231;
pub const DT_MIPS_PROTECTED_GOTIDX: ::libc::c_uint = 1879048232;
pub const DT_MIPS_OPTIONS: ::libc::c_uint = 1879048233;
pub const DT_MIPS_INTERFACE: ::libc::c_uint = 1879048234;
pub const DT_MIPS_DYNSTR_ALIGN: ::libc::c_uint = 1879048235;
pub const DT_MIPS_INTERFACE_SIZE: ::libc::c_uint = 1879048236;
pub const DT_MIPS_RLD_TEXT_RESOLVE_ADDR: ::libc::c_uint = 1879048237;
pub const DT_MIPS_PERF_SUFFIX: ::libc::c_uint = 1879048238;
pub const DT_MIPS_COMPACT_SIZE: ::libc::c_uint = 1879048239;
pub const DT_MIPS_GP_VALUE: ::libc::c_uint = 1879048240;
pub const DT_MIPS_AUX_DYNAMIC: ::libc::c_uint = 1879048241;
pub const DT_MIPS_PLTGOT: ::libc::c_uint = 1879048242;
pub const DT_MIPS_RWPLT: ::libc::c_uint = 1879048244;
pub const DT_MIPS_RLD_MAP_REL: ::libc::c_uint = 1879048245;
pub const DT_MIPS_NUM: ::libc::c_uint = 54;
pub const RHF_NONE: ::libc::c_uint = 0;
pub const RHF_QUICKSTART: ::libc::c_uint = 1;
pub const RHF_NOTPOT: ::libc::c_uint = 2;
pub const RHF_NO_LIBRARY_REPLACEMENT: ::libc::c_uint = 4;
pub const RHF_NO_MOVE: ::libc::c_uint = 8;
pub const RHF_SGI_ONLY: ::libc::c_uint = 16;
pub const RHF_GUARANTEE_INIT: ::libc::c_uint = 32;
pub const RHF_DELTA_C_PLUS_PLUS: ::libc::c_uint = 64;
pub const RHF_GUARANTEE_START_INIT: ::libc::c_uint = 128;
pub const RHF_PIXIE: ::libc::c_uint = 256;
pub const RHF_DEFAULT_DELAY_LOAD: ::libc::c_uint = 512;
pub const RHF_REQUICKSTART: ::libc::c_uint = 1024;
pub const RHF_REQUICKSTARTED: ::libc::c_uint = 2048;
pub const RHF_CORD: ::libc::c_uint = 4096;
pub const RHF_NO_UNRES_UNDEF: ::libc::c_uint = 8192;
pub const RHF_RLD_ORDER_SAFE: ::libc::c_uint = 16384;
pub const LL_NONE: ::libc::c_uint = 0;
pub const LL_EXACT_MATCH: ::libc::c_uint = 1;
pub const LL_IGNORE_INT_VER: ::libc::c_uint = 2;
pub const LL_REQUIRE_MINOR: ::libc::c_uint = 4;
pub const LL_EXPORTS: ::libc::c_uint = 8;
pub const LL_DELAY_LOAD: ::libc::c_uint = 16;
pub const LL_DELTA: ::libc::c_uint = 32;
pub const MIPS_AFL_REG_NONE: ::libc::c_uint = 0;
pub const MIPS_AFL_REG_32: ::libc::c_uint = 1;
pub const MIPS_AFL_REG_64: ::libc::c_uint = 2;
pub const MIPS_AFL_REG_128: ::libc::c_uint = 3;
pub const MIPS_AFL_ASE_DSP: ::libc::c_uint = 1;
pub const MIPS_AFL_ASE_DSPR2: ::libc::c_uint = 2;
pub const MIPS_AFL_ASE_EVA: ::libc::c_uint = 4;
pub const MIPS_AFL_ASE_MCU: ::libc::c_uint = 8;
pub const MIPS_AFL_ASE_MDMX: ::libc::c_uint = 16;
pub const MIPS_AFL_ASE_MIPS3D: ::libc::c_uint = 32;
pub const MIPS_AFL_ASE_MT: ::libc::c_uint = 64;
pub const MIPS_AFL_ASE_SMARTMIPS: ::libc::c_uint = 128;
pub const MIPS_AFL_ASE_VIRT: ::libc::c_uint = 256;
pub const MIPS_AFL_ASE_MSA: ::libc::c_uint = 512;
pub const MIPS_AFL_ASE_MIPS16: ::libc::c_uint = 1024;
pub const MIPS_AFL_ASE_MICROMIPS: ::libc::c_uint = 2048;
pub const MIPS_AFL_ASE_XPA: ::libc::c_uint = 4096;
pub const MIPS_AFL_ASE_MASK: ::libc::c_uint = 8191;
pub const MIPS_AFL_EXT_XLR: ::libc::c_uint = 1;
pub const MIPS_AFL_EXT_OCTEON2: ::libc::c_uint = 2;
pub const MIPS_AFL_EXT_OCTEONP: ::libc::c_uint = 3;
pub const MIPS_AFL_EXT_LOONGSON_3A: ::libc::c_uint = 4;
pub const MIPS_AFL_EXT_OCTEON: ::libc::c_uint = 5;
pub const MIPS_AFL_EXT_5900: ::libc::c_uint = 6;
pub const MIPS_AFL_EXT_4650: ::libc::c_uint = 7;
pub const MIPS_AFL_EXT_4010: ::libc::c_uint = 8;
pub const MIPS_AFL_EXT_4100: ::libc::c_uint = 9;
pub const MIPS_AFL_EXT_3900: ::libc::c_uint = 10;
pub const MIPS_AFL_EXT_10000: ::libc::c_uint = 11;
pub const MIPS_AFL_EXT_SB1: ::libc::c_uint = 12;
pub const MIPS_AFL_EXT_4111: ::libc::c_uint = 13;
pub const MIPS_AFL_EXT_4120: ::libc::c_uint = 14;
pub const MIPS_AFL_EXT_5400: ::libc::c_uint = 15;
pub const MIPS_AFL_EXT_5500: ::libc::c_uint = 16;
pub const MIPS_AFL_EXT_LOONGSON_2E: ::libc::c_uint = 17;
pub const MIPS_AFL_EXT_LOONGSON_2F: ::libc::c_uint = 18;
pub const MIPS_AFL_FLAGS1_ODDSPREG: ::libc::c_uint = 1;
pub const EF_PARISC_TRAPNIL: ::libc::c_uint = 65536;
pub const EF_PARISC_EXT: ::libc::c_uint = 131072;
pub const EF_PARISC_LSB: ::libc::c_uint = 262144;
pub const EF_PARISC_WIDE: ::libc::c_uint = 524288;
pub const EF_PARISC_NO_KABP: ::libc::c_uint = 1048576;
pub const EF_PARISC_LAZYSWAP: ::libc::c_uint = 4194304;
pub const EF_PARISC_ARCH: ::libc::c_uint = 65535;
pub const EFA_PARISC_1_0: ::libc::c_uint = 523;
pub const EFA_PARISC_1_1: ::libc::c_uint = 528;
pub const EFA_PARISC_2_0: ::libc::c_uint = 532;
pub const SHN_PARISC_ANSI_COMMON: ::libc::c_uint = 65280;
pub const SHN_PARISC_HUGE_COMMON: ::libc::c_uint = 65281;
pub const SHT_PARISC_EXT: ::libc::c_uint = 1879048192;
pub const SHT_PARISC_UNWIND: ::libc::c_uint = 1879048193;
pub const SHT_PARISC_DOC: ::libc::c_uint = 1879048194;
pub const SHF_PARISC_SHORT: ::libc::c_uint = 536870912;
pub const SHF_PARISC_HUGE: ::libc::c_uint = 1073741824;
pub const SHF_PARISC_SBP: ::libc::c_uint = 2147483648;
pub const STT_PARISC_MILLICODE: ::libc::c_uint = 13;
pub const STT_HP_OPAQUE: ::libc::c_uint = 11;
pub const STT_HP_STUB: ::libc::c_uint = 12;
pub const R_PARISC_NONE: ::libc::c_uint = 0;
pub const R_PARISC_DIR32: ::libc::c_uint = 1;
pub const R_PARISC_DIR21L: ::libc::c_uint = 2;
pub const R_PARISC_DIR17R: ::libc::c_uint = 3;
pub const R_PARISC_DIR17F: ::libc::c_uint = 4;
pub const R_PARISC_DIR14R: ::libc::c_uint = 6;
pub const R_PARISC_PCREL32: ::libc::c_uint = 9;
pub const R_PARISC_PCREL21L: ::libc::c_uint = 10;
pub const R_PARISC_PCREL17R: ::libc::c_uint = 11;
pub const R_PARISC_PCREL17F: ::libc::c_uint = 12;
pub const R_PARISC_PCREL14R: ::libc::c_uint = 14;
pub const R_PARISC_DPREL21L: ::libc::c_uint = 18;
pub const R_PARISC_DPREL14R: ::libc::c_uint = 22;
pub const R_PARISC_GPREL21L: ::libc::c_uint = 26;
pub const R_PARISC_GPREL14R: ::libc::c_uint = 30;
pub const R_PARISC_LTOFF21L: ::libc::c_uint = 34;
pub const R_PARISC_LTOFF14R: ::libc::c_uint = 38;
pub const R_PARISC_SECREL32: ::libc::c_uint = 41;
pub const R_PARISC_SEGBASE: ::libc::c_uint = 48;
pub const R_PARISC_SEGREL32: ::libc::c_uint = 49;
pub const R_PARISC_PLTOFF21L: ::libc::c_uint = 50;
pub const R_PARISC_PLTOFF14R: ::libc::c_uint = 54;
pub const R_PARISC_LTOFF_FPTR32: ::libc::c_uint = 57;
pub const R_PARISC_LTOFF_FPTR21L: ::libc::c_uint = 58;
pub const R_PARISC_LTOFF_FPTR14R: ::libc::c_uint = 62;
pub const R_PARISC_FPTR64: ::libc::c_uint = 64;
pub const R_PARISC_PLABEL32: ::libc::c_uint = 65;
pub const R_PARISC_PLABEL21L: ::libc::c_uint = 66;
pub const R_PARISC_PLABEL14R: ::libc::c_uint = 70;
pub const R_PARISC_PCREL64: ::libc::c_uint = 72;
pub const R_PARISC_PCREL22F: ::libc::c_uint = 74;
pub const R_PARISC_PCREL14WR: ::libc::c_uint = 75;
pub const R_PARISC_PCREL14DR: ::libc::c_uint = 76;
pub const R_PARISC_PCREL16F: ::libc::c_uint = 77;
pub const R_PARISC_PCREL16WF: ::libc::c_uint = 78;
pub const R_PARISC_PCREL16DF: ::libc::c_uint = 79;
pub const R_PARISC_DIR64: ::libc::c_uint = 80;
pub const R_PARISC_DIR14WR: ::libc::c_uint = 83;
pub const R_PARISC_DIR14DR: ::libc::c_uint = 84;
pub const R_PARISC_DIR16F: ::libc::c_uint = 85;
pub const R_PARISC_DIR16WF: ::libc::c_uint = 86;
pub const R_PARISC_DIR16DF: ::libc::c_uint = 87;
pub const R_PARISC_GPREL64: ::libc::c_uint = 88;
pub const R_PARISC_GPREL14WR: ::libc::c_uint = 91;
pub const R_PARISC_GPREL14DR: ::libc::c_uint = 92;
pub const R_PARISC_GPREL16F: ::libc::c_uint = 93;
pub const R_PARISC_GPREL16WF: ::libc::c_uint = 94;
pub const R_PARISC_GPREL16DF: ::libc::c_uint = 95;
pub const R_PARISC_LTOFF64: ::libc::c_uint = 96;
pub const R_PARISC_LTOFF14WR: ::libc::c_uint = 99;
pub const R_PARISC_LTOFF14DR: ::libc::c_uint = 100;
pub const R_PARISC_LTOFF16F: ::libc::c_uint = 101;
pub const R_PARISC_LTOFF16WF: ::libc::c_uint = 102;
pub const R_PARISC_LTOFF16DF: ::libc::c_uint = 103;
pub const R_PARISC_SECREL64: ::libc::c_uint = 104;
pub const R_PARISC_SEGREL64: ::libc::c_uint = 112;
pub const R_PARISC_PLTOFF14WR: ::libc::c_uint = 115;
pub const R_PARISC_PLTOFF14DR: ::libc::c_uint = 116;
pub const R_PARISC_PLTOFF16F: ::libc::c_uint = 117;
pub const R_PARISC_PLTOFF16WF: ::libc::c_uint = 118;
pub const R_PARISC_PLTOFF16DF: ::libc::c_uint = 119;
pub const R_PARISC_LTOFF_FPTR64: ::libc::c_uint = 120;
pub const R_PARISC_LTOFF_FPTR14WR: ::libc::c_uint = 123;
pub const R_PARISC_LTOFF_FPTR14DR: ::libc::c_uint = 124;
pub const R_PARISC_LTOFF_FPTR16F: ::libc::c_uint = 125;
pub const R_PARISC_LTOFF_FPTR16WF: ::libc::c_uint = 126;
pub const R_PARISC_LTOFF_FPTR16DF: ::libc::c_uint = 127;
pub const R_PARISC_LORESERVE: ::libc::c_uint = 128;
pub const R_PARISC_COPY: ::libc::c_uint = 128;
pub const R_PARISC_IPLT: ::libc::c_uint = 129;
pub const R_PARISC_EPLT: ::libc::c_uint = 130;
pub const R_PARISC_TPREL32: ::libc::c_uint = 153;
pub const R_PARISC_TPREL21L: ::libc::c_uint = 154;
pub const R_PARISC_TPREL14R: ::libc::c_uint = 158;
pub const R_PARISC_LTOFF_TP21L: ::libc::c_uint = 162;
pub const R_PARISC_LTOFF_TP14R: ::libc::c_uint = 166;
pub const R_PARISC_LTOFF_TP14F: ::libc::c_uint = 167;
pub const R_PARISC_TPREL64: ::libc::c_uint = 216;
pub const R_PARISC_TPREL14WR: ::libc::c_uint = 219;
pub const R_PARISC_TPREL14DR: ::libc::c_uint = 220;
pub const R_PARISC_TPREL16F: ::libc::c_uint = 221;
pub const R_PARISC_TPREL16WF: ::libc::c_uint = 222;
pub const R_PARISC_TPREL16DF: ::libc::c_uint = 223;
pub const R_PARISC_LTOFF_TP64: ::libc::c_uint = 224;
pub const R_PARISC_LTOFF_TP14WR: ::libc::c_uint = 227;
pub const R_PARISC_LTOFF_TP14DR: ::libc::c_uint = 228;
pub const R_PARISC_LTOFF_TP16F: ::libc::c_uint = 229;
pub const R_PARISC_LTOFF_TP16WF: ::libc::c_uint = 230;
pub const R_PARISC_LTOFF_TP16DF: ::libc::c_uint = 231;
pub const R_PARISC_GNU_VTENTRY: ::libc::c_uint = 232;
pub const R_PARISC_GNU_VTINHERIT: ::libc::c_uint = 233;
pub const R_PARISC_TLS_GD21L: ::libc::c_uint = 234;
pub const R_PARISC_TLS_GD14R: ::libc::c_uint = 235;
pub const R_PARISC_TLS_GDCALL: ::libc::c_uint = 236;
pub const R_PARISC_TLS_LDM21L: ::libc::c_uint = 237;
pub const R_PARISC_TLS_LDM14R: ::libc::c_uint = 238;
pub const R_PARISC_TLS_LDMCALL: ::libc::c_uint = 239;
pub const R_PARISC_TLS_LDO21L: ::libc::c_uint = 240;
pub const R_PARISC_TLS_LDO14R: ::libc::c_uint = 241;
pub const R_PARISC_TLS_DTPMOD32: ::libc::c_uint = 242;
pub const R_PARISC_TLS_DTPMOD64: ::libc::c_uint = 243;
pub const R_PARISC_TLS_DTPOFF32: ::libc::c_uint = 244;
pub const R_PARISC_TLS_DTPOFF64: ::libc::c_uint = 245;
pub const R_PARISC_TLS_LE21L: ::libc::c_uint = 154;
pub const R_PARISC_TLS_LE14R: ::libc::c_uint = 158;
pub const R_PARISC_TLS_IE21L: ::libc::c_uint = 162;
pub const R_PARISC_TLS_IE14R: ::libc::c_uint = 166;
pub const R_PARISC_TLS_TPREL32: ::libc::c_uint = 153;
pub const R_PARISC_TLS_TPREL64: ::libc::c_uint = 216;
pub const R_PARISC_HIRESERVE: ::libc::c_uint = 255;
pub const PT_HP_TLS: ::libc::c_uint = 1610612736;
pub const PT_HP_CORE_NONE: ::libc::c_uint = 1610612737;
pub const PT_HP_CORE_VERSION: ::libc::c_uint = 1610612738;
pub const PT_HP_CORE_KERNEL: ::libc::c_uint = 1610612739;
pub const PT_HP_CORE_COMM: ::libc::c_uint = 1610612740;
pub const PT_HP_CORE_PROC: ::libc::c_uint = 1610612741;
pub const PT_HP_CORE_LOADABLE: ::libc::c_uint = 1610612742;
pub const PT_HP_CORE_STACK: ::libc::c_uint = 1610612743;
pub const PT_HP_CORE_SHM: ::libc::c_uint = 1610612744;
pub const PT_HP_CORE_MMF: ::libc::c_uint = 1610612745;
pub const PT_HP_PARALLEL: ::libc::c_uint = 1610612752;
pub const PT_HP_FASTBIND: ::libc::c_uint = 1610612753;
pub const PT_HP_OPT_ANNOT: ::libc::c_uint = 1610612754;
pub const PT_HP_HSL_ANNOT: ::libc::c_uint = 1610612755;
pub const PT_HP_STACK: ::libc::c_uint = 1610612756;
pub const PT_PARISC_ARCHEXT: ::libc::c_uint = 1879048192;
pub const PT_PARISC_UNWIND: ::libc::c_uint = 1879048193;
pub const PF_PARISC_SBP: ::libc::c_uint = 134217728;
pub const PF_HP_PAGE_SIZE: ::libc::c_uint = 1048576;
pub const PF_HP_FAR_SHARED: ::libc::c_uint = 2097152;
pub const PF_HP_NEAR_SHARED: ::libc::c_uint = 4194304;
pub const PF_HP_CODE: ::libc::c_uint = 16777216;
pub const PF_HP_MODIFY: ::libc::c_uint = 33554432;
pub const PF_HP_LAZYSWAP: ::libc::c_uint = 67108864;
pub const PF_HP_SBP: ::libc::c_uint = 134217728;
pub const EF_ALPHA_32BIT: ::libc::c_uint = 1;
pub const EF_ALPHA_CANRELAX: ::libc::c_uint = 2;
pub const SHT_ALPHA_DEBUG: ::libc::c_uint = 1879048193;
pub const SHT_ALPHA_REGINFO: ::libc::c_uint = 1879048194;
pub const SHF_ALPHA_GPREL: ::libc::c_uint = 268435456;
pub const STO_ALPHA_NOPV: ::libc::c_uint = 128;
pub const STO_ALPHA_STD_GPLOAD: ::libc::c_uint = 136;
pub const R_ALPHA_NONE: ::libc::c_uint = 0;
pub const R_ALPHA_REFLONG: ::libc::c_uint = 1;
pub const R_ALPHA_REFQUAD: ::libc::c_uint = 2;
pub const R_ALPHA_GPREL32: ::libc::c_uint = 3;
pub const R_ALPHA_LITERAL: ::libc::c_uint = 4;
pub const R_ALPHA_LITUSE: ::libc::c_uint = 5;
pub const R_ALPHA_GPDISP: ::libc::c_uint = 6;
pub const R_ALPHA_BRADDR: ::libc::c_uint = 7;
pub const R_ALPHA_HINT: ::libc::c_uint = 8;
pub const R_ALPHA_SREL16: ::libc::c_uint = 9;
pub const R_ALPHA_SREL32: ::libc::c_uint = 10;
pub const R_ALPHA_SREL64: ::libc::c_uint = 11;
pub const R_ALPHA_GPRELHIGH: ::libc::c_uint = 17;
pub const R_ALPHA_GPRELLOW: ::libc::c_uint = 18;
pub const R_ALPHA_GPREL16: ::libc::c_uint = 19;
pub const R_ALPHA_COPY: ::libc::c_uint = 24;
pub const R_ALPHA_GLOB_DAT: ::libc::c_uint = 25;
pub const R_ALPHA_JMP_SLOT: ::libc::c_uint = 26;
pub const R_ALPHA_RELATIVE: ::libc::c_uint = 27;
pub const R_ALPHA_TLS_GD_HI: ::libc::c_uint = 28;
pub const R_ALPHA_TLSGD: ::libc::c_uint = 29;
pub const R_ALPHA_TLS_LDM: ::libc::c_uint = 30;
pub const R_ALPHA_DTPMOD64: ::libc::c_uint = 31;
pub const R_ALPHA_GOTDTPREL: ::libc::c_uint = 32;
pub const R_ALPHA_DTPREL64: ::libc::c_uint = 33;
pub const R_ALPHA_DTPRELHI: ::libc::c_uint = 34;
pub const R_ALPHA_DTPRELLO: ::libc::c_uint = 35;
pub const R_ALPHA_DTPREL16: ::libc::c_uint = 36;
pub const R_ALPHA_GOTTPREL: ::libc::c_uint = 37;
pub const R_ALPHA_TPREL64: ::libc::c_uint = 38;
pub const R_ALPHA_TPRELHI: ::libc::c_uint = 39;
pub const R_ALPHA_TPRELLO: ::libc::c_uint = 40;
pub const R_ALPHA_TPREL16: ::libc::c_uint = 41;
pub const R_ALPHA_NUM: ::libc::c_uint = 46;
pub const LITUSE_ALPHA_ADDR: ::libc::c_uint = 0;
pub const LITUSE_ALPHA_BASE: ::libc::c_uint = 1;
pub const LITUSE_ALPHA_BYTOFF: ::libc::c_uint = 2;
pub const LITUSE_ALPHA_JSR: ::libc::c_uint = 3;
pub const LITUSE_ALPHA_TLS_GD: ::libc::c_uint = 4;
pub const LITUSE_ALPHA_TLS_LDM: ::libc::c_uint = 5;
pub const DT_ALPHA_PLTRO: ::libc::c_uint = 1879048192;
pub const DT_ALPHA_NUM: ::libc::c_uint = 1;
pub const EF_PPC_EMB: ::libc::c_uint = 2147483648;
pub const EF_PPC_RELOCATABLE: ::libc::c_uint = 65536;
pub const EF_PPC_RELOCATABLE_LIB: ::libc::c_uint = 32768;
pub const R_PPC_NONE: ::libc::c_uint = 0;
pub const R_PPC_ADDR32: ::libc::c_uint = 1;
pub const R_PPC_ADDR24: ::libc::c_uint = 2;
pub const R_PPC_ADDR16: ::libc::c_uint = 3;
pub const R_PPC_ADDR16_LO: ::libc::c_uint = 4;
pub const R_PPC_ADDR16_HI: ::libc::c_uint = 5;
pub const R_PPC_ADDR16_HA: ::libc::c_uint = 6;
pub const R_PPC_ADDR14: ::libc::c_uint = 7;
pub const R_PPC_ADDR14_BRTAKEN: ::libc::c_uint = 8;
pub const R_PPC_ADDR14_BRNTAKEN: ::libc::c_uint = 9;
pub const R_PPC_REL24: ::libc::c_uint = 10;
pub const R_PPC_REL14: ::libc::c_uint = 11;
pub const R_PPC_REL14_BRTAKEN: ::libc::c_uint = 12;
pub const R_PPC_REL14_BRNTAKEN: ::libc::c_uint = 13;
pub const R_PPC_GOT16: ::libc::c_uint = 14;
pub const R_PPC_GOT16_LO: ::libc::c_uint = 15;
pub const R_PPC_GOT16_HI: ::libc::c_uint = 16;
pub const R_PPC_GOT16_HA: ::libc::c_uint = 17;
pub const R_PPC_PLTREL24: ::libc::c_uint = 18;
pub const R_PPC_COPY: ::libc::c_uint = 19;
pub const R_PPC_GLOB_DAT: ::libc::c_uint = 20;
pub const R_PPC_JMP_SLOT: ::libc::c_uint = 21;
pub const R_PPC_RELATIVE: ::libc::c_uint = 22;
pub const R_PPC_LOCAL24PC: ::libc::c_uint = 23;
pub const R_PPC_UADDR32: ::libc::c_uint = 24;
pub const R_PPC_UADDR16: ::libc::c_uint = 25;
pub const R_PPC_REL32: ::libc::c_uint = 26;
pub const R_PPC_PLT32: ::libc::c_uint = 27;
pub const R_PPC_PLTREL32: ::libc::c_uint = 28;
pub const R_PPC_PLT16_LO: ::libc::c_uint = 29;
pub const R_PPC_PLT16_HI: ::libc::c_uint = 30;
pub const R_PPC_PLT16_HA: ::libc::c_uint = 31;
pub const R_PPC_SDAREL16: ::libc::c_uint = 32;
pub const R_PPC_SECTOFF: ::libc::c_uint = 33;
pub const R_PPC_SECTOFF_LO: ::libc::c_uint = 34;
pub const R_PPC_SECTOFF_HI: ::libc::c_uint = 35;
pub const R_PPC_SECTOFF_HA: ::libc::c_uint = 36;
pub const R_PPC_TLS: ::libc::c_uint = 67;
pub const R_PPC_DTPMOD32: ::libc::c_uint = 68;
pub const R_PPC_TPREL16: ::libc::c_uint = 69;
pub const R_PPC_TPREL16_LO: ::libc::c_uint = 70;
pub const R_PPC_TPREL16_HI: ::libc::c_uint = 71;
pub const R_PPC_TPREL16_HA: ::libc::c_uint = 72;
pub const R_PPC_TPREL32: ::libc::c_uint = 73;
pub const R_PPC_DTPREL16: ::libc::c_uint = 74;
pub const R_PPC_DTPREL16_LO: ::libc::c_uint = 75;
pub const R_PPC_DTPREL16_HI: ::libc::c_uint = 76;
pub const R_PPC_DTPREL16_HA: ::libc::c_uint = 77;
pub const R_PPC_DTPREL32: ::libc::c_uint = 78;
pub const R_PPC_GOT_TLSGD16: ::libc::c_uint = 79;
pub const R_PPC_GOT_TLSGD16_LO: ::libc::c_uint = 80;
pub const R_PPC_GOT_TLSGD16_HI: ::libc::c_uint = 81;
pub const R_PPC_GOT_TLSGD16_HA: ::libc::c_uint = 82;
pub const R_PPC_GOT_TLSLD16: ::libc::c_uint = 83;
pub const R_PPC_GOT_TLSLD16_LO: ::libc::c_uint = 84;
pub const R_PPC_GOT_TLSLD16_HI: ::libc::c_uint = 85;
pub const R_PPC_GOT_TLSLD16_HA: ::libc::c_uint = 86;
pub const R_PPC_GOT_TPREL16: ::libc::c_uint = 87;
pub const R_PPC_GOT_TPREL16_LO: ::libc::c_uint = 88;
pub const R_PPC_GOT_TPREL16_HI: ::libc::c_uint = 89;
pub const R_PPC_GOT_TPREL16_HA: ::libc::c_uint = 90;
pub const R_PPC_GOT_DTPREL16: ::libc::c_uint = 91;
pub const R_PPC_GOT_DTPREL16_LO: ::libc::c_uint = 92;
pub const R_PPC_GOT_DTPREL16_HI: ::libc::c_uint = 93;
pub const R_PPC_GOT_DTPREL16_HA: ::libc::c_uint = 94;
pub const R_PPC_TLSGD: ::libc::c_uint = 95;
pub const R_PPC_TLSLD: ::libc::c_uint = 96;
pub const R_PPC_EMB_NADDR32: ::libc::c_uint = 101;
pub const R_PPC_EMB_NADDR16: ::libc::c_uint = 102;
pub const R_PPC_EMB_NADDR16_LO: ::libc::c_uint = 103;
pub const R_PPC_EMB_NADDR16_HI: ::libc::c_uint = 104;
pub const R_PPC_EMB_NADDR16_HA: ::libc::c_uint = 105;
pub const R_PPC_EMB_SDAI16: ::libc::c_uint = 106;
pub const R_PPC_EMB_SDA2I16: ::libc::c_uint = 107;
pub const R_PPC_EMB_SDA2REL: ::libc::c_uint = 108;
pub const R_PPC_EMB_SDA21: ::libc::c_uint = 109;
pub const R_PPC_EMB_MRKREF: ::libc::c_uint = 110;
pub const R_PPC_EMB_RELSEC16: ::libc::c_uint = 111;
pub const R_PPC_EMB_RELST_LO: ::libc::c_uint = 112;
pub const R_PPC_EMB_RELST_HI: ::libc::c_uint = 113;
pub const R_PPC_EMB_RELST_HA: ::libc::c_uint = 114;
pub const R_PPC_EMB_BIT_FLD: ::libc::c_uint = 115;
pub const R_PPC_EMB_RELSDA: ::libc::c_uint = 116;
pub const R_PPC_DIAB_SDA21_LO: ::libc::c_uint = 180;
pub const R_PPC_DIAB_SDA21_HI: ::libc::c_uint = 181;
pub const R_PPC_DIAB_SDA21_HA: ::libc::c_uint = 182;
pub const R_PPC_DIAB_RELSDA_LO: ::libc::c_uint = 183;
pub const R_PPC_DIAB_RELSDA_HI: ::libc::c_uint = 184;
pub const R_PPC_DIAB_RELSDA_HA: ::libc::c_uint = 185;
pub const R_PPC_IRELATIVE: ::libc::c_uint = 248;
pub const R_PPC_REL16: ::libc::c_uint = 249;
pub const R_PPC_REL16_LO: ::libc::c_uint = 250;
pub const R_PPC_REL16_HI: ::libc::c_uint = 251;
pub const R_PPC_REL16_HA: ::libc::c_uint = 252;
pub const R_PPC_TOC16: ::libc::c_uint = 255;
pub const DT_PPC_GOT: ::libc::c_uint = 1879048192;
pub const DT_PPC_OPT: ::libc::c_uint = 1879048193;
pub const DT_PPC_NUM: ::libc::c_uint = 2;
pub const PPC_OPT_TLS: ::libc::c_uint = 1;
pub const R_PPC64_NONE: ::libc::c_uint = 0;
pub const R_PPC64_ADDR32: ::libc::c_uint = 1;
pub const R_PPC64_ADDR24: ::libc::c_uint = 2;
pub const R_PPC64_ADDR16: ::libc::c_uint = 3;
pub const R_PPC64_ADDR16_LO: ::libc::c_uint = 4;
pub const R_PPC64_ADDR16_HI: ::libc::c_uint = 5;
pub const R_PPC64_ADDR16_HA: ::libc::c_uint = 6;
pub const R_PPC64_ADDR14: ::libc::c_uint = 7;
pub const R_PPC64_ADDR14_BRTAKEN: ::libc::c_uint = 8;
pub const R_PPC64_ADDR14_BRNTAKEN: ::libc::c_uint = 9;
pub const R_PPC64_REL24: ::libc::c_uint = 10;
pub const R_PPC64_REL14: ::libc::c_uint = 11;
pub const R_PPC64_REL14_BRTAKEN: ::libc::c_uint = 12;
pub const R_PPC64_REL14_BRNTAKEN: ::libc::c_uint = 13;
pub const R_PPC64_GOT16: ::libc::c_uint = 14;
pub const R_PPC64_GOT16_LO: ::libc::c_uint = 15;
pub const R_PPC64_GOT16_HI: ::libc::c_uint = 16;
pub const R_PPC64_GOT16_HA: ::libc::c_uint = 17;
pub const R_PPC64_COPY: ::libc::c_uint = 19;
pub const R_PPC64_GLOB_DAT: ::libc::c_uint = 20;
pub const R_PPC64_JMP_SLOT: ::libc::c_uint = 21;
pub const R_PPC64_RELATIVE: ::libc::c_uint = 22;
pub const R_PPC64_UADDR32: ::libc::c_uint = 24;
pub const R_PPC64_UADDR16: ::libc::c_uint = 25;
pub const R_PPC64_REL32: ::libc::c_uint = 26;
pub const R_PPC64_PLT32: ::libc::c_uint = 27;
pub const R_PPC64_PLTREL32: ::libc::c_uint = 28;
pub const R_PPC64_PLT16_LO: ::libc::c_uint = 29;
pub const R_PPC64_PLT16_HI: ::libc::c_uint = 30;
pub const R_PPC64_PLT16_HA: ::libc::c_uint = 31;
pub const R_PPC64_SECTOFF: ::libc::c_uint = 33;
pub const R_PPC64_SECTOFF_LO: ::libc::c_uint = 34;
pub const R_PPC64_SECTOFF_HI: ::libc::c_uint = 35;
pub const R_PPC64_SECTOFF_HA: ::libc::c_uint = 36;
pub const R_PPC64_ADDR30: ::libc::c_uint = 37;
pub const R_PPC64_ADDR64: ::libc::c_uint = 38;
pub const R_PPC64_ADDR16_HIGHER: ::libc::c_uint = 39;
pub const R_PPC64_ADDR16_HIGHERA: ::libc::c_uint = 40;
pub const R_PPC64_ADDR16_HIGHEST: ::libc::c_uint = 41;
pub const R_PPC64_ADDR16_HIGHESTA: ::libc::c_uint = 42;
pub const R_PPC64_UADDR64: ::libc::c_uint = 43;
pub const R_PPC64_REL64: ::libc::c_uint = 44;
pub const R_PPC64_PLT64: ::libc::c_uint = 45;
pub const R_PPC64_PLTREL64: ::libc::c_uint = 46;
pub const R_PPC64_TOC16: ::libc::c_uint = 47;
pub const R_PPC64_TOC16_LO: ::libc::c_uint = 48;
pub const R_PPC64_TOC16_HI: ::libc::c_uint = 49;
pub const R_PPC64_TOC16_HA: ::libc::c_uint = 50;
pub const R_PPC64_TOC: ::libc::c_uint = 51;
pub const R_PPC64_PLTGOT16: ::libc::c_uint = 52;
pub const R_PPC64_PLTGOT16_LO: ::libc::c_uint = 53;
pub const R_PPC64_PLTGOT16_HI: ::libc::c_uint = 54;
pub const R_PPC64_PLTGOT16_HA: ::libc::c_uint = 55;
pub const R_PPC64_ADDR16_DS: ::libc::c_uint = 56;
pub const R_PPC64_ADDR16_LO_DS: ::libc::c_uint = 57;
pub const R_PPC64_GOT16_DS: ::libc::c_uint = 58;
pub const R_PPC64_GOT16_LO_DS: ::libc::c_uint = 59;
pub const R_PPC64_PLT16_LO_DS: ::libc::c_uint = 60;
pub const R_PPC64_SECTOFF_DS: ::libc::c_uint = 61;
pub const R_PPC64_SECTOFF_LO_DS: ::libc::c_uint = 62;
pub const R_PPC64_TOC16_DS: ::libc::c_uint = 63;
pub const R_PPC64_TOC16_LO_DS: ::libc::c_uint = 64;
pub const R_PPC64_PLTGOT16_DS: ::libc::c_uint = 65;
pub const R_PPC64_PLTGOT16_LO_DS: ::libc::c_uint = 66;
pub const R_PPC64_TLS: ::libc::c_uint = 67;
pub const R_PPC64_DTPMOD64: ::libc::c_uint = 68;
pub const R_PPC64_TPREL16: ::libc::c_uint = 69;
pub const R_PPC64_TPREL16_LO: ::libc::c_uint = 70;
pub const R_PPC64_TPREL16_HI: ::libc::c_uint = 71;
pub const R_PPC64_TPREL16_HA: ::libc::c_uint = 72;
pub const R_PPC64_TPREL64: ::libc::c_uint = 73;
pub const R_PPC64_DTPREL16: ::libc::c_uint = 74;
pub const R_PPC64_DTPREL16_LO: ::libc::c_uint = 75;
pub const R_PPC64_DTPREL16_HI: ::libc::c_uint = 76;
pub const R_PPC64_DTPREL16_HA: ::libc::c_uint = 77;
pub const R_PPC64_DTPREL64: ::libc::c_uint = 78;
pub const R_PPC64_GOT_TLSGD16: ::libc::c_uint = 79;
pub const R_PPC64_GOT_TLSGD16_LO: ::libc::c_uint = 80;
pub const R_PPC64_GOT_TLSGD16_HI: ::libc::c_uint = 81;
pub const R_PPC64_GOT_TLSGD16_HA: ::libc::c_uint = 82;
pub const R_PPC64_GOT_TLSLD16: ::libc::c_uint = 83;
pub const R_PPC64_GOT_TLSLD16_LO: ::libc::c_uint = 84;
pub const R_PPC64_GOT_TLSLD16_HI: ::libc::c_uint = 85;
pub const R_PPC64_GOT_TLSLD16_HA: ::libc::c_uint = 86;
pub const R_PPC64_GOT_TPREL16_DS: ::libc::c_uint = 87;
pub const R_PPC64_GOT_TPREL16_LO_DS: ::libc::c_uint = 88;
pub const R_PPC64_GOT_TPREL16_HI: ::libc::c_uint = 89;
pub const R_PPC64_GOT_TPREL16_HA: ::libc::c_uint = 90;
pub const R_PPC64_GOT_DTPREL16_DS: ::libc::c_uint = 91;
pub const R_PPC64_GOT_DTPREL16_LO_DS: ::libc::c_uint = 92;
pub const R_PPC64_GOT_DTPREL16_HI: ::libc::c_uint = 93;
pub const R_PPC64_GOT_DTPREL16_HA: ::libc::c_uint = 94;
pub const R_PPC64_TPREL16_DS: ::libc::c_uint = 95;
pub const R_PPC64_TPREL16_LO_DS: ::libc::c_uint = 96;
pub const R_PPC64_TPREL16_HIGHER: ::libc::c_uint = 97;
pub const R_PPC64_TPREL16_HIGHERA: ::libc::c_uint = 98;
pub const R_PPC64_TPREL16_HIGHEST: ::libc::c_uint = 99;
pub const R_PPC64_TPREL16_HIGHESTA: ::libc::c_uint = 100;
pub const R_PPC64_DTPREL16_DS: ::libc::c_uint = 101;
pub const R_PPC64_DTPREL16_LO_DS: ::libc::c_uint = 102;
pub const R_PPC64_DTPREL16_HIGHER: ::libc::c_uint = 103;
pub const R_PPC64_DTPREL16_HIGHERA: ::libc::c_uint = 104;
pub const R_PPC64_DTPREL16_HIGHEST: ::libc::c_uint = 105;
pub const R_PPC64_DTPREL16_HIGHESTA: ::libc::c_uint = 106;
pub const R_PPC64_TLSGD: ::libc::c_uint = 107;
pub const R_PPC64_TLSLD: ::libc::c_uint = 108;
pub const R_PPC64_TOCSAVE: ::libc::c_uint = 109;
pub const R_PPC64_ADDR16_HIGH: ::libc::c_uint = 110;
pub const R_PPC64_ADDR16_HIGHA: ::libc::c_uint = 111;
pub const R_PPC64_TPREL16_HIGH: ::libc::c_uint = 112;
pub const R_PPC64_TPREL16_HIGHA: ::libc::c_uint = 113;
pub const R_PPC64_DTPREL16_HIGH: ::libc::c_uint = 114;
pub const R_PPC64_DTPREL16_HIGHA: ::libc::c_uint = 115;
pub const R_PPC64_JMP_IREL: ::libc::c_uint = 247;
pub const R_PPC64_IRELATIVE: ::libc::c_uint = 248;
pub const R_PPC64_REL16: ::libc::c_uint = 249;
pub const R_PPC64_REL16_LO: ::libc::c_uint = 250;
pub const R_PPC64_REL16_HI: ::libc::c_uint = 251;
pub const R_PPC64_REL16_HA: ::libc::c_uint = 252;
pub const EF_PPC64_ABI: ::libc::c_uint = 3;
pub const DT_PPC64_GLINK: ::libc::c_uint = 1879048192;
pub const DT_PPC64_OPD: ::libc::c_uint = 1879048193;
pub const DT_PPC64_OPDSZ: ::libc::c_uint = 1879048194;
pub const DT_PPC64_OPT: ::libc::c_uint = 1879048195;
pub const DT_PPC64_NUM: ::libc::c_uint = 4;
pub const PPC64_OPT_TLS: ::libc::c_uint = 1;
pub const PPC64_OPT_MULTI_TOC: ::libc::c_uint = 2;
pub const STO_PPC64_LOCAL_BIT: ::libc::c_uint = 5;
pub const STO_PPC64_LOCAL_MASK: ::libc::c_uint = 224;
pub const EF_ARM_RELEXEC: ::libc::c_uint = 1;
pub const EF_ARM_HASENTRY: ::libc::c_uint = 2;
pub const EF_ARM_INTERWORK: ::libc::c_uint = 4;
pub const EF_ARM_APCS_26: ::libc::c_uint = 8;
pub const EF_ARM_APCS_FLOAT: ::libc::c_uint = 16;
pub const EF_ARM_PIC: ::libc::c_uint = 32;
pub const EF_ARM_ALIGN8: ::libc::c_uint = 64;
pub const EF_ARM_NEW_ABI: ::libc::c_uint = 128;
pub const EF_ARM_OLD_ABI: ::libc::c_uint = 256;
pub const EF_ARM_SOFT_FLOAT: ::libc::c_uint = 512;
pub const EF_ARM_VFP_FLOAT: ::libc::c_uint = 1024;
pub const EF_ARM_MAVERICK_FLOAT: ::libc::c_uint = 2048;
pub const EF_ARM_ABI_FLOAT_SOFT: ::libc::c_uint = 512;
pub const EF_ARM_ABI_FLOAT_HARD: ::libc::c_uint = 1024;
pub const EF_ARM_SYMSARESORTED: ::libc::c_uint = 4;
pub const EF_ARM_DYNSYMSUSESEGIDX: ::libc::c_uint = 8;
pub const EF_ARM_MAPSYMSFIRST: ::libc::c_uint = 16;
pub const EF_ARM_BE8: ::libc::c_uint = 8388608;
pub const EF_ARM_LE8: ::libc::c_uint = 4194304;
pub const EF_ARM_EABI_UNKNOWN: ::libc::c_uint = 0;
pub const EF_ARM_EABI_VER1: ::libc::c_uint = 16777216;
pub const EF_ARM_EABI_VER2: ::libc::c_uint = 33554432;
pub const EF_ARM_EABI_VER3: ::libc::c_uint = 50331648;
pub const EF_ARM_EABI_VER4: ::libc::c_uint = 67108864;
pub const EF_ARM_EABI_VER5: ::libc::c_uint = 83886080;
pub const STT_ARM_TFUNC: ::libc::c_uint = 13;
pub const STT_ARM_16BIT: ::libc::c_uint = 15;
pub const SHF_ARM_ENTRYSECT: ::libc::c_uint = 268435456;
pub const SHF_ARM_COMDEF: ::libc::c_uint = 2147483648;
pub const PF_ARM_SB: ::libc::c_uint = 268435456;
pub const PF_ARM_PI: ::libc::c_uint = 536870912;
pub const PF_ARM_ABS: ::libc::c_uint = 1073741824;
pub const PT_ARM_EXIDX: ::libc::c_uint = 1879048193;
pub const SHT_ARM_EXIDX: ::libc::c_uint = 1879048193;
pub const SHT_ARM_PREEMPTMAP: ::libc::c_uint = 1879048194;
pub const SHT_ARM_ATTRIBUTES: ::libc::c_uint = 1879048195;
pub const R_AARCH64_NONE: ::libc::c_uint = 0;
pub const R_AARCH64_P32_ABS32: ::libc::c_uint = 1;
pub const R_AARCH64_P32_COPY: ::libc::c_uint = 180;
pub const R_AARCH64_P32_GLOB_DAT: ::libc::c_uint = 181;
pub const R_AARCH64_P32_JUMP_SLOT: ::libc::c_uint = 182;
pub const R_AARCH64_P32_RELATIVE: ::libc::c_uint = 183;
pub const R_AARCH64_P32_TLS_DTPMOD: ::libc::c_uint = 184;
pub const R_AARCH64_P32_TLS_DTPREL: ::libc::c_uint = 185;
pub const R_AARCH64_P32_TLS_TPREL: ::libc::c_uint = 186;
pub const R_AARCH64_P32_TLSDESC: ::libc::c_uint = 187;
pub const R_AARCH64_P32_IRELATIVE: ::libc::c_uint = 188;
pub const R_AARCH64_ABS64: ::libc::c_uint = 257;
pub const R_AARCH64_ABS32: ::libc::c_uint = 258;
pub const R_AARCH64_ABS16: ::libc::c_uint = 259;
pub const R_AARCH64_PREL64: ::libc::c_uint = 260;
pub const R_AARCH64_PREL32: ::libc::c_uint = 261;
pub const R_AARCH64_PREL16: ::libc::c_uint = 262;
pub const R_AARCH64_MOVW_UABS_G0: ::libc::c_uint = 263;
pub const R_AARCH64_MOVW_UABS_G0_NC: ::libc::c_uint = 264;
pub const R_AARCH64_MOVW_UABS_G1: ::libc::c_uint = 265;
pub const R_AARCH64_MOVW_UABS_G1_NC: ::libc::c_uint = 266;
pub const R_AARCH64_MOVW_UABS_G2: ::libc::c_uint = 267;
pub const R_AARCH64_MOVW_UABS_G2_NC: ::libc::c_uint = 268;
pub const R_AARCH64_MOVW_UABS_G3: ::libc::c_uint = 269;
pub const R_AARCH64_MOVW_SABS_G0: ::libc::c_uint = 270;
pub const R_AARCH64_MOVW_SABS_G1: ::libc::c_uint = 271;
pub const R_AARCH64_MOVW_SABS_G2: ::libc::c_uint = 272;
pub const R_AARCH64_LD_PREL_LO19: ::libc::c_uint = 273;
pub const R_AARCH64_ADR_PREL_LO21: ::libc::c_uint = 274;
pub const R_AARCH64_ADR_PREL_PG_HI21: ::libc::c_uint = 275;
pub const R_AARCH64_ADR_PREL_PG_HI21_NC: ::libc::c_uint = 276;
pub const R_AARCH64_ADD_ABS_LO12_NC: ::libc::c_uint = 277;
pub const R_AARCH64_LDST8_ABS_LO12_NC: ::libc::c_uint = 278;
pub const R_AARCH64_TSTBR14: ::libc::c_uint = 279;
pub const R_AARCH64_CONDBR19: ::libc::c_uint = 280;
pub const R_AARCH64_JUMP26: ::libc::c_uint = 282;
pub const R_AARCH64_CALL26: ::libc::c_uint = 283;
pub const R_AARCH64_LDST16_ABS_LO12_NC: ::libc::c_uint = 284;
pub const R_AARCH64_LDST32_ABS_LO12_NC: ::libc::c_uint = 285;
pub const R_AARCH64_LDST64_ABS_LO12_NC: ::libc::c_uint = 286;
pub const R_AARCH64_MOVW_PREL_G0: ::libc::c_uint = 287;
pub const R_AARCH64_MOVW_PREL_G0_NC: ::libc::c_uint = 288;
pub const R_AARCH64_MOVW_PREL_G1: ::libc::c_uint = 289;
pub const R_AARCH64_MOVW_PREL_G1_NC: ::libc::c_uint = 290;
pub const R_AARCH64_MOVW_PREL_G2: ::libc::c_uint = 291;
pub const R_AARCH64_MOVW_PREL_G2_NC: ::libc::c_uint = 292;
pub const R_AARCH64_MOVW_PREL_G3: ::libc::c_uint = 293;
pub const R_AARCH64_LDST128_ABS_LO12_NC: ::libc::c_uint = 299;
pub const R_AARCH64_MOVW_GOTOFF_G0: ::libc::c_uint = 300;
pub const R_AARCH64_MOVW_GOTOFF_G0_NC: ::libc::c_uint = 301;
pub const R_AARCH64_MOVW_GOTOFF_G1: ::libc::c_uint = 302;
pub const R_AARCH64_MOVW_GOTOFF_G1_NC: ::libc::c_uint = 303;
pub const R_AARCH64_MOVW_GOTOFF_G2: ::libc::c_uint = 304;
pub const R_AARCH64_MOVW_GOTOFF_G2_NC: ::libc::c_uint = 305;
pub const R_AARCH64_MOVW_GOTOFF_G3: ::libc::c_uint = 306;
pub const R_AARCH64_GOTREL64: ::libc::c_uint = 307;
pub const R_AARCH64_GOTREL32: ::libc::c_uint = 308;
pub const R_AARCH64_GOT_LD_PREL19: ::libc::c_uint = 309;
pub const R_AARCH64_LD64_GOTOFF_LO15: ::libc::c_uint = 310;
pub const R_AARCH64_ADR_GOT_PAGE: ::libc::c_uint = 311;
pub const R_AARCH64_LD64_GOT_LO12_NC: ::libc::c_uint = 312;
pub const R_AARCH64_LD64_GOTPAGE_LO15: ::libc::c_uint = 313;
pub const R_AARCH64_TLSGD_ADR_PREL21: ::libc::c_uint = 512;
pub const R_AARCH64_TLSGD_ADR_PAGE21: ::libc::c_uint = 513;
pub const R_AARCH64_TLSGD_ADD_LO12_NC: ::libc::c_uint = 514;
pub const R_AARCH64_TLSGD_MOVW_G1: ::libc::c_uint = 515;
pub const R_AARCH64_TLSGD_MOVW_G0_NC: ::libc::c_uint = 516;
pub const R_AARCH64_TLSLD_ADR_PREL21: ::libc::c_uint = 517;
pub const R_AARCH64_TLSLD_ADR_PAGE21: ::libc::c_uint = 518;
pub const R_AARCH64_TLSLD_ADD_LO12_NC: ::libc::c_uint = 519;
pub const R_AARCH64_TLSLD_MOVW_G1: ::libc::c_uint = 520;
pub const R_AARCH64_TLSLD_MOVW_G0_NC: ::libc::c_uint = 521;
pub const R_AARCH64_TLSLD_LD_PREL19: ::libc::c_uint = 522;
pub const R_AARCH64_TLSLD_MOVW_DTPREL_G2: ::libc::c_uint = 523;
pub const R_AARCH64_TLSLD_MOVW_DTPREL_G1: ::libc::c_uint = 524;
pub const R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC: ::libc::c_uint = 525;
pub const R_AARCH64_TLSLD_MOVW_DTPREL_G0: ::libc::c_uint = 526;
pub const R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC: ::libc::c_uint = 527;
pub const R_AARCH64_TLSLD_ADD_DTPREL_HI12: ::libc::c_uint = 528;
pub const R_AARCH64_TLSLD_ADD_DTPREL_LO12: ::libc::c_uint = 529;
pub const R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC: ::libc::c_uint = 530;
pub const R_AARCH64_TLSLD_LDST8_DTPREL_LO12: ::libc::c_uint = 531;
pub const R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC: ::libc::c_uint = 532;
pub const R_AARCH64_TLSLD_LDST16_DTPREL_LO12: ::libc::c_uint = 533;
pub const R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC: ::libc::c_uint = 534;
pub const R_AARCH64_TLSLD_LDST32_DTPREL_LO12: ::libc::c_uint = 535;
pub const R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC: ::libc::c_uint = 536;
pub const R_AARCH64_TLSLD_LDST64_DTPREL_LO12: ::libc::c_uint = 537;
pub const R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC: ::libc::c_uint = 538;
pub const R_AARCH64_TLSIE_MOVW_GOTTPREL_G1: ::libc::c_uint = 539;
pub const R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC: ::libc::c_uint = 540;
pub const R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21: ::libc::c_uint = 541;
pub const R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC: ::libc::c_uint = 542;
pub const R_AARCH64_TLSIE_LD_GOTTPREL_PREL19: ::libc::c_uint = 543;
pub const R_AARCH64_TLSLE_MOVW_TPREL_G2: ::libc::c_uint = 544;
pub const R_AARCH64_TLSLE_MOVW_TPREL_G1: ::libc::c_uint = 545;
pub const R_AARCH64_TLSLE_MOVW_TPREL_G1_NC: ::libc::c_uint = 546;
pub const R_AARCH64_TLSLE_MOVW_TPREL_G0: ::libc::c_uint = 547;
pub const R_AARCH64_TLSLE_MOVW_TPREL_G0_NC: ::libc::c_uint = 548;
pub const R_AARCH64_TLSLE_ADD_TPREL_HI12: ::libc::c_uint = 549;
pub const R_AARCH64_TLSLE_ADD_TPREL_LO12: ::libc::c_uint = 550;
pub const R_AARCH64_TLSLE_ADD_TPREL_LO12_NC: ::libc::c_uint = 551;
pub const R_AARCH64_TLSLE_LDST8_TPREL_LO12: ::libc::c_uint = 552;
pub const R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC: ::libc::c_uint = 553;
pub const R_AARCH64_TLSLE_LDST16_TPREL_LO12: ::libc::c_uint = 554;
pub const R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC: ::libc::c_uint = 555;
pub const R_AARCH64_TLSLE_LDST32_TPREL_LO12: ::libc::c_uint = 556;
pub const R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC: ::libc::c_uint = 557;
pub const R_AARCH64_TLSLE_LDST64_TPREL_LO12: ::libc::c_uint = 558;
pub const R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC: ::libc::c_uint = 559;
pub const R_AARCH64_TLSDESC_LD_PREL19: ::libc::c_uint = 560;
pub const R_AARCH64_TLSDESC_ADR_PREL21: ::libc::c_uint = 561;
pub const R_AARCH64_TLSDESC_ADR_PAGE21: ::libc::c_uint = 562;
pub const R_AARCH64_TLSDESC_LD64_LO12: ::libc::c_uint = 563;
pub const R_AARCH64_TLSDESC_ADD_LO12: ::libc::c_uint = 564;
pub const R_AARCH64_TLSDESC_OFF_G1: ::libc::c_uint = 565;
pub const R_AARCH64_TLSDESC_OFF_G0_NC: ::libc::c_uint = 566;
pub const R_AARCH64_TLSDESC_LDR: ::libc::c_uint = 567;
pub const R_AARCH64_TLSDESC_ADD: ::libc::c_uint = 568;
pub const R_AARCH64_TLSDESC_CALL: ::libc::c_uint = 569;
pub const R_AARCH64_TLSLE_LDST128_TPREL_LO12: ::libc::c_uint = 570;
pub const R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC: ::libc::c_uint = 571;
pub const R_AARCH64_TLSLD_LDST128_DTPREL_LO12: ::libc::c_uint = 572;
pub const R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC: ::libc::c_uint = 573;
pub const R_AARCH64_COPY: ::libc::c_uint = 1024;
pub const R_AARCH64_GLOB_DAT: ::libc::c_uint = 1025;
pub const R_AARCH64_JUMP_SLOT: ::libc::c_uint = 1026;
pub const R_AARCH64_RELATIVE: ::libc::c_uint = 1027;
pub const R_AARCH64_TLS_DTPMOD: ::libc::c_uint = 1028;
pub const R_AARCH64_TLS_DTPREL: ::libc::c_uint = 1029;
pub const R_AARCH64_TLS_TPREL: ::libc::c_uint = 1030;
pub const R_AARCH64_TLSDESC: ::libc::c_uint = 1031;
pub const R_AARCH64_IRELATIVE: ::libc::c_uint = 1032;
pub const R_ARM_NONE: ::libc::c_uint = 0;
pub const R_ARM_PC24: ::libc::c_uint = 1;
pub const R_ARM_ABS32: ::libc::c_uint = 2;
pub const R_ARM_REL32: ::libc::c_uint = 3;
pub const R_ARM_PC13: ::libc::c_uint = 4;
pub const R_ARM_ABS16: ::libc::c_uint = 5;
pub const R_ARM_ABS12: ::libc::c_uint = 6;
pub const R_ARM_THM_ABS5: ::libc::c_uint = 7;
pub const R_ARM_ABS8: ::libc::c_uint = 8;
pub const R_ARM_SBREL32: ::libc::c_uint = 9;
pub const R_ARM_THM_PC22: ::libc::c_uint = 10;
pub const R_ARM_THM_PC8: ::libc::c_uint = 11;
pub const R_ARM_AMP_VCALL9: ::libc::c_uint = 12;
pub const R_ARM_SWI24: ::libc::c_uint = 13;
pub const R_ARM_TLS_DESC: ::libc::c_uint = 13;
pub const R_ARM_THM_SWI8: ::libc::c_uint = 14;
pub const R_ARM_XPC25: ::libc::c_uint = 15;
pub const R_ARM_THM_XPC22: ::libc::c_uint = 16;
pub const R_ARM_TLS_DTPMOD32: ::libc::c_uint = 17;
pub const R_ARM_TLS_DTPOFF32: ::libc::c_uint = 18;
pub const R_ARM_TLS_TPOFF32: ::libc::c_uint = 19;
pub const R_ARM_COPY: ::libc::c_uint = 20;
pub const R_ARM_GLOB_DAT: ::libc::c_uint = 21;
pub const R_ARM_JUMP_SLOT: ::libc::c_uint = 22;
pub const R_ARM_RELATIVE: ::libc::c_uint = 23;
pub const R_ARM_GOTOFF: ::libc::c_uint = 24;
pub const R_ARM_GOTPC: ::libc::c_uint = 25;
pub const R_ARM_GOT32: ::libc::c_uint = 26;
pub const R_ARM_PLT32: ::libc::c_uint = 27;
pub const R_ARM_CALL: ::libc::c_uint = 28;
pub const R_ARM_JUMP24: ::libc::c_uint = 29;
pub const R_ARM_THM_JUMP24: ::libc::c_uint = 30;
pub const R_ARM_BASE_ABS: ::libc::c_uint = 31;
pub const R_ARM_ALU_PCREL_7_0: ::libc::c_uint = 32;
pub const R_ARM_ALU_PCREL_15_8: ::libc::c_uint = 33;
pub const R_ARM_ALU_PCREL_23_15: ::libc::c_uint = 34;
pub const R_ARM_LDR_SBREL_11_0: ::libc::c_uint = 35;
pub const R_ARM_ALU_SBREL_19_12: ::libc::c_uint = 36;
pub const R_ARM_ALU_SBREL_27_20: ::libc::c_uint = 37;
pub const R_ARM_TARGET1: ::libc::c_uint = 38;
pub const R_ARM_SBREL31: ::libc::c_uint = 39;
pub const R_ARM_V4BX: ::libc::c_uint = 40;
pub const R_ARM_TARGET2: ::libc::c_uint = 41;
pub const R_ARM_PREL31: ::libc::c_uint = 42;
pub const R_ARM_MOVW_ABS_NC: ::libc::c_uint = 43;
pub const R_ARM_MOVT_ABS: ::libc::c_uint = 44;
pub const R_ARM_MOVW_PREL_NC: ::libc::c_uint = 45;
pub const R_ARM_MOVT_PREL: ::libc::c_uint = 46;
pub const R_ARM_THM_MOVW_ABS_NC: ::libc::c_uint = 47;
pub const R_ARM_THM_MOVT_ABS: ::libc::c_uint = 48;
pub const R_ARM_THM_MOVW_PREL_NC: ::libc::c_uint = 49;
pub const R_ARM_THM_MOVT_PREL: ::libc::c_uint = 50;
pub const R_ARM_THM_JUMP19: ::libc::c_uint = 51;
pub const R_ARM_THM_JUMP6: ::libc::c_uint = 52;
pub const R_ARM_THM_ALU_PREL_11_0: ::libc::c_uint = 53;
pub const R_ARM_THM_PC12: ::libc::c_uint = 54;
pub const R_ARM_ABS32_NOI: ::libc::c_uint = 55;
pub const R_ARM_REL32_NOI: ::libc::c_uint = 56;
pub const R_ARM_ALU_PC_G0_NC: ::libc::c_uint = 57;
pub const R_ARM_ALU_PC_G0: ::libc::c_uint = 58;
pub const R_ARM_ALU_PC_G1_NC: ::libc::c_uint = 59;
pub const R_ARM_ALU_PC_G1: ::libc::c_uint = 60;
pub const R_ARM_ALU_PC_G2: ::libc::c_uint = 61;
pub const R_ARM_LDR_PC_G1: ::libc::c_uint = 62;
pub const R_ARM_LDR_PC_G2: ::libc::c_uint = 63;
pub const R_ARM_LDRS_PC_G0: ::libc::c_uint = 64;
pub const R_ARM_LDRS_PC_G1: ::libc::c_uint = 65;
pub const R_ARM_LDRS_PC_G2: ::libc::c_uint = 66;
pub const R_ARM_LDC_PC_G0: ::libc::c_uint = 67;
pub const R_ARM_LDC_PC_G1: ::libc::c_uint = 68;
pub const R_ARM_LDC_PC_G2: ::libc::c_uint = 69;
pub const R_ARM_ALU_SB_G0_NC: ::libc::c_uint = 70;
pub const R_ARM_ALU_SB_G0: ::libc::c_uint = 71;
pub const R_ARM_ALU_SB_G1_NC: ::libc::c_uint = 72;
pub const R_ARM_ALU_SB_G1: ::libc::c_uint = 73;
pub const R_ARM_ALU_SB_G2: ::libc::c_uint = 74;
pub const R_ARM_LDR_SB_G0: ::libc::c_uint = 75;
pub const R_ARM_LDR_SB_G1: ::libc::c_uint = 76;
pub const R_ARM_LDR_SB_G2: ::libc::c_uint = 77;
pub const R_ARM_LDRS_SB_G0: ::libc::c_uint = 78;
pub const R_ARM_LDRS_SB_G1: ::libc::c_uint = 79;
pub const R_ARM_LDRS_SB_G2: ::libc::c_uint = 80;
pub const R_ARM_LDC_SB_G0: ::libc::c_uint = 81;
pub const R_ARM_LDC_SB_G1: ::libc::c_uint = 82;
pub const R_ARM_LDC_SB_G2: ::libc::c_uint = 83;
pub const R_ARM_MOVW_BREL_NC: ::libc::c_uint = 84;
pub const R_ARM_MOVT_BREL: ::libc::c_uint = 85;
pub const R_ARM_MOVW_BREL: ::libc::c_uint = 86;
pub const R_ARM_THM_MOVW_BREL_NC: ::libc::c_uint = 87;
pub const R_ARM_THM_MOVT_BREL: ::libc::c_uint = 88;
pub const R_ARM_THM_MOVW_BREL: ::libc::c_uint = 89;
pub const R_ARM_TLS_GOTDESC: ::libc::c_uint = 90;
pub const R_ARM_TLS_CALL: ::libc::c_uint = 91;
pub const R_ARM_TLS_DESCSEQ: ::libc::c_uint = 92;
pub const R_ARM_THM_TLS_CALL: ::libc::c_uint = 93;
pub const R_ARM_PLT32_ABS: ::libc::c_uint = 94;
pub const R_ARM_GOT_ABS: ::libc::c_uint = 95;
pub const R_ARM_GOT_PREL: ::libc::c_uint = 96;
pub const R_ARM_GOT_BREL12: ::libc::c_uint = 97;
pub const R_ARM_GOTOFF12: ::libc::c_uint = 98;
pub const R_ARM_GOTRELAX: ::libc::c_uint = 99;
pub const R_ARM_GNU_VTENTRY: ::libc::c_uint = 100;
pub const R_ARM_GNU_VTINHERIT: ::libc::c_uint = 101;
pub const R_ARM_THM_PC11: ::libc::c_uint = 102;
pub const R_ARM_THM_PC9: ::libc::c_uint = 103;
pub const R_ARM_TLS_GD32: ::libc::c_uint = 104;
pub const R_ARM_TLS_LDM32: ::libc::c_uint = 105;
pub const R_ARM_TLS_LDO32: ::libc::c_uint = 106;
pub const R_ARM_TLS_IE32: ::libc::c_uint = 107;
pub const R_ARM_TLS_LE32: ::libc::c_uint = 108;
pub const R_ARM_TLS_LDO12: ::libc::c_uint = 109;
pub const R_ARM_TLS_LE12: ::libc::c_uint = 110;
pub const R_ARM_TLS_IE12GP: ::libc::c_uint = 111;
pub const R_ARM_ME_TOO: ::libc::c_uint = 128;
pub const R_ARM_THM_TLS_DESCSEQ: ::libc::c_uint = 129;
pub const R_ARM_THM_TLS_DESCSEQ16: ::libc::c_uint = 129;
pub const R_ARM_THM_TLS_DESCSEQ32: ::libc::c_uint = 130;
pub const R_ARM_THM_GOT_BREL12: ::libc::c_uint = 131;
pub const R_ARM_IRELATIVE: ::libc::c_uint = 160;
pub const R_ARM_RXPC25: ::libc::c_uint = 249;
pub const R_ARM_RSBREL32: ::libc::c_uint = 250;
pub const R_ARM_THM_RPC22: ::libc::c_uint = 251;
pub const R_ARM_RREL32: ::libc::c_uint = 252;
pub const R_ARM_RABS22: ::libc::c_uint = 253;
pub const R_ARM_RPC24: ::libc::c_uint = 254;
pub const R_ARM_RBASE: ::libc::c_uint = 255;
pub const R_ARM_NUM: ::libc::c_uint = 256;
pub const EF_IA_64_MASKOS: ::libc::c_uint = 15;
pub const EF_IA_64_ABI64: ::libc::c_uint = 16;
pub const EF_IA_64_ARCH: ::libc::c_uint = 4278190080;
pub const PT_IA_64_ARCHEXT: ::libc::c_uint = 1879048192;
pub const PT_IA_64_UNWIND: ::libc::c_uint = 1879048193;
pub const PT_IA_64_HP_OPT_ANOT: ::libc::c_uint = 1610612754;
pub const PT_IA_64_HP_HSL_ANOT: ::libc::c_uint = 1610612755;
pub const PT_IA_64_HP_STACK: ::libc::c_uint = 1610612756;
pub const PF_IA_64_NORECOV: ::libc::c_uint = 2147483648;
pub const SHT_IA_64_EXT: ::libc::c_uint = 1879048192;
pub const SHT_IA_64_UNWIND: ::libc::c_uint = 1879048193;
pub const SHF_IA_64_SHORT: ::libc::c_uint = 268435456;
pub const SHF_IA_64_NORECOV: ::libc::c_uint = 536870912;
pub const DT_IA_64_PLT_RESERVE: ::libc::c_uint = 1879048192;
pub const DT_IA_64_NUM: ::libc::c_uint = 1;
pub const R_IA64_NONE: ::libc::c_uint = 0;
pub const R_IA64_IMM14: ::libc::c_uint = 33;
pub const R_IA64_IMM22: ::libc::c_uint = 34;
pub const R_IA64_IMM64: ::libc::c_uint = 35;
pub const R_IA64_DIR32MSB: ::libc::c_uint = 36;
pub const R_IA64_DIR32LSB: ::libc::c_uint = 37;
pub const R_IA64_DIR64MSB: ::libc::c_uint = 38;
pub const R_IA64_DIR64LSB: ::libc::c_uint = 39;
pub const R_IA64_GPREL22: ::libc::c_uint = 42;
pub const R_IA64_GPREL64I: ::libc::c_uint = 43;
pub const R_IA64_GPREL32MSB: ::libc::c_uint = 44;
pub const R_IA64_GPREL32LSB: ::libc::c_uint = 45;
pub const R_IA64_GPREL64MSB: ::libc::c_uint = 46;
pub const R_IA64_GPREL64LSB: ::libc::c_uint = 47;
pub const R_IA64_LTOFF22: ::libc::c_uint = 50;
pub const R_IA64_LTOFF64I: ::libc::c_uint = 51;
pub const R_IA64_PLTOFF22: ::libc::c_uint = 58;
pub const R_IA64_PLTOFF64I: ::libc::c_uint = 59;
pub const R_IA64_PLTOFF64MSB: ::libc::c_uint = 62;
pub const R_IA64_PLTOFF64LSB: ::libc::c_uint = 63;
pub const R_IA64_FPTR64I: ::libc::c_uint = 67;
pub const R_IA64_FPTR32MSB: ::libc::c_uint = 68;
pub const R_IA64_FPTR32LSB: ::libc::c_uint = 69;
pub const R_IA64_FPTR64MSB: ::libc::c_uint = 70;
pub const R_IA64_FPTR64LSB: ::libc::c_uint = 71;
pub const R_IA64_PCREL60B: ::libc::c_uint = 72;
pub const R_IA64_PCREL21B: ::libc::c_uint = 73;
pub const R_IA64_PCREL21M: ::libc::c_uint = 74;
pub const R_IA64_PCREL21F: ::libc::c_uint = 75;
pub const R_IA64_PCREL32MSB: ::libc::c_uint = 76;
pub const R_IA64_PCREL32LSB: ::libc::c_uint = 77;
pub const R_IA64_PCREL64MSB: ::libc::c_uint = 78;
pub const R_IA64_PCREL64LSB: ::libc::c_uint = 79;
pub const R_IA64_LTOFF_FPTR22: ::libc::c_uint = 82;
pub const R_IA64_LTOFF_FPTR64I: ::libc::c_uint = 83;
pub const R_IA64_LTOFF_FPTR32MSB: ::libc::c_uint = 84;
pub const R_IA64_LTOFF_FPTR32LSB: ::libc::c_uint = 85;
pub const R_IA64_LTOFF_FPTR64MSB: ::libc::c_uint = 86;
pub const R_IA64_LTOFF_FPTR64LSB: ::libc::c_uint = 87;
pub const R_IA64_SEGREL32MSB: ::libc::c_uint = 92;
pub const R_IA64_SEGREL32LSB: ::libc::c_uint = 93;
pub const R_IA64_SEGREL64MSB: ::libc::c_uint = 94;
pub const R_IA64_SEGREL64LSB: ::libc::c_uint = 95;
pub const R_IA64_SECREL32MSB: ::libc::c_uint = 100;
pub const R_IA64_SECREL32LSB: ::libc::c_uint = 101;
pub const R_IA64_SECREL64MSB: ::libc::c_uint = 102;
pub const R_IA64_SECREL64LSB: ::libc::c_uint = 103;
pub const R_IA64_REL32MSB: ::libc::c_uint = 108;
pub const R_IA64_REL32LSB: ::libc::c_uint = 109;
pub const R_IA64_REL64MSB: ::libc::c_uint = 110;
pub const R_IA64_REL64LSB: ::libc::c_uint = 111;
pub const R_IA64_LTV32MSB: ::libc::c_uint = 116;
pub const R_IA64_LTV32LSB: ::libc::c_uint = 117;
pub const R_IA64_LTV64MSB: ::libc::c_uint = 118;
pub const R_IA64_LTV64LSB: ::libc::c_uint = 119;
pub const R_IA64_PCREL21BI: ::libc::c_uint = 121;
pub const R_IA64_PCREL22: ::libc::c_uint = 122;
pub const R_IA64_PCREL64I: ::libc::c_uint = 123;
pub const R_IA64_IPLTMSB: ::libc::c_uint = 128;
pub const R_IA64_IPLTLSB: ::libc::c_uint = 129;
pub const R_IA64_COPY: ::libc::c_uint = 132;
pub const R_IA64_SUB: ::libc::c_uint = 133;
pub const R_IA64_LTOFF22X: ::libc::c_uint = 134;
pub const R_IA64_LDXMOV: ::libc::c_uint = 135;
pub const R_IA64_TPREL14: ::libc::c_uint = 145;
pub const R_IA64_TPREL22: ::libc::c_uint = 146;
pub const R_IA64_TPREL64I: ::libc::c_uint = 147;
pub const R_IA64_TPREL64MSB: ::libc::c_uint = 150;
pub const R_IA64_TPREL64LSB: ::libc::c_uint = 151;
pub const R_IA64_LTOFF_TPREL22: ::libc::c_uint = 154;
pub const R_IA64_DTPMOD64MSB: ::libc::c_uint = 166;
pub const R_IA64_DTPMOD64LSB: ::libc::c_uint = 167;
pub const R_IA64_LTOFF_DTPMOD22: ::libc::c_uint = 170;
pub const R_IA64_DTPREL14: ::libc::c_uint = 177;
pub const R_IA64_DTPREL22: ::libc::c_uint = 178;
pub const R_IA64_DTPREL64I: ::libc::c_uint = 179;
pub const R_IA64_DTPREL32MSB: ::libc::c_uint = 180;
pub const R_IA64_DTPREL32LSB: ::libc::c_uint = 181;
pub const R_IA64_DTPREL64MSB: ::libc::c_uint = 182;
pub const R_IA64_DTPREL64LSB: ::libc::c_uint = 183;
pub const R_IA64_LTOFF_DTPREL22: ::libc::c_uint = 186;
pub const EF_SH_MACH_MASK: ::libc::c_uint = 31;
pub const EF_SH_UNKNOWN: ::libc::c_uint = 0;
pub const EF_SH1: ::libc::c_uint = 1;
pub const EF_SH2: ::libc::c_uint = 2;
pub const EF_SH3: ::libc::c_uint = 3;
pub const EF_SH_DSP: ::libc::c_uint = 4;
pub const EF_SH3_DSP: ::libc::c_uint = 5;
pub const EF_SH4AL_DSP: ::libc::c_uint = 6;
pub const EF_SH3E: ::libc::c_uint = 8;
pub const EF_SH4: ::libc::c_uint = 9;
pub const EF_SH2E: ::libc::c_uint = 11;
pub const EF_SH4A: ::libc::c_uint = 12;
pub const EF_SH2A: ::libc::c_uint = 13;
pub const EF_SH4_NOFPU: ::libc::c_uint = 16;
pub const EF_SH4A_NOFPU: ::libc::c_uint = 17;
pub const EF_SH4_NOMMU_NOFPU: ::libc::c_uint = 18;
pub const EF_SH2A_NOFPU: ::libc::c_uint = 19;
pub const EF_SH3_NOMMU: ::libc::c_uint = 20;
pub const EF_SH2A_SH4_NOFPU: ::libc::c_uint = 21;
pub const EF_SH2A_SH3_NOFPU: ::libc::c_uint = 22;
pub const EF_SH2A_SH4: ::libc::c_uint = 23;
pub const EF_SH2A_SH3E: ::libc::c_uint = 24;
pub const R_SH_NONE: ::libc::c_uint = 0;
pub const R_SH_DIR32: ::libc::c_uint = 1;
pub const R_SH_REL32: ::libc::c_uint = 2;
pub const R_SH_DIR8WPN: ::libc::c_uint = 3;
pub const R_SH_IND12W: ::libc::c_uint = 4;
pub const R_SH_DIR8WPL: ::libc::c_uint = 5;
pub const R_SH_DIR8WPZ: ::libc::c_uint = 6;
pub const R_SH_DIR8BP: ::libc::c_uint = 7;
pub const R_SH_DIR8W: ::libc::c_uint = 8;
pub const R_SH_DIR8L: ::libc::c_uint = 9;
pub const R_SH_SWITCH16: ::libc::c_uint = 25;
pub const R_SH_SWITCH32: ::libc::c_uint = 26;
pub const R_SH_USES: ::libc::c_uint = 27;
pub const R_SH_COUNT: ::libc::c_uint = 28;
pub const R_SH_ALIGN: ::libc::c_uint = 29;
pub const R_SH_CODE: ::libc::c_uint = 30;
pub const R_SH_DATA: ::libc::c_uint = 31;
pub const R_SH_LABEL: ::libc::c_uint = 32;
pub const R_SH_SWITCH8: ::libc::c_uint = 33;
pub const R_SH_GNU_VTINHERIT: ::libc::c_uint = 34;
pub const R_SH_GNU_VTENTRY: ::libc::c_uint = 35;
pub const R_SH_TLS_GD_32: ::libc::c_uint = 144;
pub const R_SH_TLS_LD_32: ::libc::c_uint = 145;
pub const R_SH_TLS_LDO_32: ::libc::c_uint = 146;
pub const R_SH_TLS_IE_32: ::libc::c_uint = 147;
pub const R_SH_TLS_LE_32: ::libc::c_uint = 148;
pub const R_SH_TLS_DTPMOD32: ::libc::c_uint = 149;
pub const R_SH_TLS_DTPOFF32: ::libc::c_uint = 150;
pub const R_SH_TLS_TPOFF32: ::libc::c_uint = 151;
pub const R_SH_GOT32: ::libc::c_uint = 160;
pub const R_SH_PLT32: ::libc::c_uint = 161;
pub const R_SH_COPY: ::libc::c_uint = 162;
pub const R_SH_GLOB_DAT: ::libc::c_uint = 163;
pub const R_SH_JMP_SLOT: ::libc::c_uint = 164;
pub const R_SH_RELATIVE: ::libc::c_uint = 165;
pub const R_SH_GOTOFF: ::libc::c_uint = 166;
pub const R_SH_GOTPC: ::libc::c_uint = 167;
pub const R_SH_NUM: ::libc::c_uint = 256;
pub const EF_S390_HIGH_GPRS: ::libc::c_uint = 1;
pub const R_390_NONE: ::libc::c_uint = 0;
pub const R_390_8: ::libc::c_uint = 1;
pub const R_390_12: ::libc::c_uint = 2;
pub const R_390_16: ::libc::c_uint = 3;
pub const R_390_32: ::libc::c_uint = 4;
pub const R_390_PC32: ::libc::c_uint = 5;
pub const R_390_GOT12: ::libc::c_uint = 6;
pub const R_390_GOT32: ::libc::c_uint = 7;
pub const R_390_PLT32: ::libc::c_uint = 8;
pub const R_390_COPY: ::libc::c_uint = 9;
pub const R_390_GLOB_DAT: ::libc::c_uint = 10;
pub const R_390_JMP_SLOT: ::libc::c_uint = 11;
pub const R_390_RELATIVE: ::libc::c_uint = 12;
pub const R_390_GOTOFF32: ::libc::c_uint = 13;
pub const R_390_GOTPC: ::libc::c_uint = 14;
pub const R_390_GOT16: ::libc::c_uint = 15;
pub const R_390_PC16: ::libc::c_uint = 16;
pub const R_390_PC16DBL: ::libc::c_uint = 17;
pub const R_390_PLT16DBL: ::libc::c_uint = 18;
pub const R_390_PC32DBL: ::libc::c_uint = 19;
pub const R_390_PLT32DBL: ::libc::c_uint = 20;
pub const R_390_GOTPCDBL: ::libc::c_uint = 21;
pub const R_390_64: ::libc::c_uint = 22;
pub const R_390_PC64: ::libc::c_uint = 23;
pub const R_390_GOT64: ::libc::c_uint = 24;
pub const R_390_PLT64: ::libc::c_uint = 25;
pub const R_390_GOTENT: ::libc::c_uint = 26;
pub const R_390_GOTOFF16: ::libc::c_uint = 27;
pub const R_390_GOTOFF64: ::libc::c_uint = 28;
pub const R_390_GOTPLT12: ::libc::c_uint = 29;
pub const R_390_GOTPLT16: ::libc::c_uint = 30;
pub const R_390_GOTPLT32: ::libc::c_uint = 31;
pub const R_390_GOTPLT64: ::libc::c_uint = 32;
pub const R_390_GOTPLTENT: ::libc::c_uint = 33;
pub const R_390_PLTOFF16: ::libc::c_uint = 34;
pub const R_390_PLTOFF32: ::libc::c_uint = 35;
pub const R_390_PLTOFF64: ::libc::c_uint = 36;
pub const R_390_TLS_LOAD: ::libc::c_uint = 37;
pub const R_390_TLS_GDCALL: ::libc::c_uint = 38;
pub const R_390_TLS_LDCALL: ::libc::c_uint = 39;
pub const R_390_TLS_GD32: ::libc::c_uint = 40;
pub const R_390_TLS_GD64: ::libc::c_uint = 41;
pub const R_390_TLS_GOTIE12: ::libc::c_uint = 42;
pub const R_390_TLS_GOTIE32: ::libc::c_uint = 43;
pub const R_390_TLS_GOTIE64: ::libc::c_uint = 44;
pub const R_390_TLS_LDM32: ::libc::c_uint = 45;
pub const R_390_TLS_LDM64: ::libc::c_uint = 46;
pub const R_390_TLS_IE32: ::libc::c_uint = 47;
pub const R_390_TLS_IE64: ::libc::c_uint = 48;
pub const R_390_TLS_IEENT: ::libc::c_uint = 49;
pub const R_390_TLS_LE32: ::libc::c_uint = 50;
pub const R_390_TLS_LE64: ::libc::c_uint = 51;
pub const R_390_TLS_LDO32: ::libc::c_uint = 52;
pub const R_390_TLS_LDO64: ::libc::c_uint = 53;
pub const R_390_TLS_DTPMOD: ::libc::c_uint = 54;
pub const R_390_TLS_DTPOFF: ::libc::c_uint = 55;
pub const R_390_TLS_TPOFF: ::libc::c_uint = 56;
pub const R_390_20: ::libc::c_uint = 57;
pub const R_390_GOT20: ::libc::c_uint = 58;
pub const R_390_GOTPLT20: ::libc::c_uint = 59;
pub const R_390_TLS_GOTIE20: ::libc::c_uint = 60;
pub const R_390_IRELATIVE: ::libc::c_uint = 61;
pub const R_390_NUM: ::libc::c_uint = 62;
pub const R_CRIS_NONE: ::libc::c_uint = 0;
pub const R_CRIS_8: ::libc::c_uint = 1;
pub const R_CRIS_16: ::libc::c_uint = 2;
pub const R_CRIS_32: ::libc::c_uint = 3;
pub const R_CRIS_8_PCREL: ::libc::c_uint = 4;
pub const R_CRIS_16_PCREL: ::libc::c_uint = 5;
pub const R_CRIS_32_PCREL: ::libc::c_uint = 6;
pub const R_CRIS_GNU_VTINHERIT: ::libc::c_uint = 7;
pub const R_CRIS_GNU_VTENTRY: ::libc::c_uint = 8;
pub const R_CRIS_COPY: ::libc::c_uint = 9;
pub const R_CRIS_GLOB_DAT: ::libc::c_uint = 10;
pub const R_CRIS_JUMP_SLOT: ::libc::c_uint = 11;
pub const R_CRIS_RELATIVE: ::libc::c_uint = 12;
pub const R_CRIS_16_GOT: ::libc::c_uint = 13;
pub const R_CRIS_32_GOT: ::libc::c_uint = 14;
pub const R_CRIS_16_GOTPLT: ::libc::c_uint = 15;
pub const R_CRIS_32_GOTPLT: ::libc::c_uint = 16;
pub const R_CRIS_32_GOTREL: ::libc::c_uint = 17;
pub const R_CRIS_32_PLT_GOTREL: ::libc::c_uint = 18;
pub const R_CRIS_32_PLT_PCREL: ::libc::c_uint = 19;
pub const R_CRIS_NUM: ::libc::c_uint = 20;
pub const R_X86_64_NONE: ::libc::c_uint = 0;
pub const R_X86_64_64: ::libc::c_uint = 1;
pub const R_X86_64_PC32: ::libc::c_uint = 2;
pub const R_X86_64_GOT32: ::libc::c_uint = 3;
pub const R_X86_64_PLT32: ::libc::c_uint = 4;
pub const R_X86_64_COPY: ::libc::c_uint = 5;
pub const R_X86_64_GLOB_DAT: ::libc::c_uint = 6;
pub const R_X86_64_JUMP_SLOT: ::libc::c_uint = 7;
pub const R_X86_64_RELATIVE: ::libc::c_uint = 8;
pub const R_X86_64_GOTPCREL: ::libc::c_uint = 9;
pub const R_X86_64_32: ::libc::c_uint = 10;
pub const R_X86_64_32S: ::libc::c_uint = 11;
pub const R_X86_64_16: ::libc::c_uint = 12;
pub const R_X86_64_PC16: ::libc::c_uint = 13;
pub const R_X86_64_8: ::libc::c_uint = 14;
pub const R_X86_64_PC8: ::libc::c_uint = 15;
pub const R_X86_64_DTPMOD64: ::libc::c_uint = 16;
pub const R_X86_64_DTPOFF64: ::libc::c_uint = 17;
pub const R_X86_64_TPOFF64: ::libc::c_uint = 18;
pub const R_X86_64_TLSGD: ::libc::c_uint = 19;
pub const R_X86_64_TLSLD: ::libc::c_uint = 20;
pub const R_X86_64_DTPOFF32: ::libc::c_uint = 21;
pub const R_X86_64_GOTTPOFF: ::libc::c_uint = 22;
pub const R_X86_64_TPOFF32: ::libc::c_uint = 23;
pub const R_X86_64_PC64: ::libc::c_uint = 24;
pub const R_X86_64_GOTOFF64: ::libc::c_uint = 25;
pub const R_X86_64_GOTPC32: ::libc::c_uint = 26;
pub const R_X86_64_GOT64: ::libc::c_uint = 27;
pub const R_X86_64_GOTPCREL64: ::libc::c_uint = 28;
pub const R_X86_64_GOTPC64: ::libc::c_uint = 29;
pub const R_X86_64_GOTPLT64: ::libc::c_uint = 30;
pub const R_X86_64_PLTOFF64: ::libc::c_uint = 31;
pub const R_X86_64_SIZE32: ::libc::c_uint = 32;
pub const R_X86_64_SIZE64: ::libc::c_uint = 33;
pub const R_X86_64_GOTPC32_TLSDESC: ::libc::c_uint = 34;
pub const R_X86_64_TLSDESC_CALL: ::libc::c_uint = 35;
pub const R_X86_64_TLSDESC: ::libc::c_uint = 36;
pub const R_X86_64_IRELATIVE: ::libc::c_uint = 37;
pub const R_X86_64_RELATIVE64: ::libc::c_uint = 38;
pub const R_X86_64_GOTPCRELX: ::libc::c_uint = 41;
pub const R_X86_64_REX_GOTPCRELX: ::libc::c_uint = 42;
pub const R_X86_64_NUM: ::libc::c_uint = 43;
pub const R_MN10300_NONE: ::libc::c_uint = 0;
pub const R_MN10300_32: ::libc::c_uint = 1;
pub const R_MN10300_16: ::libc::c_uint = 2;
pub const R_MN10300_8: ::libc::c_uint = 3;
pub const R_MN10300_PCREL32: ::libc::c_uint = 4;
pub const R_MN10300_PCREL16: ::libc::c_uint = 5;
pub const R_MN10300_PCREL8: ::libc::c_uint = 6;
pub const R_MN10300_GNU_VTINHERIT: ::libc::c_uint = 7;
pub const R_MN10300_GNU_VTENTRY: ::libc::c_uint = 8;
pub const R_MN10300_24: ::libc::c_uint = 9;
pub const R_MN10300_GOTPC32: ::libc::c_uint = 10;
pub const R_MN10300_GOTPC16: ::libc::c_uint = 11;
pub const R_MN10300_GOTOFF32: ::libc::c_uint = 12;
pub const R_MN10300_GOTOFF24: ::libc::c_uint = 13;
pub const R_MN10300_GOTOFF16: ::libc::c_uint = 14;
pub const R_MN10300_PLT32: ::libc::c_uint = 15;
pub const R_MN10300_PLT16: ::libc::c_uint = 16;
pub const R_MN10300_GOT32: ::libc::c_uint = 17;
pub const R_MN10300_GOT24: ::libc::c_uint = 18;
pub const R_MN10300_GOT16: ::libc::c_uint = 19;
pub const R_MN10300_COPY: ::libc::c_uint = 20;
pub const R_MN10300_GLOB_DAT: ::libc::c_uint = 21;
pub const R_MN10300_JMP_SLOT: ::libc::c_uint = 22;
pub const R_MN10300_RELATIVE: ::libc::c_uint = 23;
pub const R_MN10300_TLS_GD: ::libc::c_uint = 24;
pub const R_MN10300_TLS_LD: ::libc::c_uint = 25;
pub const R_MN10300_TLS_LDO: ::libc::c_uint = 26;
pub const R_MN10300_TLS_GOTIE: ::libc::c_uint = 27;
pub const R_MN10300_TLS_IE: ::libc::c_uint = 28;
pub const R_MN10300_TLS_LE: ::libc::c_uint = 29;
pub const R_MN10300_TLS_DTPMOD: ::libc::c_uint = 30;
pub const R_MN10300_TLS_DTPOFF: ::libc::c_uint = 31;
pub const R_MN10300_TLS_TPOFF: ::libc::c_uint = 32;
pub const R_MN10300_SYM_DIFF: ::libc::c_uint = 33;
pub const R_MN10300_ALIGN: ::libc::c_uint = 34;
pub const R_MN10300_NUM: ::libc::c_uint = 35;
pub const R_M32R_NONE: ::libc::c_uint = 0;
pub const R_M32R_16: ::libc::c_uint = 1;
pub const R_M32R_32: ::libc::c_uint = 2;
pub const R_M32R_24: ::libc::c_uint = 3;
pub const R_M32R_10_PCREL: ::libc::c_uint = 4;
pub const R_M32R_18_PCREL: ::libc::c_uint = 5;
pub const R_M32R_26_PCREL: ::libc::c_uint = 6;
pub const R_M32R_HI16_ULO: ::libc::c_uint = 7;
pub const R_M32R_HI16_SLO: ::libc::c_uint = 8;
pub const R_M32R_LO16: ::libc::c_uint = 9;
pub const R_M32R_SDA16: ::libc::c_uint = 10;
pub const R_M32R_GNU_VTINHERIT: ::libc::c_uint = 11;
pub const R_M32R_GNU_VTENTRY: ::libc::c_uint = 12;
pub const R_M32R_16_RELA: ::libc::c_uint = 33;
pub const R_M32R_32_RELA: ::libc::c_uint = 34;
pub const R_M32R_24_RELA: ::libc::c_uint = 35;
pub const R_M32R_10_PCREL_RELA: ::libc::c_uint = 36;
pub const R_M32R_18_PCREL_RELA: ::libc::c_uint = 37;
pub const R_M32R_26_PCREL_RELA: ::libc::c_uint = 38;
pub const R_M32R_HI16_ULO_RELA: ::libc::c_uint = 39;
pub const R_M32R_HI16_SLO_RELA: ::libc::c_uint = 40;
pub const R_M32R_LO16_RELA: ::libc::c_uint = 41;
pub const R_M32R_SDA16_RELA: ::libc::c_uint = 42;
pub const R_M32R_RELA_GNU_VTINHERIT: ::libc::c_uint = 43;
pub const R_M32R_RELA_GNU_VTENTRY: ::libc::c_uint = 44;
pub const R_M32R_REL32: ::libc::c_uint = 45;
pub const R_M32R_GOT24: ::libc::c_uint = 48;
pub const R_M32R_26_PLTREL: ::libc::c_uint = 49;
pub const R_M32R_COPY: ::libc::c_uint = 50;
pub const R_M32R_GLOB_DAT: ::libc::c_uint = 51;
pub const R_M32R_JMP_SLOT: ::libc::c_uint = 52;
pub const R_M32R_RELATIVE: ::libc::c_uint = 53;
pub const R_M32R_GOTOFF: ::libc::c_uint = 54;
pub const R_M32R_GOTPC24: ::libc::c_uint = 55;
pub const R_M32R_GOT16_HI_ULO: ::libc::c_uint = 56;
pub const R_M32R_GOT16_HI_SLO: ::libc::c_uint = 57;
pub const R_M32R_GOT16_LO: ::libc::c_uint = 58;
pub const R_M32R_GOTPC_HI_ULO: ::libc::c_uint = 59;
pub const R_M32R_GOTPC_HI_SLO: ::libc::c_uint = 60;
pub const R_M32R_GOTPC_LO: ::libc::c_uint = 61;
pub const R_M32R_GOTOFF_HI_ULO: ::libc::c_uint = 62;
pub const R_M32R_GOTOFF_HI_SLO: ::libc::c_uint = 63;
pub const R_M32R_GOTOFF_LO: ::libc::c_uint = 64;
pub const R_M32R_NUM: ::libc::c_uint = 256;
pub const R_MICROBLAZE_NONE: ::libc::c_uint = 0;
pub const R_MICROBLAZE_32: ::libc::c_uint = 1;
pub const R_MICROBLAZE_32_PCREL: ::libc::c_uint = 2;
pub const R_MICROBLAZE_64_PCREL: ::libc::c_uint = 3;
pub const R_MICROBLAZE_32_PCREL_LO: ::libc::c_uint = 4;
pub const R_MICROBLAZE_64: ::libc::c_uint = 5;
pub const R_MICROBLAZE_32_LO: ::libc::c_uint = 6;
pub const R_MICROBLAZE_SRO32: ::libc::c_uint = 7;
pub const R_MICROBLAZE_SRW32: ::libc::c_uint = 8;
pub const R_MICROBLAZE_64_NONE: ::libc::c_uint = 9;
pub const R_MICROBLAZE_32_SYM_OP_SYM: ::libc::c_uint = 10;
pub const R_MICROBLAZE_GNU_VTINHERIT: ::libc::c_uint = 11;
pub const R_MICROBLAZE_GNU_VTENTRY: ::libc::c_uint = 12;
pub const R_MICROBLAZE_GOTPC_64: ::libc::c_uint = 13;
pub const R_MICROBLAZE_GOT_64: ::libc::c_uint = 14;
pub const R_MICROBLAZE_PLT_64: ::libc::c_uint = 15;
pub const R_MICROBLAZE_REL: ::libc::c_uint = 16;
pub const R_MICROBLAZE_JUMP_SLOT: ::libc::c_uint = 17;
pub const R_MICROBLAZE_GLOB_DAT: ::libc::c_uint = 18;
pub const R_MICROBLAZE_GOTOFF_64: ::libc::c_uint = 19;
pub const R_MICROBLAZE_GOTOFF_32: ::libc::c_uint = 20;
pub const R_MICROBLAZE_COPY: ::libc::c_uint = 21;
pub const R_MICROBLAZE_TLS: ::libc::c_uint = 22;
pub const R_MICROBLAZE_TLSGD: ::libc::c_uint = 23;
pub const R_MICROBLAZE_TLSLD: ::libc::c_uint = 24;
pub const R_MICROBLAZE_TLSDTPMOD32: ::libc::c_uint = 25;
pub const R_MICROBLAZE_TLSDTPREL32: ::libc::c_uint = 26;
pub const R_MICROBLAZE_TLSDTPREL64: ::libc::c_uint = 27;
pub const R_MICROBLAZE_TLSGOTTPREL32: ::libc::c_uint = 28;
pub const R_MICROBLAZE_TLSTPREL32: ::libc::c_uint = 29;
pub const DT_NIOS2_GP: ::libc::c_uint = 1879048194;
pub const R_NIOS2_NONE: ::libc::c_uint = 0;
pub const R_NIOS2_S16: ::libc::c_uint = 1;
pub const R_NIOS2_U16: ::libc::c_uint = 2;
pub const R_NIOS2_PCREL16: ::libc::c_uint = 3;
pub const R_NIOS2_CALL26: ::libc::c_uint = 4;
pub const R_NIOS2_IMM5: ::libc::c_uint = 5;
pub const R_NIOS2_CACHE_OPX: ::libc::c_uint = 6;
pub const R_NIOS2_IMM6: ::libc::c_uint = 7;
pub const R_NIOS2_IMM8: ::libc::c_uint = 8;
pub const R_NIOS2_HI16: ::libc::c_uint = 9;
pub const R_NIOS2_LO16: ::libc::c_uint = 10;
pub const R_NIOS2_HIADJ16: ::libc::c_uint = 11;
pub const R_NIOS2_BFD_RELOC_32: ::libc::c_uint = 12;
pub const R_NIOS2_BFD_RELOC_16: ::libc::c_uint = 13;
pub const R_NIOS2_BFD_RELOC_8: ::libc::c_uint = 14;
pub const R_NIOS2_GPREL: ::libc::c_uint = 15;
pub const R_NIOS2_GNU_VTINHERIT: ::libc::c_uint = 16;
pub const R_NIOS2_GNU_VTENTRY: ::libc::c_uint = 17;
pub const R_NIOS2_UJMP: ::libc::c_uint = 18;
pub const R_NIOS2_CJMP: ::libc::c_uint = 19;
pub const R_NIOS2_CALLR: ::libc::c_uint = 20;
pub const R_NIOS2_ALIGN: ::libc::c_uint = 21;
pub const R_NIOS2_GOT16: ::libc::c_uint = 22;
pub const R_NIOS2_CALL16: ::libc::c_uint = 23;
pub const R_NIOS2_GOTOFF_LO: ::libc::c_uint = 24;
pub const R_NIOS2_GOTOFF_HA: ::libc::c_uint = 25;
pub const R_NIOS2_PCREL_LO: ::libc::c_uint = 26;
pub const R_NIOS2_PCREL_HA: ::libc::c_uint = 27;
pub const R_NIOS2_TLS_GD16: ::libc::c_uint = 28;
pub const R_NIOS2_TLS_LDM16: ::libc::c_uint = 29;
pub const R_NIOS2_TLS_LDO16: ::libc::c_uint = 30;
pub const R_NIOS2_TLS_IE16: ::libc::c_uint = 31;
pub const R_NIOS2_TLS_LE16: ::libc::c_uint = 32;
pub const R_NIOS2_TLS_DTPMOD: ::libc::c_uint = 33;
pub const R_NIOS2_TLS_DTPREL: ::libc::c_uint = 34;
pub const R_NIOS2_TLS_TPREL: ::libc::c_uint = 35;
pub const R_NIOS2_COPY: ::libc::c_uint = 36;
pub const R_NIOS2_GLOB_DAT: ::libc::c_uint = 37;
pub const R_NIOS2_JUMP_SLOT: ::libc::c_uint = 38;
pub const R_NIOS2_RELATIVE: ::libc::c_uint = 39;
pub const R_NIOS2_GOTOFF: ::libc::c_uint = 40;
pub const R_NIOS2_CALL26_NOAT: ::libc::c_uint = 41;
pub const R_NIOS2_GOT_LO: ::libc::c_uint = 42;
pub const R_NIOS2_GOT_HA: ::libc::c_uint = 43;
pub const R_NIOS2_CALL_LO: ::libc::c_uint = 44;
pub const R_NIOS2_CALL_HA: ::libc::c_uint = 45;
pub const R_TILEPRO_NONE: ::libc::c_uint = 0;
pub const R_TILEPRO_32: ::libc::c_uint = 1;
pub const R_TILEPRO_16: ::libc::c_uint = 2;
pub const R_TILEPRO_8: ::libc::c_uint = 3;
pub const R_TILEPRO_32_PCREL: ::libc::c_uint = 4;
pub const R_TILEPRO_16_PCREL: ::libc::c_uint = 5;
pub const R_TILEPRO_8_PCREL: ::libc::c_uint = 6;
pub const R_TILEPRO_LO16: ::libc::c_uint = 7;
pub const R_TILEPRO_HI16: ::libc::c_uint = 8;
pub const R_TILEPRO_HA16: ::libc::c_uint = 9;
pub const R_TILEPRO_COPY: ::libc::c_uint = 10;
pub const R_TILEPRO_GLOB_DAT: ::libc::c_uint = 11;
pub const R_TILEPRO_JMP_SLOT: ::libc::c_uint = 12;
pub const R_TILEPRO_RELATIVE: ::libc::c_uint = 13;
pub const R_TILEPRO_BROFF_X1: ::libc::c_uint = 14;
pub const R_TILEPRO_JOFFLONG_X1: ::libc::c_uint = 15;
pub const R_TILEPRO_JOFFLONG_X1_PLT: ::libc::c_uint = 16;
pub const R_TILEPRO_IMM8_X0: ::libc::c_uint = 17;
pub const R_TILEPRO_IMM8_Y0: ::libc::c_uint = 18;
pub const R_TILEPRO_IMM8_X1: ::libc::c_uint = 19;
pub const R_TILEPRO_IMM8_Y1: ::libc::c_uint = 20;
pub const R_TILEPRO_MT_IMM15_X1: ::libc::c_uint = 21;
pub const R_TILEPRO_MF_IMM15_X1: ::libc::c_uint = 22;
pub const R_TILEPRO_IMM16_X0: ::libc::c_uint = 23;
pub const R_TILEPRO_IMM16_X1: ::libc::c_uint = 24;
pub const R_TILEPRO_IMM16_X0_LO: ::libc::c_uint = 25;
pub const R_TILEPRO_IMM16_X1_LO: ::libc::c_uint = 26;
pub const R_TILEPRO_IMM16_X0_HI: ::libc::c_uint = 27;
pub const R_TILEPRO_IMM16_X1_HI: ::libc::c_uint = 28;
pub const R_TILEPRO_IMM16_X0_HA: ::libc::c_uint = 29;
pub const R_TILEPRO_IMM16_X1_HA: ::libc::c_uint = 30;
pub const R_TILEPRO_IMM16_X0_PCREL: ::libc::c_uint = 31;
pub const R_TILEPRO_IMM16_X1_PCREL: ::libc::c_uint = 32;
pub const R_TILEPRO_IMM16_X0_LO_PCREL: ::libc::c_uint = 33;
pub const R_TILEPRO_IMM16_X1_LO_PCREL: ::libc::c_uint = 34;
pub const R_TILEPRO_IMM16_X0_HI_PCREL: ::libc::c_uint = 35;
pub const R_TILEPRO_IMM16_X1_HI_PCREL: ::libc::c_uint = 36;
pub const R_TILEPRO_IMM16_X0_HA_PCREL: ::libc::c_uint = 37;
pub const R_TILEPRO_IMM16_X1_HA_PCREL: ::libc::c_uint = 38;
pub const R_TILEPRO_IMM16_X0_GOT: ::libc::c_uint = 39;
pub const R_TILEPRO_IMM16_X1_GOT: ::libc::c_uint = 40;
pub const R_TILEPRO_IMM16_X0_GOT_LO: ::libc::c_uint = 41;
pub const R_TILEPRO_IMM16_X1_GOT_LO: ::libc::c_uint = 42;
pub const R_TILEPRO_IMM16_X0_GOT_HI: ::libc::c_uint = 43;
pub const R_TILEPRO_IMM16_X1_GOT_HI: ::libc::c_uint = 44;
pub const R_TILEPRO_IMM16_X0_GOT_HA: ::libc::c_uint = 45;
pub const R_TILEPRO_IMM16_X1_GOT_HA: ::libc::c_uint = 46;
pub const R_TILEPRO_MMSTART_X0: ::libc::c_uint = 47;
pub const R_TILEPRO_MMEND_X0: ::libc::c_uint = 48;
pub const R_TILEPRO_MMSTART_X1: ::libc::c_uint = 49;
pub const R_TILEPRO_MMEND_X1: ::libc::c_uint = 50;
pub const R_TILEPRO_SHAMT_X0: ::libc::c_uint = 51;
pub const R_TILEPRO_SHAMT_X1: ::libc::c_uint = 52;
pub const R_TILEPRO_SHAMT_Y0: ::libc::c_uint = 53;
pub const R_TILEPRO_SHAMT_Y1: ::libc::c_uint = 54;
pub const R_TILEPRO_DEST_IMM8_X1: ::libc::c_uint = 55;
pub const R_TILEPRO_TLS_GD_CALL: ::libc::c_uint = 60;
pub const R_TILEPRO_IMM8_X0_TLS_GD_ADD: ::libc::c_uint = 61;
pub const R_TILEPRO_IMM8_X1_TLS_GD_ADD: ::libc::c_uint = 62;
pub const R_TILEPRO_IMM8_Y0_TLS_GD_ADD: ::libc::c_uint = 63;
pub const R_TILEPRO_IMM8_Y1_TLS_GD_ADD: ::libc::c_uint = 64;
pub const R_TILEPRO_TLS_IE_LOAD: ::libc::c_uint = 65;
pub const R_TILEPRO_IMM16_X0_TLS_GD: ::libc::c_uint = 66;
pub const R_TILEPRO_IMM16_X1_TLS_GD: ::libc::c_uint = 67;
pub const R_TILEPRO_IMM16_X0_TLS_GD_LO: ::libc::c_uint = 68;
pub const R_TILEPRO_IMM16_X1_TLS_GD_LO: ::libc::c_uint = 69;
pub const R_TILEPRO_IMM16_X0_TLS_GD_HI: ::libc::c_uint = 70;
pub const R_TILEPRO_IMM16_X1_TLS_GD_HI: ::libc::c_uint = 71;
pub const R_TILEPRO_IMM16_X0_TLS_GD_HA: ::libc::c_uint = 72;
pub const R_TILEPRO_IMM16_X1_TLS_GD_HA: ::libc::c_uint = 73;
pub const R_TILEPRO_IMM16_X0_TLS_IE: ::libc::c_uint = 74;
pub const R_TILEPRO_IMM16_X1_TLS_IE: ::libc::c_uint = 75;
pub const R_TILEPRO_IMM16_X0_TLS_IE_LO: ::libc::c_uint = 76;
pub const R_TILEPRO_IMM16_X1_TLS_IE_LO: ::libc::c_uint = 77;
pub const R_TILEPRO_IMM16_X0_TLS_IE_HI: ::libc::c_uint = 78;
pub const R_TILEPRO_IMM16_X1_TLS_IE_HI: ::libc::c_uint = 79;
pub const R_TILEPRO_IMM16_X0_TLS_IE_HA: ::libc::c_uint = 80;
pub const R_TILEPRO_IMM16_X1_TLS_IE_HA: ::libc::c_uint = 81;
pub const R_TILEPRO_TLS_DTPMOD32: ::libc::c_uint = 82;
pub const R_TILEPRO_TLS_DTPOFF32: ::libc::c_uint = 83;
pub const R_TILEPRO_TLS_TPOFF32: ::libc::c_uint = 84;
pub const R_TILEPRO_IMM16_X0_TLS_LE: ::libc::c_uint = 85;
pub const R_TILEPRO_IMM16_X1_TLS_LE: ::libc::c_uint = 86;
pub const R_TILEPRO_IMM16_X0_TLS_LE_LO: ::libc::c_uint = 87;
pub const R_TILEPRO_IMM16_X1_TLS_LE_LO: ::libc::c_uint = 88;
pub const R_TILEPRO_IMM16_X0_TLS_LE_HI: ::libc::c_uint = 89;
pub const R_TILEPRO_IMM16_X1_TLS_LE_HI: ::libc::c_uint = 90;
pub const R_TILEPRO_IMM16_X0_TLS_LE_HA: ::libc::c_uint = 91;
pub const R_TILEPRO_IMM16_X1_TLS_LE_HA: ::libc::c_uint = 92;
pub const R_TILEPRO_GNU_VTINHERIT: ::libc::c_uint = 128;
pub const R_TILEPRO_GNU_VTENTRY: ::libc::c_uint = 129;
pub const R_TILEPRO_NUM: ::libc::c_uint = 130;
pub const R_TILEGX_NONE: ::libc::c_uint = 0;
pub const R_TILEGX_64: ::libc::c_uint = 1;
pub const R_TILEGX_32: ::libc::c_uint = 2;
pub const R_TILEGX_16: ::libc::c_uint = 3;
pub const R_TILEGX_8: ::libc::c_uint = 4;
pub const R_TILEGX_64_PCREL: ::libc::c_uint = 5;
pub const R_TILEGX_32_PCREL: ::libc::c_uint = 6;
pub const R_TILEGX_16_PCREL: ::libc::c_uint = 7;
pub const R_TILEGX_8_PCREL: ::libc::c_uint = 8;
pub const R_TILEGX_HW0: ::libc::c_uint = 9;
pub const R_TILEGX_HW1: ::libc::c_uint = 10;
pub const R_TILEGX_HW2: ::libc::c_uint = 11;
pub const R_TILEGX_HW3: ::libc::c_uint = 12;
pub const R_TILEGX_HW0_LAST: ::libc::c_uint = 13;
pub const R_TILEGX_HW1_LAST: ::libc::c_uint = 14;
pub const R_TILEGX_HW2_LAST: ::libc::c_uint = 15;
pub const R_TILEGX_COPY: ::libc::c_uint = 16;
pub const R_TILEGX_GLOB_DAT: ::libc::c_uint = 17;
pub const R_TILEGX_JMP_SLOT: ::libc::c_uint = 18;
pub const R_TILEGX_RELATIVE: ::libc::c_uint = 19;
pub const R_TILEGX_BROFF_X1: ::libc::c_uint = 20;
pub const R_TILEGX_JUMPOFF_X1: ::libc::c_uint = 21;
pub const R_TILEGX_JUMPOFF_X1_PLT: ::libc::c_uint = 22;
pub const R_TILEGX_IMM8_X0: ::libc::c_uint = 23;
pub const R_TILEGX_IMM8_Y0: ::libc::c_uint = 24;
pub const R_TILEGX_IMM8_X1: ::libc::c_uint = 25;
pub const R_TILEGX_IMM8_Y1: ::libc::c_uint = 26;
pub const R_TILEGX_DEST_IMM8_X1: ::libc::c_uint = 27;
pub const R_TILEGX_MT_IMM14_X1: ::libc::c_uint = 28;
pub const R_TILEGX_MF_IMM14_X1: ::libc::c_uint = 29;
pub const R_TILEGX_MMSTART_X0: ::libc::c_uint = 30;
pub const R_TILEGX_MMEND_X0: ::libc::c_uint = 31;
pub const R_TILEGX_SHAMT_X0: ::libc::c_uint = 32;
pub const R_TILEGX_SHAMT_X1: ::libc::c_uint = 33;
pub const R_TILEGX_SHAMT_Y0: ::libc::c_uint = 34;
pub const R_TILEGX_SHAMT_Y1: ::libc::c_uint = 35;
pub const R_TILEGX_IMM16_X0_HW0: ::libc::c_uint = 36;
pub const R_TILEGX_IMM16_X1_HW0: ::libc::c_uint = 37;
pub const R_TILEGX_IMM16_X0_HW1: ::libc::c_uint = 38;
pub const R_TILEGX_IMM16_X1_HW1: ::libc::c_uint = 39;
pub const R_TILEGX_IMM16_X0_HW2: ::libc::c_uint = 40;
pub const R_TILEGX_IMM16_X1_HW2: ::libc::c_uint = 41;
pub const R_TILEGX_IMM16_X0_HW3: ::libc::c_uint = 42;
pub const R_TILEGX_IMM16_X1_HW3: ::libc::c_uint = 43;
pub const R_TILEGX_IMM16_X0_HW0_LAST: ::libc::c_uint = 44;
pub const R_TILEGX_IMM16_X1_HW0_LAST: ::libc::c_uint = 45;
pub const R_TILEGX_IMM16_X0_HW1_LAST: ::libc::c_uint = 46;
pub const R_TILEGX_IMM16_X1_HW1_LAST: ::libc::c_uint = 47;
pub const R_TILEGX_IMM16_X0_HW2_LAST: ::libc::c_uint = 48;
pub const R_TILEGX_IMM16_X1_HW2_LAST: ::libc::c_uint = 49;
pub const R_TILEGX_IMM16_X0_HW0_PCREL: ::libc::c_uint = 50;
pub const R_TILEGX_IMM16_X1_HW0_PCREL: ::libc::c_uint = 51;
pub const R_TILEGX_IMM16_X0_HW1_PCREL: ::libc::c_uint = 52;
pub const R_TILEGX_IMM16_X1_HW1_PCREL: ::libc::c_uint = 53;
pub const R_TILEGX_IMM16_X0_HW2_PCREL: ::libc::c_uint = 54;
pub const R_TILEGX_IMM16_X1_HW2_PCREL: ::libc::c_uint = 55;
pub const R_TILEGX_IMM16_X0_HW3_PCREL: ::libc::c_uint = 56;
pub const R_TILEGX_IMM16_X1_HW3_PCREL: ::libc::c_uint = 57;
pub const R_TILEGX_IMM16_X0_HW0_LAST_PCREL: ::libc::c_uint = 58;
pub const R_TILEGX_IMM16_X1_HW0_LAST_PCREL: ::libc::c_uint = 59;
pub const R_TILEGX_IMM16_X0_HW1_LAST_PCREL: ::libc::c_uint = 60;
pub const R_TILEGX_IMM16_X1_HW1_LAST_PCREL: ::libc::c_uint = 61;
pub const R_TILEGX_IMM16_X0_HW2_LAST_PCREL: ::libc::c_uint = 62;
pub const R_TILEGX_IMM16_X1_HW2_LAST_PCREL: ::libc::c_uint = 63;
pub const R_TILEGX_IMM16_X0_HW0_GOT: ::libc::c_uint = 64;
pub const R_TILEGX_IMM16_X1_HW0_GOT: ::libc::c_uint = 65;
pub const R_TILEGX_IMM16_X0_HW0_PLT_PCREL: ::libc::c_uint = 66;
pub const R_TILEGX_IMM16_X1_HW0_PLT_PCREL: ::libc::c_uint = 67;
pub const R_TILEGX_IMM16_X0_HW1_PLT_PCREL: ::libc::c_uint = 68;
pub const R_TILEGX_IMM16_X1_HW1_PLT_PCREL: ::libc::c_uint = 69;
pub const R_TILEGX_IMM16_X0_HW2_PLT_PCREL: ::libc::c_uint = 70;
pub const R_TILEGX_IMM16_X1_HW2_PLT_PCREL: ::libc::c_uint = 71;
pub const R_TILEGX_IMM16_X0_HW0_LAST_GOT: ::libc::c_uint = 72;
pub const R_TILEGX_IMM16_X1_HW0_LAST_GOT: ::libc::c_uint = 73;
pub const R_TILEGX_IMM16_X0_HW1_LAST_GOT: ::libc::c_uint = 74;
pub const R_TILEGX_IMM16_X1_HW1_LAST_GOT: ::libc::c_uint = 75;
pub const R_TILEGX_IMM16_X0_HW3_PLT_PCREL: ::libc::c_uint = 76;
pub const R_TILEGX_IMM16_X1_HW3_PLT_PCREL: ::libc::c_uint = 77;
pub const R_TILEGX_IMM16_X0_HW0_TLS_GD: ::libc::c_uint = 78;
pub const R_TILEGX_IMM16_X1_HW0_TLS_GD: ::libc::c_uint = 79;
pub const R_TILEGX_IMM16_X0_HW0_TLS_LE: ::libc::c_uint = 80;
pub const R_TILEGX_IMM16_X1_HW0_TLS_LE: ::libc::c_uint = 81;
pub const R_TILEGX_IMM16_X0_HW0_LAST_TLS_LE: ::libc::c_uint = 82;
pub const R_TILEGX_IMM16_X1_HW0_LAST_TLS_LE: ::libc::c_uint = 83;
pub const R_TILEGX_IMM16_X0_HW1_LAST_TLS_LE: ::libc::c_uint = 84;
pub const R_TILEGX_IMM16_X1_HW1_LAST_TLS_LE: ::libc::c_uint = 85;
pub const R_TILEGX_IMM16_X0_HW0_LAST_TLS_GD: ::libc::c_uint = 86;
pub const R_TILEGX_IMM16_X1_HW0_LAST_TLS_GD: ::libc::c_uint = 87;
pub const R_TILEGX_IMM16_X0_HW1_LAST_TLS_GD: ::libc::c_uint = 88;
pub const R_TILEGX_IMM16_X1_HW1_LAST_TLS_GD: ::libc::c_uint = 89;
pub const R_TILEGX_IMM16_X0_HW0_TLS_IE: ::libc::c_uint = 92;
pub const R_TILEGX_IMM16_X1_HW0_TLS_IE: ::libc::c_uint = 93;
pub const R_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL: ::libc::c_uint = 94;
pub const R_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL: ::libc::c_uint = 95;
pub const R_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL: ::libc::c_uint = 96;
pub const R_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL: ::libc::c_uint = 97;
pub const R_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL: ::libc::c_uint = 98;
pub const R_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL: ::libc::c_uint = 99;
pub const R_TILEGX_IMM16_X0_HW0_LAST_TLS_IE: ::libc::c_uint = 100;
pub const R_TILEGX_IMM16_X1_HW0_LAST_TLS_IE: ::libc::c_uint = 101;
pub const R_TILEGX_IMM16_X0_HW1_LAST_TLS_IE: ::libc::c_uint = 102;
pub const R_TILEGX_IMM16_X1_HW1_LAST_TLS_IE: ::libc::c_uint = 103;
pub const R_TILEGX_TLS_DTPMOD64: ::libc::c_uint = 106;
pub const R_TILEGX_TLS_DTPOFF64: ::libc::c_uint = 107;
pub const R_TILEGX_TLS_TPOFF64: ::libc::c_uint = 108;
pub const R_TILEGX_TLS_DTPMOD32: ::libc::c_uint = 109;
pub const R_TILEGX_TLS_DTPOFF32: ::libc::c_uint = 110;
pub const R_TILEGX_TLS_TPOFF32: ::libc::c_uint = 111;
pub const R_TILEGX_TLS_GD_CALL: ::libc::c_uint = 112;
pub const R_TILEGX_IMM8_X0_TLS_GD_ADD: ::libc::c_uint = 113;
pub const R_TILEGX_IMM8_X1_TLS_GD_ADD: ::libc::c_uint = 114;
pub const R_TILEGX_IMM8_Y0_TLS_GD_ADD: ::libc::c_uint = 115;
pub const R_TILEGX_IMM8_Y1_TLS_GD_ADD: ::libc::c_uint = 116;
pub const R_TILEGX_TLS_IE_LOAD: ::libc::c_uint = 117;
pub const R_TILEGX_IMM8_X0_TLS_ADD: ::libc::c_uint = 118;
pub const R_TILEGX_IMM8_X1_TLS_ADD: ::libc::c_uint = 119;
pub const R_TILEGX_IMM8_Y0_TLS_ADD: ::libc::c_uint = 120;
pub const R_TILEGX_IMM8_Y1_TLS_ADD: ::libc::c_uint = 121;
pub const R_TILEGX_GNU_VTINHERIT: ::libc::c_uint = 128;
pub const R_TILEGX_GNU_VTENTRY: ::libc::c_uint = 129;
pub const R_TILEGX_NUM: ::libc::c_uint = 130;
pub const R_BPF_NONE: ::libc::c_uint = 0;
pub const R_BPF_MAP_FD: ::libc::c_uint = 1;
pub type Elf32_Half = u16;
pub type Elf64_Half = u16;
pub type Elf32_Word = u32;
pub type Elf32_Sword = i32;
pub type Elf64_Word = u32;
pub type Elf64_Sword = i32;
pub type Elf32_Xword = u64;
pub type Elf32_Sxword = i64;
pub type Elf64_Xword = u64;
pub type Elf64_Sxword = i64;
pub type Elf32_Addr = u32;
pub type Elf64_Addr = u64;
pub type Elf32_Off = u32;
pub type Elf64_Off = u64;
pub type Elf32_Section = u16;
pub type Elf64_Section = u16;
pub type Elf32_Versym = Elf32_Half;
pub type Elf64_Versym = Elf64_Half;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Ehdr {
    pub e_ident: [::libc::c_uchar; 16usize],
    pub e_type: Elf32_Half,
    pub e_machine: Elf32_Half,
    pub e_version: Elf32_Word,
    pub e_entry: Elf32_Addr,
    pub e_phoff: Elf32_Off,
    pub e_shoff: Elf32_Off,
    pub e_flags: Elf32_Word,
    pub e_ehsize: Elf32_Half,
    pub e_phentsize: Elf32_Half,
    pub e_phnum: Elf32_Half,
    pub e_shentsize: Elf32_Half,
    pub e_shnum: Elf32_Half,
    pub e_shstrndx: Elf32_Half,
}
#[test]
fn bindgen_test_layout_Elf32_Ehdr() {
    assert_eq!(::std::mem::size_of::<Elf32_Ehdr>() , 52usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Ehdr ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Ehdr>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Ehdr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_ident as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_ident ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_type as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_type ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_machine as * const _
                as usize } , 18usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_machine ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_version as * const _
                as usize } , 20usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_version ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_entry as * const _ as
                usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_entry ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_phoff as * const _ as
                usize } , 28usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_phoff ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_shoff as * const _ as
                usize } , 32usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_shoff ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_flags as * const _ as
                usize } , 36usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_flags ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_ehsize as * const _ as
                usize } , 40usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_ehsize ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_phentsize as * const _
                as usize } , 42usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_phentsize ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_phnum as * const _ as
                usize } , 44usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_phnum ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_shentsize as * const _
                as usize } , 46usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_shentsize ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_shnum as * const _ as
                usize } , 48usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_shnum ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Ehdr ) ) . e_shstrndx as * const _
                as usize } , 50usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Ehdr ) , "::" ,
                stringify ! ( e_shstrndx ) ));
}
impl Clone for Elf32_Ehdr {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Ehdr {
    pub e_ident: [::libc::c_uchar; 16usize],
    pub e_type: Elf64_Half,
    pub e_machine: Elf64_Half,
    pub e_version: Elf64_Word,
    pub e_entry: Elf64_Addr,
    pub e_phoff: Elf64_Off,
    pub e_shoff: Elf64_Off,
    pub e_flags: Elf64_Word,
    pub e_ehsize: Elf64_Half,
    pub e_phentsize: Elf64_Half,
    pub e_phnum: Elf64_Half,
    pub e_shentsize: Elf64_Half,
    pub e_shnum: Elf64_Half,
    pub e_shstrndx: Elf64_Half,
}
#[test]
fn bindgen_test_layout_Elf64_Ehdr() {
    assert_eq!(::std::mem::size_of::<Elf64_Ehdr>() , 64usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Ehdr ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Ehdr>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Ehdr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_ident as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_ident ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_type as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_type ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_machine as * const _
                as usize } , 18usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_machine ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_version as * const _
                as usize } , 20usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_version ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_entry as * const _ as
                usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_entry ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_phoff as * const _ as
                usize } , 32usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_phoff ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_shoff as * const _ as
                usize } , 40usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_shoff ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_flags as * const _ as
                usize } , 48usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_flags ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_ehsize as * const _ as
                usize } , 52usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_ehsize ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_phentsize as * const _
                as usize } , 54usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_phentsize ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_phnum as * const _ as
                usize } , 56usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_phnum ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_shentsize as * const _
                as usize } , 58usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_shentsize ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_shnum as * const _ as
                usize } , 60usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_shnum ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Ehdr ) ) . e_shstrndx as * const _
                as usize } , 62usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Ehdr ) , "::" ,
                stringify ! ( e_shstrndx ) ));
}
impl Clone for Elf64_Ehdr {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Shdr {
    pub sh_name: Elf32_Word,
    pub sh_type: Elf32_Word,
    pub sh_flags: Elf32_Word,
    pub sh_addr: Elf32_Addr,
    pub sh_offset: Elf32_Off,
    pub sh_size: Elf32_Word,
    pub sh_link: Elf32_Word,
    pub sh_info: Elf32_Word,
    pub sh_addralign: Elf32_Word,
    pub sh_entsize: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf32_Shdr() {
    assert_eq!(::std::mem::size_of::<Elf32_Shdr>() , 40usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Shdr ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Shdr>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Shdr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Shdr ) ) . sh_name as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Shdr ) , "::" ,
                stringify ! ( sh_name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Shdr ) ) . sh_type as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Shdr ) , "::" ,
                stringify ! ( sh_type ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Shdr ) ) . sh_flags as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Shdr ) , "::" ,
                stringify ! ( sh_flags ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Shdr ) ) . sh_addr as * const _ as
                usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Shdr ) , "::" ,
                stringify ! ( sh_addr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Shdr ) ) . sh_offset as * const _
                as usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Shdr ) , "::" ,
                stringify ! ( sh_offset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Shdr ) ) . sh_size as * const _ as
                usize } , 20usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Shdr ) , "::" ,
                stringify ! ( sh_size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Shdr ) ) . sh_link as * const _ as
                usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Shdr ) , "::" ,
                stringify ! ( sh_link ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Shdr ) ) . sh_info as * const _ as
                usize } , 28usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Shdr ) , "::" ,
                stringify ! ( sh_info ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Shdr ) ) . sh_addralign as * const
                _ as usize } , 32usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Shdr ) , "::" ,
                stringify ! ( sh_addralign ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Shdr ) ) . sh_entsize as * const _
                as usize } , 36usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Shdr ) , "::" ,
                stringify ! ( sh_entsize ) ));
}
impl Clone for Elf32_Shdr {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Shdr {
    pub sh_name: Elf64_Word,
    pub sh_type: Elf64_Word,
    pub sh_flags: Elf64_Xword,
    pub sh_addr: Elf64_Addr,
    pub sh_offset: Elf64_Off,
    pub sh_size: Elf64_Xword,
    pub sh_link: Elf64_Word,
    pub sh_info: Elf64_Word,
    pub sh_addralign: Elf64_Xword,
    pub sh_entsize: Elf64_Xword,
}
#[test]
fn bindgen_test_layout_Elf64_Shdr() {
    assert_eq!(::std::mem::size_of::<Elf64_Shdr>() , 64usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Shdr ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Shdr>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Shdr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Shdr ) ) . sh_name as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Shdr ) , "::" ,
                stringify ! ( sh_name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Shdr ) ) . sh_type as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Shdr ) , "::" ,
                stringify ! ( sh_type ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Shdr ) ) . sh_flags as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Shdr ) , "::" ,
                stringify ! ( sh_flags ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Shdr ) ) . sh_addr as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Shdr ) , "::" ,
                stringify ! ( sh_addr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Shdr ) ) . sh_offset as * const _
                as usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Shdr ) , "::" ,
                stringify ! ( sh_offset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Shdr ) ) . sh_size as * const _ as
                usize } , 32usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Shdr ) , "::" ,
                stringify ! ( sh_size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Shdr ) ) . sh_link as * const _ as
                usize } , 40usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Shdr ) , "::" ,
                stringify ! ( sh_link ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Shdr ) ) . sh_info as * const _ as
                usize } , 44usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Shdr ) , "::" ,
                stringify ! ( sh_info ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Shdr ) ) . sh_addralign as * const
                _ as usize } , 48usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Shdr ) , "::" ,
                stringify ! ( sh_addralign ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Shdr ) ) . sh_entsize as * const _
                as usize } , 56usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Shdr ) , "::" ,
                stringify ! ( sh_entsize ) ));
}
impl Clone for Elf64_Shdr {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Chdr {
    pub ch_type: Elf32_Word,
    pub ch_size: Elf32_Word,
    pub ch_addralign: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf32_Chdr() {
    assert_eq!(::std::mem::size_of::<Elf32_Chdr>() , 12usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Chdr ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Chdr>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Chdr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Chdr ) ) . ch_type as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Chdr ) , "::" ,
                stringify ! ( ch_type ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Chdr ) ) . ch_size as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Chdr ) , "::" ,
                stringify ! ( ch_size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Chdr ) ) . ch_addralign as * const
                _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Chdr ) , "::" ,
                stringify ! ( ch_addralign ) ));
}
impl Clone for Elf32_Chdr {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Chdr {
    pub ch_type: Elf64_Word,
    pub ch_reserved: Elf64_Word,
    pub ch_size: Elf64_Xword,
    pub ch_addralign: Elf64_Xword,
}
#[test]
fn bindgen_test_layout_Elf64_Chdr() {
    assert_eq!(::std::mem::size_of::<Elf64_Chdr>() , 24usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Chdr ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Chdr>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Chdr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Chdr ) ) . ch_type as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Chdr ) , "::" ,
                stringify ! ( ch_type ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Chdr ) ) . ch_reserved as * const _
                as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Chdr ) , "::" ,
                stringify ! ( ch_reserved ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Chdr ) ) . ch_size as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Chdr ) , "::" ,
                stringify ! ( ch_size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Chdr ) ) . ch_addralign as * const
                _ as usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Chdr ) , "::" ,
                stringify ! ( ch_addralign ) ));
}
impl Clone for Elf64_Chdr {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Sym {
    pub st_name: Elf32_Word,
    pub st_value: Elf32_Addr,
    pub st_size: Elf32_Word,
    pub st_info: ::libc::c_uchar,
    pub st_other: ::libc::c_uchar,
    pub st_shndx: Elf32_Section,
}
#[test]
fn bindgen_test_layout_Elf32_Sym() {
    assert_eq!(::std::mem::size_of::<Elf32_Sym>() , 16usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Sym ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Sym>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Sym ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Sym ) ) . st_name as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Sym ) , "::" ,
                stringify ! ( st_name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Sym ) ) . st_value as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Sym ) , "::" ,
                stringify ! ( st_value ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Sym ) ) . st_size as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Sym ) , "::" ,
                stringify ! ( st_size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Sym ) ) . st_info as * const _ as
                usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Sym ) , "::" ,
                stringify ! ( st_info ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Sym ) ) . st_other as * const _ as
                usize } , 13usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Sym ) , "::" ,
                stringify ! ( st_other ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Sym ) ) . st_shndx as * const _ as
                usize } , 14usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Sym ) , "::" ,
                stringify ! ( st_shndx ) ));
}
impl Clone for Elf32_Sym {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Sym {
    pub st_name: Elf64_Word,
    pub st_info: ::libc::c_uchar,
    pub st_other: ::libc::c_uchar,
    pub st_shndx: Elf64_Section,
    pub st_value: Elf64_Addr,
    pub st_size: Elf64_Xword,
}
#[test]
fn bindgen_test_layout_Elf64_Sym() {
    assert_eq!(::std::mem::size_of::<Elf64_Sym>() , 24usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Sym ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Sym>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Sym ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Sym ) ) . st_name as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Sym ) , "::" ,
                stringify ! ( st_name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Sym ) ) . st_info as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Sym ) , "::" ,
                stringify ! ( st_info ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Sym ) ) . st_other as * const _ as
                usize } , 5usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Sym ) , "::" ,
                stringify ! ( st_other ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Sym ) ) . st_shndx as * const _ as
                usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Sym ) , "::" ,
                stringify ! ( st_shndx ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Sym ) ) . st_value as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Sym ) , "::" ,
                stringify ! ( st_value ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Sym ) ) . st_size as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Sym ) , "::" ,
                stringify ! ( st_size ) ));
}
impl Clone for Elf64_Sym {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Syminfo {
    pub si_boundto: Elf32_Half,
    pub si_flags: Elf32_Half,
}
#[test]
fn bindgen_test_layout_Elf32_Syminfo() {
    assert_eq!(::std::mem::size_of::<Elf32_Syminfo>() , 4usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Syminfo ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Syminfo>() , 2usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Syminfo ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Syminfo ) ) . si_boundto as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Syminfo ) , "::"
                , stringify ! ( si_boundto ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Syminfo ) ) . si_flags as * const _
                as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Syminfo ) , "::"
                , stringify ! ( si_flags ) ));
}
impl Clone for Elf32_Syminfo {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Syminfo {
    pub si_boundto: Elf64_Half,
    pub si_flags: Elf64_Half,
}
#[test]
fn bindgen_test_layout_Elf64_Syminfo() {
    assert_eq!(::std::mem::size_of::<Elf64_Syminfo>() , 4usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Syminfo ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Syminfo>() , 2usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Syminfo ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Syminfo ) ) . si_boundto as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Syminfo ) , "::"
                , stringify ! ( si_boundto ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Syminfo ) ) . si_flags as * const _
                as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Syminfo ) , "::"
                , stringify ! ( si_flags ) ));
}
impl Clone for Elf64_Syminfo {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Rel {
    pub r_offset: Elf32_Addr,
    pub r_info: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf32_Rel() {
    assert_eq!(::std::mem::size_of::<Elf32_Rel>() , 8usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Rel ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Rel>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Rel ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Rel ) ) . r_offset as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Rel ) , "::" ,
                stringify ! ( r_offset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Rel ) ) . r_info as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Rel ) , "::" ,
                stringify ! ( r_info ) ));
}
impl Clone for Elf32_Rel {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Rel {
    pub r_offset: Elf64_Addr,
    pub r_info: Elf64_Xword,
}
#[test]
fn bindgen_test_layout_Elf64_Rel() {
    assert_eq!(::std::mem::size_of::<Elf64_Rel>() , 16usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Rel ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Rel>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Rel ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Rel ) ) . r_offset as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Rel ) , "::" ,
                stringify ! ( r_offset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Rel ) ) . r_info as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Rel ) , "::" ,
                stringify ! ( r_info ) ));
}
impl Clone for Elf64_Rel {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Rela {
    pub r_offset: Elf32_Addr,
    pub r_info: Elf32_Word,
    pub r_addend: Elf32_Sword,
}
#[test]
fn bindgen_test_layout_Elf32_Rela() {
    assert_eq!(::std::mem::size_of::<Elf32_Rela>() , 12usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Rela ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Rela>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Rela ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Rela ) ) . r_offset as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Rela ) , "::" ,
                stringify ! ( r_offset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Rela ) ) . r_info as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Rela ) , "::" ,
                stringify ! ( r_info ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Rela ) ) . r_addend as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Rela ) , "::" ,
                stringify ! ( r_addend ) ));
}
impl Clone for Elf32_Rela {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Rela {
    pub r_offset: Elf64_Addr,
    pub r_info: Elf64_Xword,
    pub r_addend: Elf64_Sxword,
}
#[test]
fn bindgen_test_layout_Elf64_Rela() {
    assert_eq!(::std::mem::size_of::<Elf64_Rela>() , 24usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Rela ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Rela>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Rela ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Rela ) ) . r_offset as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Rela ) , "::" ,
                stringify ! ( r_offset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Rela ) ) . r_info as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Rela ) , "::" ,
                stringify ! ( r_info ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Rela ) ) . r_addend as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Rela ) , "::" ,
                stringify ! ( r_addend ) ));
}
impl Clone for Elf64_Rela {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Phdr {
    pub p_type: Elf32_Word,
    pub p_offset: Elf32_Off,
    pub p_vaddr: Elf32_Addr,
    pub p_paddr: Elf32_Addr,
    pub p_filesz: Elf32_Word,
    pub p_memsz: Elf32_Word,
    pub p_flags: Elf32_Word,
    pub p_align: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf32_Phdr() {
    assert_eq!(::std::mem::size_of::<Elf32_Phdr>() , 32usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Phdr ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Phdr>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Phdr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Phdr ) ) . p_type as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Phdr ) , "::" ,
                stringify ! ( p_type ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Phdr ) ) . p_offset as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Phdr ) , "::" ,
                stringify ! ( p_offset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Phdr ) ) . p_vaddr as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Phdr ) , "::" ,
                stringify ! ( p_vaddr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Phdr ) ) . p_paddr as * const _ as
                usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Phdr ) , "::" ,
                stringify ! ( p_paddr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Phdr ) ) . p_filesz as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Phdr ) , "::" ,
                stringify ! ( p_filesz ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Phdr ) ) . p_memsz as * const _ as
                usize } , 20usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Phdr ) , "::" ,
                stringify ! ( p_memsz ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Phdr ) ) . p_flags as * const _ as
                usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Phdr ) , "::" ,
                stringify ! ( p_flags ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Phdr ) ) . p_align as * const _ as
                usize } , 28usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Phdr ) , "::" ,
                stringify ! ( p_align ) ));
}
impl Clone for Elf32_Phdr {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Phdr {
    pub p_type: Elf64_Word,
    pub p_flags: Elf64_Word,
    pub p_offset: Elf64_Off,
    pub p_vaddr: Elf64_Addr,
    pub p_paddr: Elf64_Addr,
    pub p_filesz: Elf64_Xword,
    pub p_memsz: Elf64_Xword,
    pub p_align: Elf64_Xword,
}
#[test]
fn bindgen_test_layout_Elf64_Phdr() {
    assert_eq!(::std::mem::size_of::<Elf64_Phdr>() , 56usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Phdr ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Phdr>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Phdr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Phdr ) ) . p_type as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Phdr ) , "::" ,
                stringify ! ( p_type ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Phdr ) ) . p_flags as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Phdr ) , "::" ,
                stringify ! ( p_flags ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Phdr ) ) . p_offset as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Phdr ) , "::" ,
                stringify ! ( p_offset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Phdr ) ) . p_vaddr as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Phdr ) , "::" ,
                stringify ! ( p_vaddr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Phdr ) ) . p_paddr as * const _ as
                usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Phdr ) , "::" ,
                stringify ! ( p_paddr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Phdr ) ) . p_filesz as * const _ as
                usize } , 32usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Phdr ) , "::" ,
                stringify ! ( p_filesz ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Phdr ) ) . p_memsz as * const _ as
                usize } , 40usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Phdr ) , "::" ,
                stringify ! ( p_memsz ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Phdr ) ) . p_align as * const _ as
                usize } , 48usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Phdr ) , "::" ,
                stringify ! ( p_align ) ));
}
impl Clone for Elf64_Phdr {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Copy)]
pub struct Elf32_Dyn {
    pub d_tag: Elf32_Sword,
    pub d_un: Elf32_Dyn__bindgen_ty_1,
}
#[repr(C)]
#[derive(Copy)]
pub union Elf32_Dyn__bindgen_ty_1 {
    pub d_val: Elf32_Word,
    pub d_ptr: Elf32_Addr,
    _bindgen_union_align: u32,
}
#[test]
fn bindgen_test_layout_Elf32_Dyn__bindgen_ty_1() {
    assert_eq!(::std::mem::size_of::<Elf32_Dyn__bindgen_ty_1>() , 4usize ,
               concat ! (
               "Size of: " , stringify ! ( Elf32_Dyn__bindgen_ty_1 ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Dyn__bindgen_ty_1>() , 4usize ,
                concat ! (
                "Alignment of " , stringify ! ( Elf32_Dyn__bindgen_ty_1 ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Dyn__bindgen_ty_1 ) ) . d_val as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Dyn__bindgen_ty_1
                ) , "::" , stringify ! ( d_val ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Dyn__bindgen_ty_1 ) ) . d_ptr as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Dyn__bindgen_ty_1
                ) , "::" , stringify ! ( d_ptr ) ));
}
impl Clone for Elf32_Dyn__bindgen_ty_1 {
    fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_Elf32_Dyn() {
    assert_eq!(::std::mem::size_of::<Elf32_Dyn>() , 8usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Dyn ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Dyn>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Dyn ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Dyn ) ) . d_tag as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Dyn ) , "::" ,
                stringify ! ( d_tag ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Dyn ) ) . d_un as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Dyn ) , "::" ,
                stringify ! ( d_un ) ));
}
impl Clone for Elf32_Dyn {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Copy)]
pub struct Elf64_Dyn {
    pub d_tag: Elf64_Sxword,
    pub d_un: Elf64_Dyn__bindgen_ty_1,
}
#[repr(C)]
#[derive(Copy)]
pub union Elf64_Dyn__bindgen_ty_1 {
    pub d_val: Elf64_Xword,
    pub d_ptr: Elf64_Addr,
    _bindgen_union_align: u64,
}
#[test]
fn bindgen_test_layout_Elf64_Dyn__bindgen_ty_1() {
    assert_eq!(::std::mem::size_of::<Elf64_Dyn__bindgen_ty_1>() , 8usize ,
               concat ! (
               "Size of: " , stringify ! ( Elf64_Dyn__bindgen_ty_1 ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Dyn__bindgen_ty_1>() , 8usize ,
                concat ! (
                "Alignment of " , stringify ! ( Elf64_Dyn__bindgen_ty_1 ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Dyn__bindgen_ty_1 ) ) . d_val as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Dyn__bindgen_ty_1
                ) , "::" , stringify ! ( d_val ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Dyn__bindgen_ty_1 ) ) . d_ptr as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Dyn__bindgen_ty_1
                ) , "::" , stringify ! ( d_ptr ) ));
}
impl Clone for Elf64_Dyn__bindgen_ty_1 {
    fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_Elf64_Dyn() {
    assert_eq!(::std::mem::size_of::<Elf64_Dyn>() , 16usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Dyn ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Dyn>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Dyn ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Dyn ) ) . d_tag as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Dyn ) , "::" ,
                stringify ! ( d_tag ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Dyn ) ) . d_un as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Dyn ) , "::" ,
                stringify ! ( d_un ) ));
}
impl Clone for Elf64_Dyn {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Verdef {
    pub vd_version: Elf32_Half,
    pub vd_flags: Elf32_Half,
    pub vd_ndx: Elf32_Half,
    pub vd_cnt: Elf32_Half,
    pub vd_hash: Elf32_Word,
    pub vd_aux: Elf32_Word,
    pub vd_next: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf32_Verdef() {
    assert_eq!(::std::mem::size_of::<Elf32_Verdef>() , 20usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Verdef ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Verdef>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Verdef ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verdef ) ) . vd_version as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verdef ) , "::" ,
                stringify ! ( vd_version ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verdef ) ) . vd_flags as * const _
                as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verdef ) , "::" ,
                stringify ! ( vd_flags ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verdef ) ) . vd_ndx as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verdef ) , "::" ,
                stringify ! ( vd_ndx ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verdef ) ) . vd_cnt as * const _ as
                usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verdef ) , "::" ,
                stringify ! ( vd_cnt ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verdef ) ) . vd_hash as * const _
                as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verdef ) , "::" ,
                stringify ! ( vd_hash ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verdef ) ) . vd_aux as * const _ as
                usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verdef ) , "::" ,
                stringify ! ( vd_aux ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verdef ) ) . vd_next as * const _
                as usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verdef ) , "::" ,
                stringify ! ( vd_next ) ));
}
impl Clone for Elf32_Verdef {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Verdef {
    pub vd_version: Elf64_Half,
    pub vd_flags: Elf64_Half,
    pub vd_ndx: Elf64_Half,
    pub vd_cnt: Elf64_Half,
    pub vd_hash: Elf64_Word,
    pub vd_aux: Elf64_Word,
    pub vd_next: Elf64_Word,
}
#[test]
fn bindgen_test_layout_Elf64_Verdef() {
    assert_eq!(::std::mem::size_of::<Elf64_Verdef>() , 20usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Verdef ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Verdef>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Verdef ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verdef ) ) . vd_version as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verdef ) , "::" ,
                stringify ! ( vd_version ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verdef ) ) . vd_flags as * const _
                as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verdef ) , "::" ,
                stringify ! ( vd_flags ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verdef ) ) . vd_ndx as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verdef ) , "::" ,
                stringify ! ( vd_ndx ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verdef ) ) . vd_cnt as * const _ as
                usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verdef ) , "::" ,
                stringify ! ( vd_cnt ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verdef ) ) . vd_hash as * const _
                as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verdef ) , "::" ,
                stringify ! ( vd_hash ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verdef ) ) . vd_aux as * const _ as
                usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verdef ) , "::" ,
                stringify ! ( vd_aux ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verdef ) ) . vd_next as * const _
                as usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verdef ) , "::" ,
                stringify ! ( vd_next ) ));
}
impl Clone for Elf64_Verdef {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Verdaux {
    pub vda_name: Elf32_Word,
    pub vda_next: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf32_Verdaux() {
    assert_eq!(::std::mem::size_of::<Elf32_Verdaux>() , 8usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Verdaux ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Verdaux>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Verdaux ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verdaux ) ) . vda_name as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verdaux ) , "::"
                , stringify ! ( vda_name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verdaux ) ) . vda_next as * const _
                as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verdaux ) , "::"
                , stringify ! ( vda_next ) ));
}
impl Clone for Elf32_Verdaux {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Verdaux {
    pub vda_name: Elf64_Word,
    pub vda_next: Elf64_Word,
}
#[test]
fn bindgen_test_layout_Elf64_Verdaux() {
    assert_eq!(::std::mem::size_of::<Elf64_Verdaux>() , 8usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Verdaux ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Verdaux>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Verdaux ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verdaux ) ) . vda_name as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verdaux ) , "::"
                , stringify ! ( vda_name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verdaux ) ) . vda_next as * const _
                as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verdaux ) , "::"
                , stringify ! ( vda_next ) ));
}
impl Clone for Elf64_Verdaux {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Verneed {
    pub vn_version: Elf32_Half,
    pub vn_cnt: Elf32_Half,
    pub vn_file: Elf32_Word,
    pub vn_aux: Elf32_Word,
    pub vn_next: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf32_Verneed() {
    assert_eq!(::std::mem::size_of::<Elf32_Verneed>() , 16usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Verneed ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Verneed>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Verneed ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verneed ) ) . vn_version as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verneed ) , "::"
                , stringify ! ( vn_version ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verneed ) ) . vn_cnt as * const _
                as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verneed ) , "::"
                , stringify ! ( vn_cnt ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verneed ) ) . vn_file as * const _
                as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verneed ) , "::"
                , stringify ! ( vn_file ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verneed ) ) . vn_aux as * const _
                as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verneed ) , "::"
                , stringify ! ( vn_aux ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Verneed ) ) . vn_next as * const _
                as usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Verneed ) , "::"
                , stringify ! ( vn_next ) ));
}
impl Clone for Elf32_Verneed {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Verneed {
    pub vn_version: Elf64_Half,
    pub vn_cnt: Elf64_Half,
    pub vn_file: Elf64_Word,
    pub vn_aux: Elf64_Word,
    pub vn_next: Elf64_Word,
}
#[test]
fn bindgen_test_layout_Elf64_Verneed() {
    assert_eq!(::std::mem::size_of::<Elf64_Verneed>() , 16usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Verneed ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Verneed>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Verneed ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verneed ) ) . vn_version as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verneed ) , "::"
                , stringify ! ( vn_version ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verneed ) ) . vn_cnt as * const _
                as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verneed ) , "::"
                , stringify ! ( vn_cnt ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verneed ) ) . vn_file as * const _
                as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verneed ) , "::"
                , stringify ! ( vn_file ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verneed ) ) . vn_aux as * const _
                as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verneed ) , "::"
                , stringify ! ( vn_aux ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Verneed ) ) . vn_next as * const _
                as usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Verneed ) , "::"
                , stringify ! ( vn_next ) ));
}
impl Clone for Elf64_Verneed {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Vernaux {
    pub vna_hash: Elf32_Word,
    pub vna_flags: Elf32_Half,
    pub vna_other: Elf32_Half,
    pub vna_name: Elf32_Word,
    pub vna_next: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf32_Vernaux() {
    assert_eq!(::std::mem::size_of::<Elf32_Vernaux>() , 16usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Vernaux ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Vernaux>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Vernaux ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Vernaux ) ) . vna_hash as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Vernaux ) , "::"
                , stringify ! ( vna_hash ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Vernaux ) ) . vna_flags as * const
                _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Vernaux ) , "::"
                , stringify ! ( vna_flags ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Vernaux ) ) . vna_other as * const
                _ as usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Vernaux ) , "::"
                , stringify ! ( vna_other ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Vernaux ) ) . vna_name as * const _
                as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Vernaux ) , "::"
                , stringify ! ( vna_name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Vernaux ) ) . vna_next as * const _
                as usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Vernaux ) , "::"
                , stringify ! ( vna_next ) ));
}
impl Clone for Elf32_Vernaux {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Vernaux {
    pub vna_hash: Elf64_Word,
    pub vna_flags: Elf64_Half,
    pub vna_other: Elf64_Half,
    pub vna_name: Elf64_Word,
    pub vna_next: Elf64_Word,
}
#[test]
fn bindgen_test_layout_Elf64_Vernaux() {
    assert_eq!(::std::mem::size_of::<Elf64_Vernaux>() , 16usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Vernaux ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Vernaux>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Vernaux ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Vernaux ) ) . vna_hash as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Vernaux ) , "::"
                , stringify ! ( vna_hash ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Vernaux ) ) . vna_flags as * const
                _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Vernaux ) , "::"
                , stringify ! ( vna_flags ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Vernaux ) ) . vna_other as * const
                _ as usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Vernaux ) , "::"
                , stringify ! ( vna_other ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Vernaux ) ) . vna_name as * const _
                as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Vernaux ) , "::"
                , stringify ! ( vna_name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Vernaux ) ) . vna_next as * const _
                as usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Vernaux ) , "::"
                , stringify ! ( vna_next ) ));
}
impl Clone for Elf64_Vernaux {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Copy)]
pub struct Elf32_auxv_t {
    pub a_type: u32,
    pub a_un: Elf32_auxv_t__bindgen_ty_1,
}
#[repr(C)]
#[derive(Copy)]
pub union Elf32_auxv_t__bindgen_ty_1 {
    pub a_val: u32,
    _bindgen_union_align: u32,
}
#[test]
fn bindgen_test_layout_Elf32_auxv_t__bindgen_ty_1() {
    assert_eq!(::std::mem::size_of::<Elf32_auxv_t__bindgen_ty_1>() , 4usize ,
               concat ! (
               "Size of: " , stringify ! ( Elf32_auxv_t__bindgen_ty_1 ) ));
    assert_eq! (::std::mem::align_of::<Elf32_auxv_t__bindgen_ty_1>() , 4usize
                , concat ! (
                "Alignment of " , stringify ! ( Elf32_auxv_t__bindgen_ty_1 )
                ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_auxv_t__bindgen_ty_1 ) ) . a_val as
                * const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! (
                Elf32_auxv_t__bindgen_ty_1 ) , "::" , stringify ! ( a_val )
                ));
}
impl Clone for Elf32_auxv_t__bindgen_ty_1 {
    fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_Elf32_auxv_t() {
    assert_eq!(::std::mem::size_of::<Elf32_auxv_t>() , 8usize , concat ! (
               "Size of: " , stringify ! ( Elf32_auxv_t ) ));
    assert_eq! (::std::mem::align_of::<Elf32_auxv_t>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_auxv_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_auxv_t ) ) . a_type as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_auxv_t ) , "::" ,
                stringify ! ( a_type ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_auxv_t ) ) . a_un as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_auxv_t ) , "::" ,
                stringify ! ( a_un ) ));
}
impl Clone for Elf32_auxv_t {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Copy)]
pub struct Elf64_auxv_t {
    pub a_type: u64,
    pub a_un: Elf64_auxv_t__bindgen_ty_1,
}
#[repr(C)]
#[derive(Copy)]
pub union Elf64_auxv_t__bindgen_ty_1 {
    pub a_val: u64,
    _bindgen_union_align: u64,
}
#[test]
fn bindgen_test_layout_Elf64_auxv_t__bindgen_ty_1() {
    assert_eq!(::std::mem::size_of::<Elf64_auxv_t__bindgen_ty_1>() , 8usize ,
               concat ! (
               "Size of: " , stringify ! ( Elf64_auxv_t__bindgen_ty_1 ) ));
    assert_eq! (::std::mem::align_of::<Elf64_auxv_t__bindgen_ty_1>() , 8usize
                , concat ! (
                "Alignment of " , stringify ! ( Elf64_auxv_t__bindgen_ty_1 )
                ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_auxv_t__bindgen_ty_1 ) ) . a_val as
                * const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! (
                Elf64_auxv_t__bindgen_ty_1 ) , "::" , stringify ! ( a_val )
                ));
}
impl Clone for Elf64_auxv_t__bindgen_ty_1 {
    fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_Elf64_auxv_t() {
    assert_eq!(::std::mem::size_of::<Elf64_auxv_t>() , 16usize , concat ! (
               "Size of: " , stringify ! ( Elf64_auxv_t ) ));
    assert_eq! (::std::mem::align_of::<Elf64_auxv_t>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_auxv_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_auxv_t ) ) . a_type as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_auxv_t ) , "::" ,
                stringify ! ( a_type ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_auxv_t ) ) . a_un as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_auxv_t ) , "::" ,
                stringify ! ( a_un ) ));
}
impl Clone for Elf64_auxv_t {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Nhdr {
    pub n_namesz: Elf32_Word,
    pub n_descsz: Elf32_Word,
    pub n_type: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf32_Nhdr() {
    assert_eq!(::std::mem::size_of::<Elf32_Nhdr>() , 12usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Nhdr ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Nhdr>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Nhdr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Nhdr ) ) . n_namesz as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Nhdr ) , "::" ,
                stringify ! ( n_namesz ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Nhdr ) ) . n_descsz as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Nhdr ) , "::" ,
                stringify ! ( n_descsz ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Nhdr ) ) . n_type as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Nhdr ) , "::" ,
                stringify ! ( n_type ) ));
}
impl Clone for Elf32_Nhdr {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Nhdr {
    pub n_namesz: Elf64_Word,
    pub n_descsz: Elf64_Word,
    pub n_type: Elf64_Word,
}
#[test]
fn bindgen_test_layout_Elf64_Nhdr() {
    assert_eq!(::std::mem::size_of::<Elf64_Nhdr>() , 12usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Nhdr ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Nhdr>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Nhdr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Nhdr ) ) . n_namesz as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Nhdr ) , "::" ,
                stringify ! ( n_namesz ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Nhdr ) ) . n_descsz as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Nhdr ) , "::" ,
                stringify ! ( n_descsz ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Nhdr ) ) . n_type as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Nhdr ) , "::" ,
                stringify ! ( n_type ) ));
}
impl Clone for Elf64_Nhdr {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Move {
    pub m_value: Elf32_Xword,
    pub m_info: Elf32_Word,
    pub m_poffset: Elf32_Word,
    pub m_repeat: Elf32_Half,
    pub m_stride: Elf32_Half,
}
#[test]
fn bindgen_test_layout_Elf32_Move() {
    assert_eq!(::std::mem::size_of::<Elf32_Move>() , 24usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Move ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Move>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Move ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Move ) ) . m_value as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Move ) , "::" ,
                stringify ! ( m_value ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Move ) ) . m_info as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Move ) , "::" ,
                stringify ! ( m_info ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Move ) ) . m_poffset as * const _
                as usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Move ) , "::" ,
                stringify ! ( m_poffset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Move ) ) . m_repeat as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Move ) , "::" ,
                stringify ! ( m_repeat ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Move ) ) . m_stride as * const _ as
                usize } , 18usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Move ) , "::" ,
                stringify ! ( m_stride ) ));
}
impl Clone for Elf32_Move {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Move {
    pub m_value: Elf64_Xword,
    pub m_info: Elf64_Xword,
    pub m_poffset: Elf64_Xword,
    pub m_repeat: Elf64_Half,
    pub m_stride: Elf64_Half,
}
#[test]
fn bindgen_test_layout_Elf64_Move() {
    assert_eq!(::std::mem::size_of::<Elf64_Move>() , 32usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Move ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Move>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Move ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Move ) ) . m_value as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Move ) , "::" ,
                stringify ! ( m_value ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Move ) ) . m_info as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Move ) , "::" ,
                stringify ! ( m_info ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Move ) ) . m_poffset as * const _
                as usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Move ) , "::" ,
                stringify ! ( m_poffset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Move ) ) . m_repeat as * const _ as
                usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Move ) , "::" ,
                stringify ! ( m_repeat ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Move ) ) . m_stride as * const _ as
                usize } , 26usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Move ) , "::" ,
                stringify ! ( m_stride ) ));
}
impl Clone for Elf64_Move {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Copy)]
pub union Elf32_gptab {
    pub gt_header: Elf32_gptab__bindgen_ty_1,
    pub gt_entry: Elf32_gptab__bindgen_ty_2,
    _bindgen_union_align: [u32; 2usize],
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_gptab__bindgen_ty_1 {
    pub gt_current_g_value: Elf32_Word,
    pub gt_unused: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf32_gptab__bindgen_ty_1() {
    assert_eq!(::std::mem::size_of::<Elf32_gptab__bindgen_ty_1>() , 8usize ,
               concat ! (
               "Size of: " , stringify ! ( Elf32_gptab__bindgen_ty_1 ) ));
    assert_eq! (::std::mem::align_of::<Elf32_gptab__bindgen_ty_1>() , 4usize ,
                concat ! (
                "Alignment of " , stringify ! ( Elf32_gptab__bindgen_ty_1 )
                ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_gptab__bindgen_ty_1 ) ) .
                gt_current_g_value as * const _ as usize } , 0usize , concat !
                (
                "Alignment of field: " , stringify ! (
                Elf32_gptab__bindgen_ty_1 ) , "::" , stringify ! (
                gt_current_g_value ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_gptab__bindgen_ty_1 ) ) . gt_unused
                as * const _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! (
                Elf32_gptab__bindgen_ty_1 ) , "::" , stringify ! ( gt_unused )
                ));
}
impl Clone for Elf32_gptab__bindgen_ty_1 {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_gptab__bindgen_ty_2 {
    pub gt_g_value: Elf32_Word,
    pub gt_bytes: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf32_gptab__bindgen_ty_2() {
    assert_eq!(::std::mem::size_of::<Elf32_gptab__bindgen_ty_2>() , 8usize ,
               concat ! (
               "Size of: " , stringify ! ( Elf32_gptab__bindgen_ty_2 ) ));
    assert_eq! (::std::mem::align_of::<Elf32_gptab__bindgen_ty_2>() , 4usize ,
                concat ! (
                "Alignment of " , stringify ! ( Elf32_gptab__bindgen_ty_2 )
                ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_gptab__bindgen_ty_2 ) ) .
                gt_g_value as * const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! (
                Elf32_gptab__bindgen_ty_2 ) , "::" , stringify ! ( gt_g_value
                ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_gptab__bindgen_ty_2 ) ) . gt_bytes
                as * const _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! (
                Elf32_gptab__bindgen_ty_2 ) , "::" , stringify ! ( gt_bytes )
                ));
}
impl Clone for Elf32_gptab__bindgen_ty_2 {
    fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_Elf32_gptab() {
    assert_eq!(::std::mem::size_of::<Elf32_gptab>() , 8usize , concat ! (
               "Size of: " , stringify ! ( Elf32_gptab ) ));
    assert_eq! (::std::mem::align_of::<Elf32_gptab>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_gptab ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_gptab ) ) . gt_header as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_gptab ) , "::" ,
                stringify ! ( gt_header ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_gptab ) ) . gt_entry as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_gptab ) , "::" ,
                stringify ! ( gt_entry ) ));
}
impl Clone for Elf32_gptab {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_RegInfo {
    pub ri_gprmask: Elf32_Word,
    pub ri_cprmask: [Elf32_Word; 4usize],
    pub ri_gp_value: Elf32_Sword,
}
#[test]
fn bindgen_test_layout_Elf32_RegInfo() {
    assert_eq!(::std::mem::size_of::<Elf32_RegInfo>() , 24usize , concat ! (
               "Size of: " , stringify ! ( Elf32_RegInfo ) ));
    assert_eq! (::std::mem::align_of::<Elf32_RegInfo>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_RegInfo ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_RegInfo ) ) . ri_gprmask as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_RegInfo ) , "::"
                , stringify ! ( ri_gprmask ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_RegInfo ) ) . ri_cprmask as * const
                _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_RegInfo ) , "::"
                , stringify ! ( ri_cprmask ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_RegInfo ) ) . ri_gp_value as *
                const _ as usize } , 20usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_RegInfo ) , "::"
                , stringify ! ( ri_gp_value ) ));
}
impl Clone for Elf32_RegInfo {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf_Options {
    pub kind: ::libc::c_uchar,
    pub size: ::libc::c_uchar,
    pub section: Elf32_Section,
    pub info: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf_Options() {
    assert_eq!(::std::mem::size_of::<Elf_Options>() , 8usize , concat ! (
               "Size of: " , stringify ! ( Elf_Options ) ));
    assert_eq! (::std::mem::align_of::<Elf_Options>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf_Options ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Options ) ) . kind as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Options ) , "::" ,
                stringify ! ( kind ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Options ) ) . size as * const _ as
                usize } , 1usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Options ) , "::" ,
                stringify ! ( size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Options ) ) . section as * const _ as
                usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Options ) , "::" ,
                stringify ! ( section ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Options ) ) . info as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Options ) , "::" ,
                stringify ! ( info ) ));
}
impl Clone for Elf_Options {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf_Options_Hw {
    pub hwp_flags1: Elf32_Word,
    pub hwp_flags2: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf_Options_Hw() {
    assert_eq!(::std::mem::size_of::<Elf_Options_Hw>() , 8usize , concat ! (
               "Size of: " , stringify ! ( Elf_Options_Hw ) ));
    assert_eq! (::std::mem::align_of::<Elf_Options_Hw>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf_Options_Hw ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Options_Hw ) ) . hwp_flags1 as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Options_Hw ) , "::"
                , stringify ! ( hwp_flags1 ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Options_Hw ) ) . hwp_flags2 as *
                const _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Options_Hw ) , "::"
                , stringify ! ( hwp_flags2 ) ));
}
impl Clone for Elf_Options_Hw {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf32_Lib {
    pub l_name: Elf32_Word,
    pub l_time_stamp: Elf32_Word,
    pub l_checksum: Elf32_Word,
    pub l_version: Elf32_Word,
    pub l_flags: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf32_Lib() {
    assert_eq!(::std::mem::size_of::<Elf32_Lib>() , 20usize , concat ! (
               "Size of: " , stringify ! ( Elf32_Lib ) ));
    assert_eq! (::std::mem::align_of::<Elf32_Lib>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf32_Lib ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Lib ) ) . l_name as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Lib ) , "::" ,
                stringify ! ( l_name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Lib ) ) . l_time_stamp as * const _
                as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Lib ) , "::" ,
                stringify ! ( l_time_stamp ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Lib ) ) . l_checksum as * const _
                as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Lib ) , "::" ,
                stringify ! ( l_checksum ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Lib ) ) . l_version as * const _ as
                usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Lib ) , "::" ,
                stringify ! ( l_version ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf32_Lib ) ) . l_flags as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf32_Lib ) , "::" ,
                stringify ! ( l_flags ) ));
}
impl Clone for Elf32_Lib {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf64_Lib {
    pub l_name: Elf64_Word,
    pub l_time_stamp: Elf64_Word,
    pub l_checksum: Elf64_Word,
    pub l_version: Elf64_Word,
    pub l_flags: Elf64_Word,
}
#[test]
fn bindgen_test_layout_Elf64_Lib() {
    assert_eq!(::std::mem::size_of::<Elf64_Lib>() , 20usize , concat ! (
               "Size of: " , stringify ! ( Elf64_Lib ) ));
    assert_eq! (::std::mem::align_of::<Elf64_Lib>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( Elf64_Lib ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Lib ) ) . l_name as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Lib ) , "::" ,
                stringify ! ( l_name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Lib ) ) . l_time_stamp as * const _
                as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Lib ) , "::" ,
                stringify ! ( l_time_stamp ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Lib ) ) . l_checksum as * const _
                as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Lib ) , "::" ,
                stringify ! ( l_checksum ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Lib ) ) . l_version as * const _ as
                usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Lib ) , "::" ,
                stringify ! ( l_version ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf64_Lib ) ) . l_flags as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf64_Lib ) , "::" ,
                stringify ! ( l_flags ) ));
}
impl Clone for Elf64_Lib {
    fn clone(&self) -> Self { *self }
}
pub type Elf32_Conflict = Elf32_Addr;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf_MIPS_ABIFlags_v0 {
    pub version: Elf32_Half,
    pub isa_level: ::libc::c_uchar,
    pub isa_rev: ::libc::c_uchar,
    pub gpr_size: ::libc::c_uchar,
    pub cpr1_size: ::libc::c_uchar,
    pub cpr2_size: ::libc::c_uchar,
    pub fp_abi: ::libc::c_uchar,
    pub isa_ext: Elf32_Word,
    pub ases: Elf32_Word,
    pub flags1: Elf32_Word,
    pub flags2: Elf32_Word,
}
#[test]
fn bindgen_test_layout_Elf_MIPS_ABIFlags_v0() {
    assert_eq!(::std::mem::size_of::<Elf_MIPS_ABIFlags_v0>() , 24usize ,
               concat ! ( "Size of: " , stringify ! ( Elf_MIPS_ABIFlags_v0 )
               ));
    assert_eq! (::std::mem::align_of::<Elf_MIPS_ABIFlags_v0>() , 4usize ,
                concat ! (
                "Alignment of " , stringify ! ( Elf_MIPS_ABIFlags_v0 ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_MIPS_ABIFlags_v0 ) ) . version as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_MIPS_ABIFlags_v0 )
                , "::" , stringify ! ( version ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_MIPS_ABIFlags_v0 ) ) . isa_level as *
                const _ as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_MIPS_ABIFlags_v0 )
                , "::" , stringify ! ( isa_level ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_MIPS_ABIFlags_v0 ) ) . isa_rev as *
                const _ as usize } , 3usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_MIPS_ABIFlags_v0 )
                , "::" , stringify ! ( isa_rev ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_MIPS_ABIFlags_v0 ) ) . gpr_size as *
                const _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_MIPS_ABIFlags_v0 )
                , "::" , stringify ! ( gpr_size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_MIPS_ABIFlags_v0 ) ) . cpr1_size as *
                const _ as usize } , 5usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_MIPS_ABIFlags_v0 )
                , "::" , stringify ! ( cpr1_size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_MIPS_ABIFlags_v0 ) ) . cpr2_size as *
                const _ as usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_MIPS_ABIFlags_v0 )
                , "::" , stringify ! ( cpr2_size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_MIPS_ABIFlags_v0 ) ) . fp_abi as *
                const _ as usize } , 7usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_MIPS_ABIFlags_v0 )
                , "::" , stringify ! ( fp_abi ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_MIPS_ABIFlags_v0 ) ) . isa_ext as *
                const _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_MIPS_ABIFlags_v0 )
                , "::" , stringify ! ( isa_ext ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_MIPS_ABIFlags_v0 ) ) . ases as *
                const _ as usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_MIPS_ABIFlags_v0 )
                , "::" , stringify ! ( ases ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_MIPS_ABIFlags_v0 ) ) . flags1 as *
                const _ as usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_MIPS_ABIFlags_v0 )
                , "::" , stringify ! ( flags1 ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_MIPS_ABIFlags_v0 ) ) . flags2 as *
                const _ as usize } , 20usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_MIPS_ABIFlags_v0 )
                , "::" , stringify ! ( flags2 ) ));
}
impl Clone for Elf_MIPS_ABIFlags_v0 {
    fn clone(&self) -> Self { *self }
}
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum Elf_Type {
    ELF_T_BYTE = 0,
    ELF_T_ADDR = 1,
    ELF_T_DYN = 2,
    ELF_T_EHDR = 3,
    ELF_T_HALF = 4,
    ELF_T_OFF = 5,
    ELF_T_PHDR = 6,
    ELF_T_RELA = 7,
    ELF_T_REL = 8,
    ELF_T_SHDR = 9,
    ELF_T_SWORD = 10,
    ELF_T_SYM = 11,
    ELF_T_WORD = 12,
    ELF_T_XWORD = 13,
    ELF_T_SXWORD = 14,
    ELF_T_VDEF = 15,
    ELF_T_VDAUX = 16,
    ELF_T_VNEED = 17,
    ELF_T_VNAUX = 18,
    ELF_T_NHDR = 19,
    ELF_T_SYMINFO = 20,
    ELF_T_MOVE = 21,
    ELF_T_LIB = 22,
    ELF_T_GNUHASH = 23,
    ELF_T_AUXV = 24,
    ELF_T_CHDR = 25,
    ELF_T_NUM = 26,
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf_Data {
    pub d_buf: *mut ::libc::c_void,
    pub d_type: Elf_Type,
    pub d_version: ::libc::c_uint,
    pub d_size: usize,
    pub d_off: i64,
    pub d_align: usize,
}
#[test]
fn bindgen_test_layout_Elf_Data() {
    assert_eq!(::std::mem::size_of::<Elf_Data>() , 40usize , concat ! (
               "Size of: " , stringify ! ( Elf_Data ) ));
    assert_eq! (::std::mem::align_of::<Elf_Data>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf_Data ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Data ) ) . d_buf as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Data ) , "::" ,
                stringify ! ( d_buf ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Data ) ) . d_type as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Data ) , "::" ,
                stringify ! ( d_type ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Data ) ) . d_version as * const _ as
                usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Data ) , "::" ,
                stringify ! ( d_version ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Data ) ) . d_size as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Data ) , "::" ,
                stringify ! ( d_size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Data ) ) . d_off as * const _ as
                usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Data ) , "::" ,
                stringify ! ( d_off ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Data ) ) . d_align as * const _ as
                usize } , 32usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Data ) , "::" ,
                stringify ! ( d_align ) ));
}
impl Clone for Elf_Data {
    fn clone(&self) -> Self { *self }
}
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum Elf_Cmd {
    ELF_C_NULL = 0,
    ELF_C_READ = 1,
    ELF_C_RDWR = 2,
    ELF_C_WRITE = 3,
    ELF_C_CLR = 4,
    ELF_C_SET = 5,
    ELF_C_FDDONE = 6,
    ELF_C_FDREAD = 7,
    ELF_C_READ_MMAP = 8,
    ELF_C_RDWR_MMAP = 9,
    ELF_C_WRITE_MMAP = 10,
    ELF_C_READ_MMAP_PRIVATE = 11,
    ELF_C_EMPTY = 12,
    ELF_C_NUM = 13,
}
pub const ELF_F_DIRTY: _bindgen_ty_2 = _bindgen_ty_2::ELF_F_DIRTY;
pub const ELF_F_LAYOUT: _bindgen_ty_2 = _bindgen_ty_2::ELF_F_LAYOUT;
pub const ELF_F_PERMISSIVE: _bindgen_ty_2 = _bindgen_ty_2::ELF_F_PERMISSIVE;
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum _bindgen_ty_2 {
    ELF_F_DIRTY = 1,
    ELF_F_LAYOUT = 4,
    ELF_F_PERMISSIVE = 8,
}
pub const ELF_CHF_FORCE: _bindgen_ty_3 = _bindgen_ty_3::ELF_CHF_FORCE;
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum _bindgen_ty_3 { ELF_CHF_FORCE = 1, }
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum Elf_Kind {
    ELF_K_NONE = 0,
    ELF_K_AR = 1,
    ELF_K_COFF = 2,
    ELF_K_ELF = 3,
    ELF_K_NUM = 4,
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf_Arhdr {
    pub ar_name: *mut ::libc::c_char,
    pub ar_date: time_t,
    pub ar_uid: uid_t,
    pub ar_gid: gid_t,
    pub ar_mode: mode_t,
    pub ar_size: i64,
    pub ar_rawname: *mut ::libc::c_char,
}
#[test]
fn bindgen_test_layout_Elf_Arhdr() {
    assert_eq!(::std::mem::size_of::<Elf_Arhdr>() , 48usize , concat ! (
               "Size of: " , stringify ! ( Elf_Arhdr ) ));
    assert_eq! (::std::mem::align_of::<Elf_Arhdr>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf_Arhdr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Arhdr ) ) . ar_name as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Arhdr ) , "::" ,
                stringify ! ( ar_name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Arhdr ) ) . ar_date as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Arhdr ) , "::" ,
                stringify ! ( ar_date ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Arhdr ) ) . ar_uid as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Arhdr ) , "::" ,
                stringify ! ( ar_uid ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Arhdr ) ) . ar_gid as * const _ as
                usize } , 20usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Arhdr ) , "::" ,
                stringify ! ( ar_gid ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Arhdr ) ) . ar_mode as * const _ as
                usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Arhdr ) , "::" ,
                stringify ! ( ar_mode ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Arhdr ) ) . ar_size as * const _ as
                usize } , 32usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Arhdr ) , "::" ,
                stringify ! ( ar_size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Arhdr ) ) . ar_rawname as * const _
                as usize } , 40usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Arhdr ) , "::" ,
                stringify ! ( ar_rawname ) ));
}
impl Clone for Elf_Arhdr {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct Elf_Arsym {
    pub as_name: *mut ::libc::c_char,
    pub as_off: usize,
    pub as_hash: ::libc::c_ulong,
}
#[test]
fn bindgen_test_layout_Elf_Arsym() {
    assert_eq!(::std::mem::size_of::<Elf_Arsym>() , 24usize , concat ! (
               "Size of: " , stringify ! ( Elf_Arsym ) ));
    assert_eq! (::std::mem::align_of::<Elf_Arsym>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( Elf_Arsym ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Arsym ) ) . as_name as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Arsym ) , "::" ,
                stringify ! ( as_name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Arsym ) ) . as_off as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Arsym ) , "::" ,
                stringify ! ( as_off ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Elf_Arsym ) ) . as_hash as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Elf_Arsym ) , "::" ,
                stringify ! ( as_hash ) ));
}
impl Clone for Elf_Arsym {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Elf {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Elf_Scn {
    _unused: [u8; 0],
}
extern "C" {
    pub fn elf_begin(__fildes: ::libc::c_int, __cmd: Elf_Cmd, __ref: *mut Elf)
     -> *mut Elf;
}
extern "C" {
    pub fn elf_clone(__elf: *mut Elf, __cmd: Elf_Cmd) -> *mut Elf;
}
extern "C" {
    pub fn elf_memory(__image: *mut ::libc::c_char, __size: usize)
     -> *mut Elf;
}
extern "C" {
    pub fn elf_next(__elf: *mut Elf) -> Elf_Cmd;
}
extern "C" {
    pub fn elf_end(__elf: *mut Elf) -> ::libc::c_int;
}
extern "C" {
    pub fn elf_update(__elf: *mut Elf, __cmd: Elf_Cmd) -> i64;
}
extern "C" {
    pub fn elf_kind(__elf: *mut Elf) -> Elf_Kind;
}
extern "C" {
    pub fn elf_getbase(__elf: *mut Elf) -> i64;
}
extern "C" {
    pub fn elf_getident(__elf: *mut Elf, __nbytes: *mut usize)
     -> *mut ::libc::c_char;
}
extern "C" {
    pub fn elf32_getehdr(__elf: *mut Elf) -> *mut Elf32_Ehdr;
}
extern "C" {
    pub fn elf64_getehdr(__elf: *mut Elf) -> *mut Elf64_Ehdr;
}
extern "C" {
    pub fn elf32_newehdr(__elf: *mut Elf) -> *mut Elf32_Ehdr;
}
extern "C" {
    pub fn elf64_newehdr(__elf: *mut Elf) -> *mut Elf64_Ehdr;
}
extern "C" {
    pub fn elf_getphdrnum(__elf: *mut Elf, __dst: *mut usize)
     -> ::libc::c_int;
}
extern "C" {
    pub fn elf32_getphdr(__elf: *mut Elf) -> *mut Elf32_Phdr;
}
extern "C" {
    pub fn elf64_getphdr(__elf: *mut Elf) -> *mut Elf64_Phdr;
}
extern "C" {
    pub fn elf32_newphdr(__elf: *mut Elf, __cnt: usize) -> *mut Elf32_Phdr;
}
extern "C" {
    pub fn elf64_newphdr(__elf: *mut Elf, __cnt: usize) -> *mut Elf64_Phdr;
}
extern "C" {
    pub fn elf_getscn(__elf: *mut Elf, __index: usize) -> *mut Elf_Scn;
}
extern "C" {
    pub fn elf32_offscn(__elf: *mut Elf, __offset: Elf32_Off) -> *mut Elf_Scn;
}
extern "C" {
    pub fn elf64_offscn(__elf: *mut Elf, __offset: Elf64_Off) -> *mut Elf_Scn;
}
extern "C" {
    pub fn elf_ndxscn(__scn: *mut Elf_Scn) -> usize;
}
extern "C" {
    pub fn elf_nextscn(__elf: *mut Elf, __scn: *mut Elf_Scn) -> *mut Elf_Scn;
}
extern "C" {
    pub fn elf_newscn(__elf: *mut Elf) -> *mut Elf_Scn;
}
extern "C" {
    pub fn elf_scnshndx(__scn: *mut Elf_Scn) -> ::libc::c_int;
}
extern "C" {
    pub fn elf_getshdrnum(__elf: *mut Elf, __dst: *mut usize)
     -> ::libc::c_int;
}
extern "C" {
    pub fn elf_getshnum(__elf: *mut Elf, __dst: *mut usize) -> ::libc::c_int;
}
extern "C" {
    pub fn elf_getshdrstrndx(__elf: *mut Elf, __dst: *mut usize)
     -> ::libc::c_int;
}
extern "C" {
    pub fn elf_getshstrndx(__elf: *mut Elf, __dst: *mut usize)
     -> ::libc::c_int;
}
extern "C" {
    pub fn elf32_getshdr(__scn: *mut Elf_Scn) -> *mut Elf32_Shdr;
}
extern "C" {
    pub fn elf64_getshdr(__scn: *mut Elf_Scn) -> *mut Elf64_Shdr;
}
extern "C" {
    pub fn elf32_getchdr(__scn: *mut Elf_Scn) -> *mut Elf32_Chdr;
}
extern "C" {
    pub fn elf64_getchdr(__scn: *mut Elf_Scn) -> *mut Elf64_Chdr;
}
extern "C" {
    pub fn elf_compress(scn: *mut Elf_Scn, type_: ::libc::c_int,
                        flags: ::libc::c_uint) -> ::libc::c_int;
}
extern "C" {
    pub fn elf_compress_gnu(scn: *mut Elf_Scn, compress: ::libc::c_int,
                            flags: ::libc::c_uint) -> ::libc::c_int;
}
extern "C" {
    pub fn elf_flagelf(__elf: *mut Elf, __cmd: Elf_Cmd,
                       __flags: ::libc::c_uint) -> ::libc::c_uint;
}
extern "C" {
    pub fn elf_flagehdr(__elf: *mut Elf, __cmd: Elf_Cmd,
                        __flags: ::libc::c_uint) -> ::libc::c_uint;
}
extern "C" {
    pub fn elf_flagphdr(__elf: *mut Elf, __cmd: Elf_Cmd,
                        __flags: ::libc::c_uint) -> ::libc::c_uint;
}
extern "C" {
    pub fn elf_flagscn(__scn: *mut Elf_Scn, __cmd: Elf_Cmd,
                       __flags: ::libc::c_uint) -> ::libc::c_uint;
}
extern "C" {
    pub fn elf_flagdata(__data: *mut Elf_Data, __cmd: Elf_Cmd,
                        __flags: ::libc::c_uint) -> ::libc::c_uint;
}
extern "C" {
    pub fn elf_flagshdr(__scn: *mut Elf_Scn, __cmd: Elf_Cmd,
                        __flags: ::libc::c_uint) -> ::libc::c_uint;
}
extern "C" {
    pub fn elf_getdata(__scn: *mut Elf_Scn, __data: *mut Elf_Data)
     -> *mut Elf_Data;
}
extern "C" {
    pub fn elf_rawdata(__scn: *mut Elf_Scn, __data: *mut Elf_Data)
     -> *mut Elf_Data;
}
extern "C" {
    pub fn elf_newdata(__scn: *mut Elf_Scn) -> *mut Elf_Data;
}
extern "C" {
    pub fn elf_getdata_rawchunk(__elf: *mut Elf, __offset: i64, __size: usize,
                                __type: Elf_Type) -> *mut Elf_Data;
}
extern "C" {
    pub fn elf_strptr(__elf: *mut Elf, __index: usize, __offset: usize)
     -> *mut ::libc::c_char;
}
extern "C" {
    pub fn elf_getarhdr(__elf: *mut Elf) -> *mut Elf_Arhdr;
}
extern "C" {
    pub fn elf_getaroff(__elf: *mut Elf) -> i64;
}
extern "C" {
    pub fn elf_rand(__elf: *mut Elf, __offset: usize) -> usize;
}
extern "C" {
    pub fn elf_getarsym(__elf: *mut Elf, __narsyms: *mut usize)
     -> *mut Elf_Arsym;
}
extern "C" {
    pub fn elf_cntl(__elf: *mut Elf, __cmd: Elf_Cmd) -> ::libc::c_int;
}
extern "C" {
    pub fn elf_rawfile(__elf: *mut Elf, __nbytes: *mut usize)
     -> *mut ::libc::c_char;
}
extern "C" {
    pub fn elf32_fsize(__type: Elf_Type, __count: usize,
                       __version: ::libc::c_uint) -> usize;
}
extern "C" {
    pub fn elf64_fsize(__type: Elf_Type, __count: usize,
                       __version: ::libc::c_uint) -> usize;
}
extern "C" {
    pub fn elf32_xlatetom(__dest: *mut Elf_Data, __src: *const Elf_Data,
                          __encode: ::libc::c_uint) -> *mut Elf_Data;
}
extern "C" {
    pub fn elf64_xlatetom(__dest: *mut Elf_Data, __src: *const Elf_Data,
                          __encode: ::libc::c_uint) -> *mut Elf_Data;
}
extern "C" {
    pub fn elf32_xlatetof(__dest: *mut Elf_Data, __src: *const Elf_Data,
                          __encode: ::libc::c_uint) -> *mut Elf_Data;
}
extern "C" {
    pub fn elf64_xlatetof(__dest: *mut Elf_Data, __src: *const Elf_Data,
                          __encode: ::libc::c_uint) -> *mut Elf_Data;
}
extern "C" {
    pub fn elf_errno() -> ::libc::c_int;
}
extern "C" {
    pub fn elf_errmsg(__error: ::libc::c_int) -> *const ::libc::c_char;
}
extern "C" {
    pub fn elf_version(__version: ::libc::c_uint) -> ::libc::c_uint;
}
extern "C" {
    pub fn elf_fill(__fill: ::libc::c_int);
}
extern "C" {
    pub fn elf_hash(__string: *const ::libc::c_char) -> ::libc::c_ulong;
}
extern "C" {
    pub fn elf_gnu_hash(__string: *const ::libc::c_char) -> ::libc::c_ulong;
}
extern "C" {
    pub fn elf32_checksum(__elf: *mut Elf) -> ::libc::c_long;
}
extern "C" {
    pub fn elf64_checksum(__elf: *mut Elf) -> ::libc::c_long;
}
pub type GElf_Half = Elf64_Half;
pub type GElf_Word = Elf64_Word;
pub type GElf_Sword = Elf64_Sword;
pub type GElf_Xword = Elf64_Xword;
pub type GElf_Sxword = Elf64_Sxword;
pub type GElf_Addr = Elf64_Addr;
pub type GElf_Off = Elf64_Off;
pub type GElf_Ehdr = Elf64_Ehdr;
pub type GElf_Shdr = Elf64_Shdr;
pub type GElf_Section = Elf64_Section;
pub type GElf_Sym = Elf64_Sym;
pub type GElf_Syminfo = Elf64_Syminfo;
pub type GElf_Rel = Elf64_Rel;
pub type GElf_Rela = Elf64_Rela;
pub type GElf_Phdr = Elf64_Phdr;
pub type GElf_Chdr = Elf64_Chdr;
pub type GElf_Dyn = Elf64_Dyn;
pub type GElf_Verdef = Elf64_Verdef;
pub type GElf_Verdaux = Elf64_Verdaux;
pub type GElf_Verneed = Elf64_Verneed;
pub type GElf_Vernaux = Elf64_Vernaux;
pub type GElf_Versym = Elf64_Versym;
pub type GElf_auxv_t = Elf64_auxv_t;
pub type GElf_Nhdr = Elf64_Nhdr;
pub type GElf_Move = Elf64_Move;
pub type GElf_Lib = Elf64_Lib;
extern "C" {
    pub fn gelf_getclass(__elf: *mut Elf) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_fsize(__elf: *mut Elf, __type: Elf_Type, __count: usize,
                      __version: ::libc::c_uint) -> usize;
}
extern "C" {
    pub fn gelf_getehdr(__elf: *mut Elf, __dest: *mut GElf_Ehdr)
     -> *mut GElf_Ehdr;
}
extern "C" {
    pub fn gelf_update_ehdr(__elf: *mut Elf, __src: *mut GElf_Ehdr)
     -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_newehdr(__elf: *mut Elf, __class: ::libc::c_int)
     -> *mut ::libc::c_void;
}
extern "C" {
    pub fn gelf_offscn(__elf: *mut Elf, __offset: GElf_Off) -> *mut Elf_Scn;
}
extern "C" {
    pub fn gelf_getshdr(__scn: *mut Elf_Scn, __dst: *mut GElf_Shdr)
     -> *mut GElf_Shdr;
}
extern "C" {
    pub fn gelf_update_shdr(__scn: *mut Elf_Scn, __src: *mut GElf_Shdr)
     -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getphdr(__elf: *mut Elf, __ndx: ::libc::c_int,
                        __dst: *mut GElf_Phdr) -> *mut GElf_Phdr;
}
extern "C" {
    pub fn gelf_update_phdr(__elf: *mut Elf, __ndx: ::libc::c_int,
                            __src: *mut GElf_Phdr) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_newphdr(__elf: *mut Elf, __phnum: usize)
     -> *mut ::libc::c_void;
}
extern "C" {
    pub fn gelf_getchdr(__scn: *mut Elf_Scn, __dst: *mut GElf_Chdr)
     -> *mut GElf_Chdr;
}
extern "C" {
    pub fn gelf_xlatetom(__elf: *mut Elf, __dest: *mut Elf_Data,
                         __src: *const Elf_Data, __encode: ::libc::c_uint)
     -> *mut Elf_Data;
}
extern "C" {
    pub fn gelf_xlatetof(__elf: *mut Elf, __dest: *mut Elf_Data,
                         __src: *const Elf_Data, __encode: ::libc::c_uint)
     -> *mut Elf_Data;
}
extern "C" {
    pub fn gelf_getrel(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                       __dst: *mut GElf_Rel) -> *mut GElf_Rel;
}
extern "C" {
    pub fn gelf_getrela(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                        __dst: *mut GElf_Rela) -> *mut GElf_Rela;
}
extern "C" {
    pub fn gelf_update_rel(__dst: *mut Elf_Data, __ndx: ::libc::c_int,
                           __src: *mut GElf_Rel) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_update_rela(__dst: *mut Elf_Data, __ndx: ::libc::c_int,
                            __src: *mut GElf_Rela) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getsym(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                       __dst: *mut GElf_Sym) -> *mut GElf_Sym;
}
extern "C" {
    pub fn gelf_update_sym(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                           __src: *mut GElf_Sym) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getsymshndx(__symdata: *mut Elf_Data,
                            __shndxdata: *mut Elf_Data, __ndx: ::libc::c_int,
                            __sym: *mut GElf_Sym, __xshndx: *mut Elf32_Word)
     -> *mut GElf_Sym;
}
extern "C" {
    pub fn gelf_update_symshndx(__symdata: *mut Elf_Data,
                                __shndxdata: *mut Elf_Data,
                                __ndx: ::libc::c_int, __sym: *mut GElf_Sym,
                                __xshndx: Elf32_Word) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getsyminfo(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                           __dst: *mut GElf_Syminfo) -> *mut GElf_Syminfo;
}
extern "C" {
    pub fn gelf_update_syminfo(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                               __src: *mut GElf_Syminfo) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getdyn(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                       __dst: *mut GElf_Dyn) -> *mut GElf_Dyn;
}
extern "C" {
    pub fn gelf_update_dyn(__dst: *mut Elf_Data, __ndx: ::libc::c_int,
                           __src: *mut GElf_Dyn) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getmove(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                        __dst: *mut GElf_Move) -> *mut GElf_Move;
}
extern "C" {
    pub fn gelf_update_move(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                            __src: *mut GElf_Move) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getlib(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                       __dst: *mut GElf_Lib) -> *mut GElf_Lib;
}
extern "C" {
    pub fn gelf_update_lib(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                           __src: *mut GElf_Lib) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getversym(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                          __dst: *mut GElf_Versym) -> *mut GElf_Versym;
}
extern "C" {
    pub fn gelf_update_versym(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                              __src: *mut GElf_Versym) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getverneed(__data: *mut Elf_Data, __offset: ::libc::c_int,
                           __dst: *mut GElf_Verneed) -> *mut GElf_Verneed;
}
extern "C" {
    pub fn gelf_update_verneed(__data: *mut Elf_Data, __offset: ::libc::c_int,
                               __src: *mut GElf_Verneed) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getvernaux(__data: *mut Elf_Data, __offset: ::libc::c_int,
                           __dst: *mut GElf_Vernaux) -> *mut GElf_Vernaux;
}
extern "C" {
    pub fn gelf_update_vernaux(__data: *mut Elf_Data, __offset: ::libc::c_int,
                               __src: *mut GElf_Vernaux) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getverdef(__data: *mut Elf_Data, __offset: ::libc::c_int,
                          __dst: *mut GElf_Verdef) -> *mut GElf_Verdef;
}
extern "C" {
    pub fn gelf_update_verdef(__data: *mut Elf_Data, __offset: ::libc::c_int,
                              __src: *mut GElf_Verdef) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getverdaux(__data: *mut Elf_Data, __offset: ::libc::c_int,
                           __dst: *mut GElf_Verdaux) -> *mut GElf_Verdaux;
}
extern "C" {
    pub fn gelf_update_verdaux(__data: *mut Elf_Data, __offset: ::libc::c_int,
                               __src: *mut GElf_Verdaux) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getauxv(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                        __dst: *mut GElf_auxv_t) -> *mut GElf_auxv_t;
}
extern "C" {
    pub fn gelf_update_auxv(__data: *mut Elf_Data, __ndx: ::libc::c_int,
                            __src: *mut GElf_auxv_t) -> ::libc::c_int;
}
extern "C" {
    pub fn gelf_getnote(__data: *mut Elf_Data, __offset: usize,
                        __result: *mut GElf_Nhdr, __name_offset: *mut usize,
                        __desc_offset: *mut usize) -> usize;
}
extern "C" {
    pub fn gelf_checksum(__elf: *mut Elf) -> ::libc::c_long;
}