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
/* automatically generated by rust-bindgen */

#[repr(C)]
pub struct __BindgenUnionField<T>(::std::marker::PhantomData<T>);
impl <T> __BindgenUnionField<T> {
    #[inline]
    pub fn new() -> Self { __BindgenUnionField(::std::marker::PhantomData) }
    #[inline]
    pub unsafe fn as_ref(&self) -> &T { ::std::mem::transmute(self) }
    #[inline]
    pub unsafe fn as_mut(&mut self) -> &mut T { ::std::mem::transmute(self) }
}
impl <T> ::std::default::Default for __BindgenUnionField<T> {
    #[inline]
    fn default() -> Self { Self::new() }
}
impl <T> ::std::clone::Clone for __BindgenUnionField<T> {
    #[inline]
    fn clone(&self) -> Self { Self::new() }
}
impl <T> ::std::marker::Copy for __BindgenUnionField<T> { }
impl <T> ::std::fmt::Debug for __BindgenUnionField<T> {
    fn fmt(&self, fmt: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        fmt.write_str("__BindgenUnionField")
    }
}
pub const _SYS_TIME_H: ::std::os::raw::c_uint = 1;
pub const _FEATURES_H: ::std::os::raw::c_uint = 1;
pub const _DEFAULT_SOURCE: ::std::os::raw::c_uint = 1;
pub const __USE_ISOC11: ::std::os::raw::c_uint = 1;
pub const __USE_ISOC99: ::std::os::raw::c_uint = 1;
pub const __USE_ISOC95: ::std::os::raw::c_uint = 1;
pub const __USE_POSIX_IMPLICITLY: ::std::os::raw::c_uint = 1;
pub const _POSIX_SOURCE: ::std::os::raw::c_uint = 1;
pub const _POSIX_C_SOURCE: ::std::os::raw::c_uint = 200809;
pub const __USE_POSIX: ::std::os::raw::c_uint = 1;
pub const __USE_POSIX2: ::std::os::raw::c_uint = 1;
pub const __USE_POSIX199309: ::std::os::raw::c_uint = 1;
pub const __USE_POSIX199506: ::std::os::raw::c_uint = 1;
pub const __USE_XOPEN2K: ::std::os::raw::c_uint = 1;
pub const __USE_XOPEN2K8: ::std::os::raw::c_uint = 1;
pub const _ATFILE_SOURCE: ::std::os::raw::c_uint = 1;
pub const __USE_MISC: ::std::os::raw::c_uint = 1;
pub const __USE_ATFILE: ::std::os::raw::c_uint = 1;
pub const __USE_FORTIFY_LEVEL: ::std::os::raw::c_uint = 0;
pub const _STDC_PREDEF_H: ::std::os::raw::c_uint = 1;
pub const __STDC_IEC_559__: ::std::os::raw::c_uint = 1;
pub const __STDC_IEC_559_COMPLEX__: ::std::os::raw::c_uint = 1;
pub const __STDC_ISO_10646__: ::std::os::raw::c_uint = 201605;
pub const __STDC_NO_THREADS__: ::std::os::raw::c_uint = 1;
pub const __GNU_LIBRARY__: ::std::os::raw::c_uint = 6;
pub const __GLIBC__: ::std::os::raw::c_uint = 2;
pub const __GLIBC_MINOR__: ::std::os::raw::c_uint = 24;
pub const _SYS_CDEFS_H: ::std::os::raw::c_uint = 1;
pub const __WORDSIZE: ::std::os::raw::c_uint = 64;
pub const __WORDSIZE_TIME64_COMPAT32: ::std::os::raw::c_uint = 1;
pub const __SYSCALL_WORDSIZE: ::std::os::raw::c_uint = 64;
pub const _BITS_TYPES_H: ::std::os::raw::c_uint = 1;
pub const _BITS_TYPESIZES_H: ::std::os::raw::c_uint = 1;
pub const __OFF_T_MATCHES_OFF64_T: ::std::os::raw::c_uint = 1;
pub const __INO_T_MATCHES_INO64_T: ::std::os::raw::c_uint = 1;
pub const __FD_SETSIZE: ::std::os::raw::c_uint = 1024;
pub const __time_t_defined: ::std::os::raw::c_uint = 1;
pub const _STRUCT_TIMEVAL: ::std::os::raw::c_uint = 1;
pub const _SYS_SELECT_H: ::std::os::raw::c_uint = 1;
pub const __FD_ZERO_STOS: &'static [u8; 6usize] = b"stosq\x00";
pub const _SIGSET_H_types: ::std::os::raw::c_uint = 1;
pub const __timespec_defined: ::std::os::raw::c_uint = 1;
pub const FD_SETSIZE: ::std::os::raw::c_uint = 1024;
pub const _SYS_IOCTL_H: ::std::os::raw::c_uint = 1;
pub const _IOC_NRBITS: ::std::os::raw::c_uint = 8;
pub const _IOC_TYPEBITS: ::std::os::raw::c_uint = 8;
pub const _IOC_SIZEBITS: ::std::os::raw::c_uint = 14;
pub const _IOC_DIRBITS: ::std::os::raw::c_uint = 2;
pub const _IOC_NRMASK: ::std::os::raw::c_uint = 255;
pub const _IOC_TYPEMASK: ::std::os::raw::c_uint = 255;
pub const _IOC_SIZEMASK: ::std::os::raw::c_uint = 16383;
pub const _IOC_DIRMASK: ::std::os::raw::c_uint = 3;
pub const _IOC_NRSHIFT: ::std::os::raw::c_uint = 0;
pub const _IOC_TYPESHIFT: ::std::os::raw::c_uint = 8;
pub const _IOC_SIZESHIFT: ::std::os::raw::c_uint = 16;
pub const _IOC_DIRSHIFT: ::std::os::raw::c_uint = 30;
pub const _IOC_NONE: ::std::os::raw::c_uint = 0;
pub const _IOC_WRITE: ::std::os::raw::c_uint = 1;
pub const _IOC_READ: ::std::os::raw::c_uint = 2;
pub const IOC_IN: ::std::os::raw::c_uint = 1073741824;
pub const IOC_OUT: ::std::os::raw::c_uint = 2147483648;
pub const IOC_INOUT: ::std::os::raw::c_uint = 3221225472;
pub const IOCSIZE_MASK: ::std::os::raw::c_uint = 1073676288;
pub const IOCSIZE_SHIFT: ::std::os::raw::c_uint = 16;
pub const TCGETS: ::std::os::raw::c_uint = 21505;
pub const TCSETS: ::std::os::raw::c_uint = 21506;
pub const TCSETSW: ::std::os::raw::c_uint = 21507;
pub const TCSETSF: ::std::os::raw::c_uint = 21508;
pub const TCGETA: ::std::os::raw::c_uint = 21509;
pub const TCSETA: ::std::os::raw::c_uint = 21510;
pub const TCSETAW: ::std::os::raw::c_uint = 21511;
pub const TCSETAF: ::std::os::raw::c_uint = 21512;
pub const TCSBRK: ::std::os::raw::c_uint = 21513;
pub const TCXONC: ::std::os::raw::c_uint = 21514;
pub const TCFLSH: ::std::os::raw::c_uint = 21515;
pub const TIOCEXCL: ::std::os::raw::c_uint = 21516;
pub const TIOCNXCL: ::std::os::raw::c_uint = 21517;
pub const TIOCSCTTY: ::std::os::raw::c_uint = 21518;
pub const TIOCGPGRP: ::std::os::raw::c_uint = 21519;
pub const TIOCSPGRP: ::std::os::raw::c_uint = 21520;
pub const TIOCOUTQ: ::std::os::raw::c_uint = 21521;
pub const TIOCSTI: ::std::os::raw::c_uint = 21522;
pub const TIOCGWINSZ: ::std::os::raw::c_uint = 21523;
pub const TIOCSWINSZ: ::std::os::raw::c_uint = 21524;
pub const TIOCMGET: ::std::os::raw::c_uint = 21525;
pub const TIOCMBIS: ::std::os::raw::c_uint = 21526;
pub const TIOCMBIC: ::std::os::raw::c_uint = 21527;
pub const TIOCMSET: ::std::os::raw::c_uint = 21528;
pub const TIOCGSOFTCAR: ::std::os::raw::c_uint = 21529;
pub const TIOCSSOFTCAR: ::std::os::raw::c_uint = 21530;
pub const FIONREAD: ::std::os::raw::c_uint = 21531;
pub const TIOCINQ: ::std::os::raw::c_uint = 21531;
pub const TIOCLINUX: ::std::os::raw::c_uint = 21532;
pub const TIOCCONS: ::std::os::raw::c_uint = 21533;
pub const TIOCGSERIAL: ::std::os::raw::c_uint = 21534;
pub const TIOCSSERIAL: ::std::os::raw::c_uint = 21535;
pub const TIOCPKT: ::std::os::raw::c_uint = 21536;
pub const FIONBIO: ::std::os::raw::c_uint = 21537;
pub const TIOCNOTTY: ::std::os::raw::c_uint = 21538;
pub const TIOCSETD: ::std::os::raw::c_uint = 21539;
pub const TIOCGETD: ::std::os::raw::c_uint = 21540;
pub const TCSBRKP: ::std::os::raw::c_uint = 21541;
pub const TIOCSBRK: ::std::os::raw::c_uint = 21543;
pub const TIOCCBRK: ::std::os::raw::c_uint = 21544;
pub const TIOCGSID: ::std::os::raw::c_uint = 21545;
pub const TIOCGRS485: ::std::os::raw::c_uint = 21550;
pub const TIOCSRS485: ::std::os::raw::c_uint = 21551;
pub const TCGETX: ::std::os::raw::c_uint = 21554;
pub const TCSETX: ::std::os::raw::c_uint = 21555;
pub const TCSETXF: ::std::os::raw::c_uint = 21556;
pub const TCSETXW: ::std::os::raw::c_uint = 21557;
pub const TIOCVHANGUP: ::std::os::raw::c_uint = 21559;
pub const FIONCLEX: ::std::os::raw::c_uint = 21584;
pub const FIOCLEX: ::std::os::raw::c_uint = 21585;
pub const FIOASYNC: ::std::os::raw::c_uint = 21586;
pub const TIOCSERCONFIG: ::std::os::raw::c_uint = 21587;
pub const TIOCSERGWILD: ::std::os::raw::c_uint = 21588;
pub const TIOCSERSWILD: ::std::os::raw::c_uint = 21589;
pub const TIOCGLCKTRMIOS: ::std::os::raw::c_uint = 21590;
pub const TIOCSLCKTRMIOS: ::std::os::raw::c_uint = 21591;
pub const TIOCSERGSTRUCT: ::std::os::raw::c_uint = 21592;
pub const TIOCSERGETLSR: ::std::os::raw::c_uint = 21593;
pub const TIOCSERGETMULTI: ::std::os::raw::c_uint = 21594;
pub const TIOCSERSETMULTI: ::std::os::raw::c_uint = 21595;
pub const TIOCMIWAIT: ::std::os::raw::c_uint = 21596;
pub const TIOCGICOUNT: ::std::os::raw::c_uint = 21597;
pub const FIOQSIZE: ::std::os::raw::c_uint = 21600;
pub const TIOCPKT_DATA: ::std::os::raw::c_uint = 0;
pub const TIOCPKT_FLUSHREAD: ::std::os::raw::c_uint = 1;
pub const TIOCPKT_FLUSHWRITE: ::std::os::raw::c_uint = 2;
pub const TIOCPKT_STOP: ::std::os::raw::c_uint = 4;
pub const TIOCPKT_START: ::std::os::raw::c_uint = 8;
pub const TIOCPKT_NOSTOP: ::std::os::raw::c_uint = 16;
pub const TIOCPKT_DOSTOP: ::std::os::raw::c_uint = 32;
pub const TIOCPKT_IOCTL: ::std::os::raw::c_uint = 64;
pub const TIOCSER_TEMT: ::std::os::raw::c_uint = 1;
pub const SIOCADDRT: ::std::os::raw::c_uint = 35083;
pub const SIOCDELRT: ::std::os::raw::c_uint = 35084;
pub const SIOCRTMSG: ::std::os::raw::c_uint = 35085;
pub const SIOCGIFNAME: ::std::os::raw::c_uint = 35088;
pub const SIOCSIFLINK: ::std::os::raw::c_uint = 35089;
pub const SIOCGIFCONF: ::std::os::raw::c_uint = 35090;
pub const SIOCGIFFLAGS: ::std::os::raw::c_uint = 35091;
pub const SIOCSIFFLAGS: ::std::os::raw::c_uint = 35092;
pub const SIOCGIFADDR: ::std::os::raw::c_uint = 35093;
pub const SIOCSIFADDR: ::std::os::raw::c_uint = 35094;
pub const SIOCGIFDSTADDR: ::std::os::raw::c_uint = 35095;
pub const SIOCSIFDSTADDR: ::std::os::raw::c_uint = 35096;
pub const SIOCGIFBRDADDR: ::std::os::raw::c_uint = 35097;
pub const SIOCSIFBRDADDR: ::std::os::raw::c_uint = 35098;
pub const SIOCGIFNETMASK: ::std::os::raw::c_uint = 35099;
pub const SIOCSIFNETMASK: ::std::os::raw::c_uint = 35100;
pub const SIOCGIFMETRIC: ::std::os::raw::c_uint = 35101;
pub const SIOCSIFMETRIC: ::std::os::raw::c_uint = 35102;
pub const SIOCGIFMEM: ::std::os::raw::c_uint = 35103;
pub const SIOCSIFMEM: ::std::os::raw::c_uint = 35104;
pub const SIOCGIFMTU: ::std::os::raw::c_uint = 35105;
pub const SIOCSIFMTU: ::std::os::raw::c_uint = 35106;
pub const SIOCSIFNAME: ::std::os::raw::c_uint = 35107;
pub const SIOCSIFHWADDR: ::std::os::raw::c_uint = 35108;
pub const SIOCGIFENCAP: ::std::os::raw::c_uint = 35109;
pub const SIOCSIFENCAP: ::std::os::raw::c_uint = 35110;
pub const SIOCGIFHWADDR: ::std::os::raw::c_uint = 35111;
pub const SIOCGIFSLAVE: ::std::os::raw::c_uint = 35113;
pub const SIOCSIFSLAVE: ::std::os::raw::c_uint = 35120;
pub const SIOCADDMULTI: ::std::os::raw::c_uint = 35121;
pub const SIOCDELMULTI: ::std::os::raw::c_uint = 35122;
pub const SIOCGIFINDEX: ::std::os::raw::c_uint = 35123;
pub const SIOGIFINDEX: ::std::os::raw::c_uint = 35123;
pub const SIOCSIFPFLAGS: ::std::os::raw::c_uint = 35124;
pub const SIOCGIFPFLAGS: ::std::os::raw::c_uint = 35125;
pub const SIOCDIFADDR: ::std::os::raw::c_uint = 35126;
pub const SIOCSIFHWBROADCAST: ::std::os::raw::c_uint = 35127;
pub const SIOCGIFCOUNT: ::std::os::raw::c_uint = 35128;
pub const SIOCGIFBR: ::std::os::raw::c_uint = 35136;
pub const SIOCSIFBR: ::std::os::raw::c_uint = 35137;
pub const SIOCGIFTXQLEN: ::std::os::raw::c_uint = 35138;
pub const SIOCSIFTXQLEN: ::std::os::raw::c_uint = 35139;
pub const SIOCDARP: ::std::os::raw::c_uint = 35155;
pub const SIOCGARP: ::std::os::raw::c_uint = 35156;
pub const SIOCSARP: ::std::os::raw::c_uint = 35157;
pub const SIOCDRARP: ::std::os::raw::c_uint = 35168;
pub const SIOCGRARP: ::std::os::raw::c_uint = 35169;
pub const SIOCSRARP: ::std::os::raw::c_uint = 35170;
pub const SIOCGIFMAP: ::std::os::raw::c_uint = 35184;
pub const SIOCSIFMAP: ::std::os::raw::c_uint = 35185;
pub const SIOCADDDLCI: ::std::os::raw::c_uint = 35200;
pub const SIOCDELDLCI: ::std::os::raw::c_uint = 35201;
pub const SIOCDEVPRIVATE: ::std::os::raw::c_uint = 35312;
pub const SIOCPROTOPRIVATE: ::std::os::raw::c_uint = 35296;
pub const NCC: ::std::os::raw::c_uint = 8;
pub const TIOCM_LE: ::std::os::raw::c_uint = 1;
pub const TIOCM_DTR: ::std::os::raw::c_uint = 2;
pub const TIOCM_RTS: ::std::os::raw::c_uint = 4;
pub const TIOCM_ST: ::std::os::raw::c_uint = 8;
pub const TIOCM_SR: ::std::os::raw::c_uint = 16;
pub const TIOCM_CTS: ::std::os::raw::c_uint = 32;
pub const TIOCM_CAR: ::std::os::raw::c_uint = 64;
pub const TIOCM_RNG: ::std::os::raw::c_uint = 128;
pub const TIOCM_DSR: ::std::os::raw::c_uint = 256;
pub const TIOCM_CD: ::std::os::raw::c_uint = 64;
pub const TIOCM_RI: ::std::os::raw::c_uint = 128;
pub const N_TTY: ::std::os::raw::c_uint = 0;
pub const N_SLIP: ::std::os::raw::c_uint = 1;
pub const N_MOUSE: ::std::os::raw::c_uint = 2;
pub const N_PPP: ::std::os::raw::c_uint = 3;
pub const N_STRIP: ::std::os::raw::c_uint = 4;
pub const N_AX25: ::std::os::raw::c_uint = 5;
pub const N_X25: ::std::os::raw::c_uint = 6;
pub const N_6PACK: ::std::os::raw::c_uint = 7;
pub const N_MASC: ::std::os::raw::c_uint = 8;
pub const N_R3964: ::std::os::raw::c_uint = 9;
pub const N_PROFIBUS_FDL: ::std::os::raw::c_uint = 10;
pub const N_IRDA: ::std::os::raw::c_uint = 11;
pub const N_SMSBLOCK: ::std::os::raw::c_uint = 12;
pub const N_HDLC: ::std::os::raw::c_uint = 13;
pub const N_SYNC_PPP: ::std::os::raw::c_uint = 14;
pub const N_HCI: ::std::os::raw::c_uint = 15;
pub const CEOL: u8 = b'\x00';
pub const CERASE: ::std::os::raw::c_uint = 127;
pub const CSTATUS: u8 = b'\x00';
pub const CMIN: ::std::os::raw::c_uint = 1;
pub const CQUIT: ::std::os::raw::c_uint = 28;
pub const CTIME: ::std::os::raw::c_uint = 0;
pub const CBRK: u8 = b'\x00';
pub const _SYS_TYPES_H: ::std::os::raw::c_uint = 1;
pub const __clock_t_defined: ::std::os::raw::c_uint = 1;
pub const __clockid_t_defined: ::std::os::raw::c_uint = 1;
pub const __timer_t_defined: ::std::os::raw::c_uint = 1;
pub const __BIT_TYPES_DEFINED__: ::std::os::raw::c_uint = 1;
pub const _ENDIAN_H: ::std::os::raw::c_uint = 1;
pub const __LITTLE_ENDIAN: ::std::os::raw::c_uint = 1234;
pub const __BIG_ENDIAN: ::std::os::raw::c_uint = 4321;
pub const __PDP_ENDIAN: ::std::os::raw::c_uint = 3412;
pub const __BYTE_ORDER: ::std::os::raw::c_uint = 1234;
pub const __FLOAT_WORD_ORDER: ::std::os::raw::c_uint = 1234;
pub const LITTLE_ENDIAN: ::std::os::raw::c_uint = 1234;
pub const BIG_ENDIAN: ::std::os::raw::c_uint = 4321;
pub const PDP_ENDIAN: ::std::os::raw::c_uint = 3412;
pub const BYTE_ORDER: ::std::os::raw::c_uint = 1234;
pub const _BITS_BYTESWAP_H: ::std::os::raw::c_uint = 1;
pub const _SYS_SYSMACROS_H: ::std::os::raw::c_uint = 1;
pub const _BITS_PTHREADTYPES_H: ::std::os::raw::c_uint = 1;
pub const __SIZEOF_PTHREAD_ATTR_T: ::std::os::raw::c_uint = 56;
pub const __SIZEOF_PTHREAD_MUTEX_T: ::std::os::raw::c_uint = 40;
pub const __SIZEOF_PTHREAD_MUTEXATTR_T: ::std::os::raw::c_uint = 4;
pub const __SIZEOF_PTHREAD_COND_T: ::std::os::raw::c_uint = 48;
pub const __SIZEOF_PTHREAD_CONDATTR_T: ::std::os::raw::c_uint = 4;
pub const __SIZEOF_PTHREAD_RWLOCK_T: ::std::os::raw::c_uint = 56;
pub const __SIZEOF_PTHREAD_RWLOCKATTR_T: ::std::os::raw::c_uint = 8;
pub const __SIZEOF_PTHREAD_BARRIER_T: ::std::os::raw::c_uint = 32;
pub const __SIZEOF_PTHREAD_BARRIERATTR_T: ::std::os::raw::c_uint = 4;
pub const __have_pthread_attr_t: ::std::os::raw::c_uint = 1;
pub const __PTHREAD_MUTEX_HAVE_PREV: ::std::os::raw::c_uint = 1;
pub const __BITS_PER_LONG: ::std::os::raw::c_uint = 64;
pub const INPUT_PROP_POINTER: ::std::os::raw::c_uint = 0;
pub const INPUT_PROP_DIRECT: ::std::os::raw::c_uint = 1;
pub const INPUT_PROP_BUTTONPAD: ::std::os::raw::c_uint = 2;
pub const INPUT_PROP_SEMI_MT: ::std::os::raw::c_uint = 3;
pub const INPUT_PROP_TOPBUTTONPAD: ::std::os::raw::c_uint = 4;
pub const INPUT_PROP_POINTING_STICK: ::std::os::raw::c_uint = 5;
pub const INPUT_PROP_ACCELEROMETER: ::std::os::raw::c_uint = 6;
pub const INPUT_PROP_MAX: ::std::os::raw::c_uint = 31;
pub const INPUT_PROP_CNT: ::std::os::raw::c_uint = 32;
pub const EV_SYN: ::std::os::raw::c_uint = 0;
pub const EV_KEY: ::std::os::raw::c_uint = 1;
pub const EV_REL: ::std::os::raw::c_uint = 2;
pub const EV_ABS: ::std::os::raw::c_uint = 3;
pub const EV_MSC: ::std::os::raw::c_uint = 4;
pub const EV_SW: ::std::os::raw::c_uint = 5;
pub const EV_LED: ::std::os::raw::c_uint = 17;
pub const EV_SND: ::std::os::raw::c_uint = 18;
pub const EV_REP: ::std::os::raw::c_uint = 20;
pub const EV_FF: ::std::os::raw::c_uint = 21;
pub const EV_PWR: ::std::os::raw::c_uint = 22;
pub const EV_FF_STATUS: ::std::os::raw::c_uint = 23;
pub const EV_MAX: ::std::os::raw::c_uint = 31;
pub const EV_CNT: ::std::os::raw::c_uint = 32;
pub const SYN_REPORT: ::std::os::raw::c_uint = 0;
pub const SYN_CONFIG: ::std::os::raw::c_uint = 1;
pub const SYN_MT_REPORT: ::std::os::raw::c_uint = 2;
pub const SYN_DROPPED: ::std::os::raw::c_uint = 3;
pub const SYN_MAX: ::std::os::raw::c_uint = 15;
pub const SYN_CNT: ::std::os::raw::c_uint = 16;
pub const KEY_RESERVED: ::std::os::raw::c_uint = 0;
pub const KEY_ESC: ::std::os::raw::c_uint = 1;
pub const KEY_1: ::std::os::raw::c_uint = 2;
pub const KEY_2: ::std::os::raw::c_uint = 3;
pub const KEY_3: ::std::os::raw::c_uint = 4;
pub const KEY_4: ::std::os::raw::c_uint = 5;
pub const KEY_5: ::std::os::raw::c_uint = 6;
pub const KEY_6: ::std::os::raw::c_uint = 7;
pub const KEY_7: ::std::os::raw::c_uint = 8;
pub const KEY_8: ::std::os::raw::c_uint = 9;
pub const KEY_9: ::std::os::raw::c_uint = 10;
pub const KEY_0: ::std::os::raw::c_uint = 11;
pub const KEY_MINUS: ::std::os::raw::c_uint = 12;
pub const KEY_EQUAL: ::std::os::raw::c_uint = 13;
pub const KEY_BACKSPACE: ::std::os::raw::c_uint = 14;
pub const KEY_TAB: ::std::os::raw::c_uint = 15;
pub const KEY_Q: ::std::os::raw::c_uint = 16;
pub const KEY_W: ::std::os::raw::c_uint = 17;
pub const KEY_E: ::std::os::raw::c_uint = 18;
pub const KEY_R: ::std::os::raw::c_uint = 19;
pub const KEY_T: ::std::os::raw::c_uint = 20;
pub const KEY_Y: ::std::os::raw::c_uint = 21;
pub const KEY_U: ::std::os::raw::c_uint = 22;
pub const KEY_I: ::std::os::raw::c_uint = 23;
pub const KEY_O: ::std::os::raw::c_uint = 24;
pub const KEY_P: ::std::os::raw::c_uint = 25;
pub const KEY_LEFTBRACE: ::std::os::raw::c_uint = 26;
pub const KEY_RIGHTBRACE: ::std::os::raw::c_uint = 27;
pub const KEY_ENTER: ::std::os::raw::c_uint = 28;
pub const KEY_LEFTCTRL: ::std::os::raw::c_uint = 29;
pub const KEY_A: ::std::os::raw::c_uint = 30;
pub const KEY_S: ::std::os::raw::c_uint = 31;
pub const KEY_D: ::std::os::raw::c_uint = 32;
pub const KEY_F: ::std::os::raw::c_uint = 33;
pub const KEY_G: ::std::os::raw::c_uint = 34;
pub const KEY_H: ::std::os::raw::c_uint = 35;
pub const KEY_J: ::std::os::raw::c_uint = 36;
pub const KEY_K: ::std::os::raw::c_uint = 37;
pub const KEY_L: ::std::os::raw::c_uint = 38;
pub const KEY_SEMICOLON: ::std::os::raw::c_uint = 39;
pub const KEY_APOSTROPHE: ::std::os::raw::c_uint = 40;
pub const KEY_GRAVE: ::std::os::raw::c_uint = 41;
pub const KEY_LEFTSHIFT: ::std::os::raw::c_uint = 42;
pub const KEY_BACKSLASH: ::std::os::raw::c_uint = 43;
pub const KEY_Z: ::std::os::raw::c_uint = 44;
pub const KEY_X: ::std::os::raw::c_uint = 45;
pub const KEY_C: ::std::os::raw::c_uint = 46;
pub const KEY_V: ::std::os::raw::c_uint = 47;
pub const KEY_B: ::std::os::raw::c_uint = 48;
pub const KEY_N: ::std::os::raw::c_uint = 49;
pub const KEY_M: ::std::os::raw::c_uint = 50;
pub const KEY_COMMA: ::std::os::raw::c_uint = 51;
pub const KEY_DOT: ::std::os::raw::c_uint = 52;
pub const KEY_SLASH: ::std::os::raw::c_uint = 53;
pub const KEY_RIGHTSHIFT: ::std::os::raw::c_uint = 54;
pub const KEY_KPASTERISK: ::std::os::raw::c_uint = 55;
pub const KEY_LEFTALT: ::std::os::raw::c_uint = 56;
pub const KEY_SPACE: ::std::os::raw::c_uint = 57;
pub const KEY_CAPSLOCK: ::std::os::raw::c_uint = 58;
pub const KEY_F1: ::std::os::raw::c_uint = 59;
pub const KEY_F2: ::std::os::raw::c_uint = 60;
pub const KEY_F3: ::std::os::raw::c_uint = 61;
pub const KEY_F4: ::std::os::raw::c_uint = 62;
pub const KEY_F5: ::std::os::raw::c_uint = 63;
pub const KEY_F6: ::std::os::raw::c_uint = 64;
pub const KEY_F7: ::std::os::raw::c_uint = 65;
pub const KEY_F8: ::std::os::raw::c_uint = 66;
pub const KEY_F9: ::std::os::raw::c_uint = 67;
pub const KEY_F10: ::std::os::raw::c_uint = 68;
pub const KEY_NUMLOCK: ::std::os::raw::c_uint = 69;
pub const KEY_SCROLLLOCK: ::std::os::raw::c_uint = 70;
pub const KEY_KP7: ::std::os::raw::c_uint = 71;
pub const KEY_KP8: ::std::os::raw::c_uint = 72;
pub const KEY_KP9: ::std::os::raw::c_uint = 73;
pub const KEY_KPMINUS: ::std::os::raw::c_uint = 74;
pub const KEY_KP4: ::std::os::raw::c_uint = 75;
pub const KEY_KP5: ::std::os::raw::c_uint = 76;
pub const KEY_KP6: ::std::os::raw::c_uint = 77;
pub const KEY_KPPLUS: ::std::os::raw::c_uint = 78;
pub const KEY_KP1: ::std::os::raw::c_uint = 79;
pub const KEY_KP2: ::std::os::raw::c_uint = 80;
pub const KEY_KP3: ::std::os::raw::c_uint = 81;
pub const KEY_KP0: ::std::os::raw::c_uint = 82;
pub const KEY_KPDOT: ::std::os::raw::c_uint = 83;
pub const KEY_ZENKAKUHANKAKU: ::std::os::raw::c_uint = 85;
pub const KEY_102ND: ::std::os::raw::c_uint = 86;
pub const KEY_F11: ::std::os::raw::c_uint = 87;
pub const KEY_F12: ::std::os::raw::c_uint = 88;
pub const KEY_RO: ::std::os::raw::c_uint = 89;
pub const KEY_KATAKANA: ::std::os::raw::c_uint = 90;
pub const KEY_HIRAGANA: ::std::os::raw::c_uint = 91;
pub const KEY_HENKAN: ::std::os::raw::c_uint = 92;
pub const KEY_KATAKANAHIRAGANA: ::std::os::raw::c_uint = 93;
pub const KEY_MUHENKAN: ::std::os::raw::c_uint = 94;
pub const KEY_KPJPCOMMA: ::std::os::raw::c_uint = 95;
pub const KEY_KPENTER: ::std::os::raw::c_uint = 96;
pub const KEY_RIGHTCTRL: ::std::os::raw::c_uint = 97;
pub const KEY_KPSLASH: ::std::os::raw::c_uint = 98;
pub const KEY_SYSRQ: ::std::os::raw::c_uint = 99;
pub const KEY_RIGHTALT: ::std::os::raw::c_uint = 100;
pub const KEY_LINEFEED: ::std::os::raw::c_uint = 101;
pub const KEY_HOME: ::std::os::raw::c_uint = 102;
pub const KEY_UP: ::std::os::raw::c_uint = 103;
pub const KEY_PAGEUP: ::std::os::raw::c_uint = 104;
pub const KEY_LEFT: ::std::os::raw::c_uint = 105;
pub const KEY_RIGHT: ::std::os::raw::c_uint = 106;
pub const KEY_END: ::std::os::raw::c_uint = 107;
pub const KEY_DOWN: ::std::os::raw::c_uint = 108;
pub const KEY_PAGEDOWN: ::std::os::raw::c_uint = 109;
pub const KEY_INSERT: ::std::os::raw::c_uint = 110;
pub const KEY_DELETE: ::std::os::raw::c_uint = 111;
pub const KEY_MACRO: ::std::os::raw::c_uint = 112;
pub const KEY_MUTE: ::std::os::raw::c_uint = 113;
pub const KEY_VOLUMEDOWN: ::std::os::raw::c_uint = 114;
pub const KEY_VOLUMEUP: ::std::os::raw::c_uint = 115;
pub const KEY_POWER: ::std::os::raw::c_uint = 116;
pub const KEY_KPEQUAL: ::std::os::raw::c_uint = 117;
pub const KEY_KPPLUSMINUS: ::std::os::raw::c_uint = 118;
pub const KEY_PAUSE: ::std::os::raw::c_uint = 119;
pub const KEY_SCALE: ::std::os::raw::c_uint = 120;
pub const KEY_KPCOMMA: ::std::os::raw::c_uint = 121;
pub const KEY_HANGEUL: ::std::os::raw::c_uint = 122;
pub const KEY_HANGUEL: ::std::os::raw::c_uint = 122;
pub const KEY_HANJA: ::std::os::raw::c_uint = 123;
pub const KEY_YEN: ::std::os::raw::c_uint = 124;
pub const KEY_LEFTMETA: ::std::os::raw::c_uint = 125;
pub const KEY_RIGHTMETA: ::std::os::raw::c_uint = 126;
pub const KEY_COMPOSE: ::std::os::raw::c_uint = 127;
pub const KEY_STOP: ::std::os::raw::c_uint = 128;
pub const KEY_AGAIN: ::std::os::raw::c_uint = 129;
pub const KEY_PROPS: ::std::os::raw::c_uint = 130;
pub const KEY_UNDO: ::std::os::raw::c_uint = 131;
pub const KEY_FRONT: ::std::os::raw::c_uint = 132;
pub const KEY_COPY: ::std::os::raw::c_uint = 133;
pub const KEY_OPEN: ::std::os::raw::c_uint = 134;
pub const KEY_PASTE: ::std::os::raw::c_uint = 135;
pub const KEY_FIND: ::std::os::raw::c_uint = 136;
pub const KEY_CUT: ::std::os::raw::c_uint = 137;
pub const KEY_HELP: ::std::os::raw::c_uint = 138;
pub const KEY_MENU: ::std::os::raw::c_uint = 139;
pub const KEY_CALC: ::std::os::raw::c_uint = 140;
pub const KEY_SETUP: ::std::os::raw::c_uint = 141;
pub const KEY_SLEEP: ::std::os::raw::c_uint = 142;
pub const KEY_WAKEUP: ::std::os::raw::c_uint = 143;
pub const KEY_FILE: ::std::os::raw::c_uint = 144;
pub const KEY_SENDFILE: ::std::os::raw::c_uint = 145;
pub const KEY_DELETEFILE: ::std::os::raw::c_uint = 146;
pub const KEY_XFER: ::std::os::raw::c_uint = 147;
pub const KEY_PROG1: ::std::os::raw::c_uint = 148;
pub const KEY_PROG2: ::std::os::raw::c_uint = 149;
pub const KEY_WWW: ::std::os::raw::c_uint = 150;
pub const KEY_MSDOS: ::std::os::raw::c_uint = 151;
pub const KEY_COFFEE: ::std::os::raw::c_uint = 152;
pub const KEY_SCREENLOCK: ::std::os::raw::c_uint = 152;
pub const KEY_ROTATE_DISPLAY: ::std::os::raw::c_uint = 153;
pub const KEY_DIRECTION: ::std::os::raw::c_uint = 153;
pub const KEY_CYCLEWINDOWS: ::std::os::raw::c_uint = 154;
pub const KEY_MAIL: ::std::os::raw::c_uint = 155;
pub const KEY_BOOKMARKS: ::std::os::raw::c_uint = 156;
pub const KEY_COMPUTER: ::std::os::raw::c_uint = 157;
pub const KEY_BACK: ::std::os::raw::c_uint = 158;
pub const KEY_FORWARD: ::std::os::raw::c_uint = 159;
pub const KEY_CLOSECD: ::std::os::raw::c_uint = 160;
pub const KEY_EJECTCD: ::std::os::raw::c_uint = 161;
pub const KEY_EJECTCLOSECD: ::std::os::raw::c_uint = 162;
pub const KEY_NEXTSONG: ::std::os::raw::c_uint = 163;
pub const KEY_PLAYPAUSE: ::std::os::raw::c_uint = 164;
pub const KEY_PREVIOUSSONG: ::std::os::raw::c_uint = 165;
pub const KEY_STOPCD: ::std::os::raw::c_uint = 166;
pub const KEY_RECORD: ::std::os::raw::c_uint = 167;
pub const KEY_REWIND: ::std::os::raw::c_uint = 168;
pub const KEY_PHONE: ::std::os::raw::c_uint = 169;
pub const KEY_ISO: ::std::os::raw::c_uint = 170;
pub const KEY_CONFIG: ::std::os::raw::c_uint = 171;
pub const KEY_HOMEPAGE: ::std::os::raw::c_uint = 172;
pub const KEY_REFRESH: ::std::os::raw::c_uint = 173;
pub const KEY_EXIT: ::std::os::raw::c_uint = 174;
pub const KEY_MOVE: ::std::os::raw::c_uint = 175;
pub const KEY_EDIT: ::std::os::raw::c_uint = 176;
pub const KEY_SCROLLUP: ::std::os::raw::c_uint = 177;
pub const KEY_SCROLLDOWN: ::std::os::raw::c_uint = 178;
pub const KEY_KPLEFTPAREN: ::std::os::raw::c_uint = 179;
pub const KEY_KPRIGHTPAREN: ::std::os::raw::c_uint = 180;
pub const KEY_NEW: ::std::os::raw::c_uint = 181;
pub const KEY_REDO: ::std::os::raw::c_uint = 182;
pub const KEY_F13: ::std::os::raw::c_uint = 183;
pub const KEY_F14: ::std::os::raw::c_uint = 184;
pub const KEY_F15: ::std::os::raw::c_uint = 185;
pub const KEY_F16: ::std::os::raw::c_uint = 186;
pub const KEY_F17: ::std::os::raw::c_uint = 187;
pub const KEY_F18: ::std::os::raw::c_uint = 188;
pub const KEY_F19: ::std::os::raw::c_uint = 189;
pub const KEY_F20: ::std::os::raw::c_uint = 190;
pub const KEY_F21: ::std::os::raw::c_uint = 191;
pub const KEY_F22: ::std::os::raw::c_uint = 192;
pub const KEY_F23: ::std::os::raw::c_uint = 193;
pub const KEY_F24: ::std::os::raw::c_uint = 194;
pub const KEY_PLAYCD: ::std::os::raw::c_uint = 200;
pub const KEY_PAUSECD: ::std::os::raw::c_uint = 201;
pub const KEY_PROG3: ::std::os::raw::c_uint = 202;
pub const KEY_PROG4: ::std::os::raw::c_uint = 203;
pub const KEY_DASHBOARD: ::std::os::raw::c_uint = 204;
pub const KEY_SUSPEND: ::std::os::raw::c_uint = 205;
pub const KEY_CLOSE: ::std::os::raw::c_uint = 206;
pub const KEY_PLAY: ::std::os::raw::c_uint = 207;
pub const KEY_FASTFORWARD: ::std::os::raw::c_uint = 208;
pub const KEY_BASSBOOST: ::std::os::raw::c_uint = 209;
pub const KEY_PRINT: ::std::os::raw::c_uint = 210;
pub const KEY_HP: ::std::os::raw::c_uint = 211;
pub const KEY_CAMERA: ::std::os::raw::c_uint = 212;
pub const KEY_SOUND: ::std::os::raw::c_uint = 213;
pub const KEY_QUESTION: ::std::os::raw::c_uint = 214;
pub const KEY_EMAIL: ::std::os::raw::c_uint = 215;
pub const KEY_CHAT: ::std::os::raw::c_uint = 216;
pub const KEY_SEARCH: ::std::os::raw::c_uint = 217;
pub const KEY_CONNECT: ::std::os::raw::c_uint = 218;
pub const KEY_FINANCE: ::std::os::raw::c_uint = 219;
pub const KEY_SPORT: ::std::os::raw::c_uint = 220;
pub const KEY_SHOP: ::std::os::raw::c_uint = 221;
pub const KEY_ALTERASE: ::std::os::raw::c_uint = 222;
pub const KEY_CANCEL: ::std::os::raw::c_uint = 223;
pub const KEY_BRIGHTNESSDOWN: ::std::os::raw::c_uint = 224;
pub const KEY_BRIGHTNESSUP: ::std::os::raw::c_uint = 225;
pub const KEY_MEDIA: ::std::os::raw::c_uint = 226;
pub const KEY_SWITCHVIDEOMODE: ::std::os::raw::c_uint = 227;
pub const KEY_KBDILLUMTOGGLE: ::std::os::raw::c_uint = 228;
pub const KEY_KBDILLUMDOWN: ::std::os::raw::c_uint = 229;
pub const KEY_KBDILLUMUP: ::std::os::raw::c_uint = 230;
pub const KEY_SEND: ::std::os::raw::c_uint = 231;
pub const KEY_REPLY: ::std::os::raw::c_uint = 232;
pub const KEY_FORWARDMAIL: ::std::os::raw::c_uint = 233;
pub const KEY_SAVE: ::std::os::raw::c_uint = 234;
pub const KEY_DOCUMENTS: ::std::os::raw::c_uint = 235;
pub const KEY_BATTERY: ::std::os::raw::c_uint = 236;
pub const KEY_BLUETOOTH: ::std::os::raw::c_uint = 237;
pub const KEY_WLAN: ::std::os::raw::c_uint = 238;
pub const KEY_UWB: ::std::os::raw::c_uint = 239;
pub const KEY_UNKNOWN: ::std::os::raw::c_uint = 240;
pub const KEY_VIDEO_NEXT: ::std::os::raw::c_uint = 241;
pub const KEY_VIDEO_PREV: ::std::os::raw::c_uint = 242;
pub const KEY_BRIGHTNESS_CYCLE: ::std::os::raw::c_uint = 243;
pub const KEY_BRIGHTNESS_AUTO: ::std::os::raw::c_uint = 244;
pub const KEY_BRIGHTNESS_ZERO: ::std::os::raw::c_uint = 244;
pub const KEY_DISPLAY_OFF: ::std::os::raw::c_uint = 245;
pub const KEY_WWAN: ::std::os::raw::c_uint = 246;
pub const KEY_WIMAX: ::std::os::raw::c_uint = 246;
pub const KEY_RFKILL: ::std::os::raw::c_uint = 247;
pub const KEY_MICMUTE: ::std::os::raw::c_uint = 248;
pub const BTN_MISC: ::std::os::raw::c_uint = 256;
pub const BTN_0: ::std::os::raw::c_uint = 256;
pub const BTN_1: ::std::os::raw::c_uint = 257;
pub const BTN_2: ::std::os::raw::c_uint = 258;
pub const BTN_3: ::std::os::raw::c_uint = 259;
pub const BTN_4: ::std::os::raw::c_uint = 260;
pub const BTN_5: ::std::os::raw::c_uint = 261;
pub const BTN_6: ::std::os::raw::c_uint = 262;
pub const BTN_7: ::std::os::raw::c_uint = 263;
pub const BTN_8: ::std::os::raw::c_uint = 264;
pub const BTN_9: ::std::os::raw::c_uint = 265;
pub const BTN_MOUSE: ::std::os::raw::c_uint = 272;
pub const BTN_LEFT: ::std::os::raw::c_uint = 272;
pub const BTN_RIGHT: ::std::os::raw::c_uint = 273;
pub const BTN_MIDDLE: ::std::os::raw::c_uint = 274;
pub const BTN_SIDE: ::std::os::raw::c_uint = 275;
pub const BTN_EXTRA: ::std::os::raw::c_uint = 276;
pub const BTN_FORWARD: ::std::os::raw::c_uint = 277;
pub const BTN_BACK: ::std::os::raw::c_uint = 278;
pub const BTN_TASK: ::std::os::raw::c_uint = 279;
pub const BTN_JOYSTICK: ::std::os::raw::c_uint = 288;
pub const BTN_TRIGGER: ::std::os::raw::c_uint = 288;
pub const BTN_THUMB: ::std::os::raw::c_uint = 289;
pub const BTN_THUMB2: ::std::os::raw::c_uint = 290;
pub const BTN_TOP: ::std::os::raw::c_uint = 291;
pub const BTN_TOP2: ::std::os::raw::c_uint = 292;
pub const BTN_PINKIE: ::std::os::raw::c_uint = 293;
pub const BTN_BASE: ::std::os::raw::c_uint = 294;
pub const BTN_BASE2: ::std::os::raw::c_uint = 295;
pub const BTN_BASE3: ::std::os::raw::c_uint = 296;
pub const BTN_BASE4: ::std::os::raw::c_uint = 297;
pub const BTN_BASE5: ::std::os::raw::c_uint = 298;
pub const BTN_BASE6: ::std::os::raw::c_uint = 299;
pub const BTN_DEAD: ::std::os::raw::c_uint = 303;
pub const BTN_GAMEPAD: ::std::os::raw::c_uint = 304;
pub const BTN_SOUTH: ::std::os::raw::c_uint = 304;
pub const BTN_A: ::std::os::raw::c_uint = 304;
pub const BTN_EAST: ::std::os::raw::c_uint = 305;
pub const BTN_B: ::std::os::raw::c_uint = 305;
pub const BTN_C: ::std::os::raw::c_uint = 306;
pub const BTN_NORTH: ::std::os::raw::c_uint = 307;
pub const BTN_X: ::std::os::raw::c_uint = 307;
pub const BTN_WEST: ::std::os::raw::c_uint = 308;
pub const BTN_Y: ::std::os::raw::c_uint = 308;
pub const BTN_Z: ::std::os::raw::c_uint = 309;
pub const BTN_TL: ::std::os::raw::c_uint = 310;
pub const BTN_TR: ::std::os::raw::c_uint = 311;
pub const BTN_TL2: ::std::os::raw::c_uint = 312;
pub const BTN_TR2: ::std::os::raw::c_uint = 313;
pub const BTN_SELECT: ::std::os::raw::c_uint = 314;
pub const BTN_START: ::std::os::raw::c_uint = 315;
pub const BTN_MODE: ::std::os::raw::c_uint = 316;
pub const BTN_THUMBL: ::std::os::raw::c_uint = 317;
pub const BTN_THUMBR: ::std::os::raw::c_uint = 318;
pub const BTN_DIGI: ::std::os::raw::c_uint = 320;
pub const BTN_TOOL_PEN: ::std::os::raw::c_uint = 320;
pub const BTN_TOOL_RUBBER: ::std::os::raw::c_uint = 321;
pub const BTN_TOOL_BRUSH: ::std::os::raw::c_uint = 322;
pub const BTN_TOOL_PENCIL: ::std::os::raw::c_uint = 323;
pub const BTN_TOOL_AIRBRUSH: ::std::os::raw::c_uint = 324;
pub const BTN_TOOL_FINGER: ::std::os::raw::c_uint = 325;
pub const BTN_TOOL_MOUSE: ::std::os::raw::c_uint = 326;
pub const BTN_TOOL_LENS: ::std::os::raw::c_uint = 327;
pub const BTN_TOOL_QUINTTAP: ::std::os::raw::c_uint = 328;
pub const BTN_TOUCH: ::std::os::raw::c_uint = 330;
pub const BTN_STYLUS: ::std::os::raw::c_uint = 331;
pub const BTN_STYLUS2: ::std::os::raw::c_uint = 332;
pub const BTN_TOOL_DOUBLETAP: ::std::os::raw::c_uint = 333;
pub const BTN_TOOL_TRIPLETAP: ::std::os::raw::c_uint = 334;
pub const BTN_TOOL_QUADTAP: ::std::os::raw::c_uint = 335;
pub const BTN_WHEEL: ::std::os::raw::c_uint = 336;
pub const BTN_GEAR_DOWN: ::std::os::raw::c_uint = 336;
pub const BTN_GEAR_UP: ::std::os::raw::c_uint = 337;
pub const KEY_OK: ::std::os::raw::c_uint = 352;
pub const KEY_SELECT: ::std::os::raw::c_uint = 353;
pub const KEY_GOTO: ::std::os::raw::c_uint = 354;
pub const KEY_CLEAR: ::std::os::raw::c_uint = 355;
pub const KEY_POWER2: ::std::os::raw::c_uint = 356;
pub const KEY_OPTION: ::std::os::raw::c_uint = 357;
pub const KEY_INFO: ::std::os::raw::c_uint = 358;
pub const KEY_TIME: ::std::os::raw::c_uint = 359;
pub const KEY_VENDOR: ::std::os::raw::c_uint = 360;
pub const KEY_ARCHIVE: ::std::os::raw::c_uint = 361;
pub const KEY_PROGRAM: ::std::os::raw::c_uint = 362;
pub const KEY_CHANNEL: ::std::os::raw::c_uint = 363;
pub const KEY_FAVORITES: ::std::os::raw::c_uint = 364;
pub const KEY_EPG: ::std::os::raw::c_uint = 365;
pub const KEY_PVR: ::std::os::raw::c_uint = 366;
pub const KEY_MHP: ::std::os::raw::c_uint = 367;
pub const KEY_LANGUAGE: ::std::os::raw::c_uint = 368;
pub const KEY_TITLE: ::std::os::raw::c_uint = 369;
pub const KEY_SUBTITLE: ::std::os::raw::c_uint = 370;
pub const KEY_ANGLE: ::std::os::raw::c_uint = 371;
pub const KEY_ZOOM: ::std::os::raw::c_uint = 372;
pub const KEY_MODE: ::std::os::raw::c_uint = 373;
pub const KEY_KEYBOARD: ::std::os::raw::c_uint = 374;
pub const KEY_SCREEN: ::std::os::raw::c_uint = 375;
pub const KEY_PC: ::std::os::raw::c_uint = 376;
pub const KEY_TV: ::std::os::raw::c_uint = 377;
pub const KEY_TV2: ::std::os::raw::c_uint = 378;
pub const KEY_VCR: ::std::os::raw::c_uint = 379;
pub const KEY_VCR2: ::std::os::raw::c_uint = 380;
pub const KEY_SAT: ::std::os::raw::c_uint = 381;
pub const KEY_SAT2: ::std::os::raw::c_uint = 382;
pub const KEY_CD: ::std::os::raw::c_uint = 383;
pub const KEY_TAPE: ::std::os::raw::c_uint = 384;
pub const KEY_RADIO: ::std::os::raw::c_uint = 385;
pub const KEY_TUNER: ::std::os::raw::c_uint = 386;
pub const KEY_PLAYER: ::std::os::raw::c_uint = 387;
pub const KEY_TEXT: ::std::os::raw::c_uint = 388;
pub const KEY_DVD: ::std::os::raw::c_uint = 389;
pub const KEY_AUX: ::std::os::raw::c_uint = 390;
pub const KEY_MP3: ::std::os::raw::c_uint = 391;
pub const KEY_AUDIO: ::std::os::raw::c_uint = 392;
pub const KEY_VIDEO: ::std::os::raw::c_uint = 393;
pub const KEY_DIRECTORY: ::std::os::raw::c_uint = 394;
pub const KEY_LIST: ::std::os::raw::c_uint = 395;
pub const KEY_MEMO: ::std::os::raw::c_uint = 396;
pub const KEY_CALENDAR: ::std::os::raw::c_uint = 397;
pub const KEY_RED: ::std::os::raw::c_uint = 398;
pub const KEY_GREEN: ::std::os::raw::c_uint = 399;
pub const KEY_YELLOW: ::std::os::raw::c_uint = 400;
pub const KEY_BLUE: ::std::os::raw::c_uint = 401;
pub const KEY_CHANNELUP: ::std::os::raw::c_uint = 402;
pub const KEY_CHANNELDOWN: ::std::os::raw::c_uint = 403;
pub const KEY_FIRST: ::std::os::raw::c_uint = 404;
pub const KEY_LAST: ::std::os::raw::c_uint = 405;
pub const KEY_AB: ::std::os::raw::c_uint = 406;
pub const KEY_NEXT: ::std::os::raw::c_uint = 407;
pub const KEY_RESTART: ::std::os::raw::c_uint = 408;
pub const KEY_SLOW: ::std::os::raw::c_uint = 409;
pub const KEY_SHUFFLE: ::std::os::raw::c_uint = 410;
pub const KEY_BREAK: ::std::os::raw::c_uint = 411;
pub const KEY_PREVIOUS: ::std::os::raw::c_uint = 412;
pub const KEY_DIGITS: ::std::os::raw::c_uint = 413;
pub const KEY_TEEN: ::std::os::raw::c_uint = 414;
pub const KEY_TWEN: ::std::os::raw::c_uint = 415;
pub const KEY_VIDEOPHONE: ::std::os::raw::c_uint = 416;
pub const KEY_GAMES: ::std::os::raw::c_uint = 417;
pub const KEY_ZOOMIN: ::std::os::raw::c_uint = 418;
pub const KEY_ZOOMOUT: ::std::os::raw::c_uint = 419;
pub const KEY_ZOOMRESET: ::std::os::raw::c_uint = 420;
pub const KEY_WORDPROCESSOR: ::std::os::raw::c_uint = 421;
pub const KEY_EDITOR: ::std::os::raw::c_uint = 422;
pub const KEY_SPREADSHEET: ::std::os::raw::c_uint = 423;
pub const KEY_GRAPHICSEDITOR: ::std::os::raw::c_uint = 424;
pub const KEY_PRESENTATION: ::std::os::raw::c_uint = 425;
pub const KEY_DATABASE: ::std::os::raw::c_uint = 426;
pub const KEY_NEWS: ::std::os::raw::c_uint = 427;
pub const KEY_VOICEMAIL: ::std::os::raw::c_uint = 428;
pub const KEY_ADDRESSBOOK: ::std::os::raw::c_uint = 429;
pub const KEY_MESSENGER: ::std::os::raw::c_uint = 430;
pub const KEY_DISPLAYTOGGLE: ::std::os::raw::c_uint = 431;
pub const KEY_BRIGHTNESS_TOGGLE: ::std::os::raw::c_uint = 431;
pub const KEY_SPELLCHECK: ::std::os::raw::c_uint = 432;
pub const KEY_LOGOFF: ::std::os::raw::c_uint = 433;
pub const KEY_DOLLAR: ::std::os::raw::c_uint = 434;
pub const KEY_EURO: ::std::os::raw::c_uint = 435;
pub const KEY_FRAMEBACK: ::std::os::raw::c_uint = 436;
pub const KEY_FRAMEFORWARD: ::std::os::raw::c_uint = 437;
pub const KEY_CONTEXT_MENU: ::std::os::raw::c_uint = 438;
pub const KEY_MEDIA_REPEAT: ::std::os::raw::c_uint = 439;
pub const KEY_10CHANNELSUP: ::std::os::raw::c_uint = 440;
pub const KEY_10CHANNELSDOWN: ::std::os::raw::c_uint = 441;
pub const KEY_IMAGES: ::std::os::raw::c_uint = 442;
pub const KEY_DEL_EOL: ::std::os::raw::c_uint = 448;
pub const KEY_DEL_EOS: ::std::os::raw::c_uint = 449;
pub const KEY_INS_LINE: ::std::os::raw::c_uint = 450;
pub const KEY_DEL_LINE: ::std::os::raw::c_uint = 451;
pub const KEY_FN: ::std::os::raw::c_uint = 464;
pub const KEY_FN_ESC: ::std::os::raw::c_uint = 465;
pub const KEY_FN_F1: ::std::os::raw::c_uint = 466;
pub const KEY_FN_F2: ::std::os::raw::c_uint = 467;
pub const KEY_FN_F3: ::std::os::raw::c_uint = 468;
pub const KEY_FN_F4: ::std::os::raw::c_uint = 469;
pub const KEY_FN_F5: ::std::os::raw::c_uint = 470;
pub const KEY_FN_F6: ::std::os::raw::c_uint = 471;
pub const KEY_FN_F7: ::std::os::raw::c_uint = 472;
pub const KEY_FN_F8: ::std::os::raw::c_uint = 473;
pub const KEY_FN_F9: ::std::os::raw::c_uint = 474;
pub const KEY_FN_F10: ::std::os::raw::c_uint = 475;
pub const KEY_FN_F11: ::std::os::raw::c_uint = 476;
pub const KEY_FN_F12: ::std::os::raw::c_uint = 477;
pub const KEY_FN_1: ::std::os::raw::c_uint = 478;
pub const KEY_FN_2: ::std::os::raw::c_uint = 479;
pub const KEY_FN_D: ::std::os::raw::c_uint = 480;
pub const KEY_FN_E: ::std::os::raw::c_uint = 481;
pub const KEY_FN_F: ::std::os::raw::c_uint = 482;
pub const KEY_FN_S: ::std::os::raw::c_uint = 483;
pub const KEY_FN_B: ::std::os::raw::c_uint = 484;
pub const KEY_BRL_DOT1: ::std::os::raw::c_uint = 497;
pub const KEY_BRL_DOT2: ::std::os::raw::c_uint = 498;
pub const KEY_BRL_DOT3: ::std::os::raw::c_uint = 499;
pub const KEY_BRL_DOT4: ::std::os::raw::c_uint = 500;
pub const KEY_BRL_DOT5: ::std::os::raw::c_uint = 501;
pub const KEY_BRL_DOT6: ::std::os::raw::c_uint = 502;
pub const KEY_BRL_DOT7: ::std::os::raw::c_uint = 503;
pub const KEY_BRL_DOT8: ::std::os::raw::c_uint = 504;
pub const KEY_BRL_DOT9: ::std::os::raw::c_uint = 505;
pub const KEY_BRL_DOT10: ::std::os::raw::c_uint = 506;
pub const KEY_NUMERIC_0: ::std::os::raw::c_uint = 512;
pub const KEY_NUMERIC_1: ::std::os::raw::c_uint = 513;
pub const KEY_NUMERIC_2: ::std::os::raw::c_uint = 514;
pub const KEY_NUMERIC_3: ::std::os::raw::c_uint = 515;
pub const KEY_NUMERIC_4: ::std::os::raw::c_uint = 516;
pub const KEY_NUMERIC_5: ::std::os::raw::c_uint = 517;
pub const KEY_NUMERIC_6: ::std::os::raw::c_uint = 518;
pub const KEY_NUMERIC_7: ::std::os::raw::c_uint = 519;
pub const KEY_NUMERIC_8: ::std::os::raw::c_uint = 520;
pub const KEY_NUMERIC_9: ::std::os::raw::c_uint = 521;
pub const KEY_NUMERIC_STAR: ::std::os::raw::c_uint = 522;
pub const KEY_NUMERIC_POUND: ::std::os::raw::c_uint = 523;
pub const KEY_NUMERIC_A: ::std::os::raw::c_uint = 524;
pub const KEY_NUMERIC_B: ::std::os::raw::c_uint = 525;
pub const KEY_NUMERIC_C: ::std::os::raw::c_uint = 526;
pub const KEY_NUMERIC_D: ::std::os::raw::c_uint = 527;
pub const KEY_CAMERA_FOCUS: ::std::os::raw::c_uint = 528;
pub const KEY_WPS_BUTTON: ::std::os::raw::c_uint = 529;
pub const KEY_TOUCHPAD_TOGGLE: ::std::os::raw::c_uint = 530;
pub const KEY_TOUCHPAD_ON: ::std::os::raw::c_uint = 531;
pub const KEY_TOUCHPAD_OFF: ::std::os::raw::c_uint = 532;
pub const KEY_CAMERA_ZOOMIN: ::std::os::raw::c_uint = 533;
pub const KEY_CAMERA_ZOOMOUT: ::std::os::raw::c_uint = 534;
pub const KEY_CAMERA_UP: ::std::os::raw::c_uint = 535;
pub const KEY_CAMERA_DOWN: ::std::os::raw::c_uint = 536;
pub const KEY_CAMERA_LEFT: ::std::os::raw::c_uint = 537;
pub const KEY_CAMERA_RIGHT: ::std::os::raw::c_uint = 538;
pub const KEY_ATTENDANT_ON: ::std::os::raw::c_uint = 539;
pub const KEY_ATTENDANT_OFF: ::std::os::raw::c_uint = 540;
pub const KEY_ATTENDANT_TOGGLE: ::std::os::raw::c_uint = 541;
pub const KEY_LIGHTS_TOGGLE: ::std::os::raw::c_uint = 542;
pub const BTN_DPAD_UP: ::std::os::raw::c_uint = 544;
pub const BTN_DPAD_DOWN: ::std::os::raw::c_uint = 545;
pub const BTN_DPAD_LEFT: ::std::os::raw::c_uint = 546;
pub const BTN_DPAD_RIGHT: ::std::os::raw::c_uint = 547;
pub const KEY_ALS_TOGGLE: ::std::os::raw::c_uint = 560;
pub const KEY_BUTTONCONFIG: ::std::os::raw::c_uint = 576;
pub const KEY_TASKMANAGER: ::std::os::raw::c_uint = 577;
pub const KEY_JOURNAL: ::std::os::raw::c_uint = 578;
pub const KEY_CONTROLPANEL: ::std::os::raw::c_uint = 579;
pub const KEY_APPSELECT: ::std::os::raw::c_uint = 580;
pub const KEY_SCREENSAVER: ::std::os::raw::c_uint = 581;
pub const KEY_VOICECOMMAND: ::std::os::raw::c_uint = 582;
pub const KEY_BRIGHTNESS_MIN: ::std::os::raw::c_uint = 592;
pub const KEY_BRIGHTNESS_MAX: ::std::os::raw::c_uint = 593;
pub const KEY_KBDINPUTASSIST_PREV: ::std::os::raw::c_uint = 608;
pub const KEY_KBDINPUTASSIST_NEXT: ::std::os::raw::c_uint = 609;
pub const KEY_KBDINPUTASSIST_PREVGROUP: ::std::os::raw::c_uint = 610;
pub const KEY_KBDINPUTASSIST_NEXTGROUP: ::std::os::raw::c_uint = 611;
pub const KEY_KBDINPUTASSIST_ACCEPT: ::std::os::raw::c_uint = 612;
pub const KEY_KBDINPUTASSIST_CANCEL: ::std::os::raw::c_uint = 613;
pub const KEY_RIGHT_UP: ::std::os::raw::c_uint = 614;
pub const KEY_RIGHT_DOWN: ::std::os::raw::c_uint = 615;
pub const KEY_LEFT_UP: ::std::os::raw::c_uint = 616;
pub const KEY_LEFT_DOWN: ::std::os::raw::c_uint = 617;
pub const KEY_ROOT_MENU: ::std::os::raw::c_uint = 618;
pub const KEY_MEDIA_TOP_MENU: ::std::os::raw::c_uint = 619;
pub const KEY_NUMERIC_11: ::std::os::raw::c_uint = 620;
pub const KEY_NUMERIC_12: ::std::os::raw::c_uint = 621;
pub const KEY_AUDIO_DESC: ::std::os::raw::c_uint = 622;
pub const KEY_3D_MODE: ::std::os::raw::c_uint = 623;
pub const KEY_NEXT_FAVORITE: ::std::os::raw::c_uint = 624;
pub const KEY_STOP_RECORD: ::std::os::raw::c_uint = 625;
pub const KEY_PAUSE_RECORD: ::std::os::raw::c_uint = 626;
pub const KEY_VOD: ::std::os::raw::c_uint = 627;
pub const KEY_UNMUTE: ::std::os::raw::c_uint = 628;
pub const KEY_FASTREVERSE: ::std::os::raw::c_uint = 629;
pub const KEY_SLOWREVERSE: ::std::os::raw::c_uint = 630;
pub const KEY_DATA: ::std::os::raw::c_uint = 631;
pub const BTN_TRIGGER_HAPPY: ::std::os::raw::c_uint = 704;
pub const BTN_TRIGGER_HAPPY1: ::std::os::raw::c_uint = 704;
pub const BTN_TRIGGER_HAPPY2: ::std::os::raw::c_uint = 705;
pub const BTN_TRIGGER_HAPPY3: ::std::os::raw::c_uint = 706;
pub const BTN_TRIGGER_HAPPY4: ::std::os::raw::c_uint = 707;
pub const BTN_TRIGGER_HAPPY5: ::std::os::raw::c_uint = 708;
pub const BTN_TRIGGER_HAPPY6: ::std::os::raw::c_uint = 709;
pub const BTN_TRIGGER_HAPPY7: ::std::os::raw::c_uint = 710;
pub const BTN_TRIGGER_HAPPY8: ::std::os::raw::c_uint = 711;
pub const BTN_TRIGGER_HAPPY9: ::std::os::raw::c_uint = 712;
pub const BTN_TRIGGER_HAPPY10: ::std::os::raw::c_uint = 713;
pub const BTN_TRIGGER_HAPPY11: ::std::os::raw::c_uint = 714;
pub const BTN_TRIGGER_HAPPY12: ::std::os::raw::c_uint = 715;
pub const BTN_TRIGGER_HAPPY13: ::std::os::raw::c_uint = 716;
pub const BTN_TRIGGER_HAPPY14: ::std::os::raw::c_uint = 717;
pub const BTN_TRIGGER_HAPPY15: ::std::os::raw::c_uint = 718;
pub const BTN_TRIGGER_HAPPY16: ::std::os::raw::c_uint = 719;
pub const BTN_TRIGGER_HAPPY17: ::std::os::raw::c_uint = 720;
pub const BTN_TRIGGER_HAPPY18: ::std::os::raw::c_uint = 721;
pub const BTN_TRIGGER_HAPPY19: ::std::os::raw::c_uint = 722;
pub const BTN_TRIGGER_HAPPY20: ::std::os::raw::c_uint = 723;
pub const BTN_TRIGGER_HAPPY21: ::std::os::raw::c_uint = 724;
pub const BTN_TRIGGER_HAPPY22: ::std::os::raw::c_uint = 725;
pub const BTN_TRIGGER_HAPPY23: ::std::os::raw::c_uint = 726;
pub const BTN_TRIGGER_HAPPY24: ::std::os::raw::c_uint = 727;
pub const BTN_TRIGGER_HAPPY25: ::std::os::raw::c_uint = 728;
pub const BTN_TRIGGER_HAPPY26: ::std::os::raw::c_uint = 729;
pub const BTN_TRIGGER_HAPPY27: ::std::os::raw::c_uint = 730;
pub const BTN_TRIGGER_HAPPY28: ::std::os::raw::c_uint = 731;
pub const BTN_TRIGGER_HAPPY29: ::std::os::raw::c_uint = 732;
pub const BTN_TRIGGER_HAPPY30: ::std::os::raw::c_uint = 733;
pub const BTN_TRIGGER_HAPPY31: ::std::os::raw::c_uint = 734;
pub const BTN_TRIGGER_HAPPY32: ::std::os::raw::c_uint = 735;
pub const BTN_TRIGGER_HAPPY33: ::std::os::raw::c_uint = 736;
pub const BTN_TRIGGER_HAPPY34: ::std::os::raw::c_uint = 737;
pub const BTN_TRIGGER_HAPPY35: ::std::os::raw::c_uint = 738;
pub const BTN_TRIGGER_HAPPY36: ::std::os::raw::c_uint = 739;
pub const BTN_TRIGGER_HAPPY37: ::std::os::raw::c_uint = 740;
pub const BTN_TRIGGER_HAPPY38: ::std::os::raw::c_uint = 741;
pub const BTN_TRIGGER_HAPPY39: ::std::os::raw::c_uint = 742;
pub const BTN_TRIGGER_HAPPY40: ::std::os::raw::c_uint = 743;
pub const KEY_MIN_INTERESTING: ::std::os::raw::c_uint = 113;
pub const KEY_MAX: ::std::os::raw::c_uint = 767;
pub const KEY_CNT: ::std::os::raw::c_uint = 768;
pub const REL_X: ::std::os::raw::c_uint = 0;
pub const REL_Y: ::std::os::raw::c_uint = 1;
pub const REL_Z: ::std::os::raw::c_uint = 2;
pub const REL_RX: ::std::os::raw::c_uint = 3;
pub const REL_RY: ::std::os::raw::c_uint = 4;
pub const REL_RZ: ::std::os::raw::c_uint = 5;
pub const REL_HWHEEL: ::std::os::raw::c_uint = 6;
pub const REL_DIAL: ::std::os::raw::c_uint = 7;
pub const REL_WHEEL: ::std::os::raw::c_uint = 8;
pub const REL_MISC: ::std::os::raw::c_uint = 9;
pub const REL_MAX: ::std::os::raw::c_uint = 15;
pub const REL_CNT: ::std::os::raw::c_uint = 16;
pub const ABS_X: ::std::os::raw::c_uint = 0;
pub const ABS_Y: ::std::os::raw::c_uint = 1;
pub const ABS_Z: ::std::os::raw::c_uint = 2;
pub const ABS_RX: ::std::os::raw::c_uint = 3;
pub const ABS_RY: ::std::os::raw::c_uint = 4;
pub const ABS_RZ: ::std::os::raw::c_uint = 5;
pub const ABS_THROTTLE: ::std::os::raw::c_uint = 6;
pub const ABS_RUDDER: ::std::os::raw::c_uint = 7;
pub const ABS_WHEEL: ::std::os::raw::c_uint = 8;
pub const ABS_GAS: ::std::os::raw::c_uint = 9;
pub const ABS_BRAKE: ::std::os::raw::c_uint = 10;
pub const ABS_HAT0X: ::std::os::raw::c_uint = 16;
pub const ABS_HAT0Y: ::std::os::raw::c_uint = 17;
pub const ABS_HAT1X: ::std::os::raw::c_uint = 18;
pub const ABS_HAT1Y: ::std::os::raw::c_uint = 19;
pub const ABS_HAT2X: ::std::os::raw::c_uint = 20;
pub const ABS_HAT2Y: ::std::os::raw::c_uint = 21;
pub const ABS_HAT3X: ::std::os::raw::c_uint = 22;
pub const ABS_HAT3Y: ::std::os::raw::c_uint = 23;
pub const ABS_PRESSURE: ::std::os::raw::c_uint = 24;
pub const ABS_DISTANCE: ::std::os::raw::c_uint = 25;
pub const ABS_TILT_X: ::std::os::raw::c_uint = 26;
pub const ABS_TILT_Y: ::std::os::raw::c_uint = 27;
pub const ABS_TOOL_WIDTH: ::std::os::raw::c_uint = 28;
pub const ABS_VOLUME: ::std::os::raw::c_uint = 32;
pub const ABS_MISC: ::std::os::raw::c_uint = 40;
pub const ABS_MT_SLOT: ::std::os::raw::c_uint = 47;
pub const ABS_MT_TOUCH_MAJOR: ::std::os::raw::c_uint = 48;
pub const ABS_MT_TOUCH_MINOR: ::std::os::raw::c_uint = 49;
pub const ABS_MT_WIDTH_MAJOR: ::std::os::raw::c_uint = 50;
pub const ABS_MT_WIDTH_MINOR: ::std::os::raw::c_uint = 51;
pub const ABS_MT_ORIENTATION: ::std::os::raw::c_uint = 52;
pub const ABS_MT_POSITION_X: ::std::os::raw::c_uint = 53;
pub const ABS_MT_POSITION_Y: ::std::os::raw::c_uint = 54;
pub const ABS_MT_TOOL_TYPE: ::std::os::raw::c_uint = 55;
pub const ABS_MT_BLOB_ID: ::std::os::raw::c_uint = 56;
pub const ABS_MT_TRACKING_ID: ::std::os::raw::c_uint = 57;
pub const ABS_MT_PRESSURE: ::std::os::raw::c_uint = 58;
pub const ABS_MT_DISTANCE: ::std::os::raw::c_uint = 59;
pub const ABS_MT_TOOL_X: ::std::os::raw::c_uint = 60;
pub const ABS_MT_TOOL_Y: ::std::os::raw::c_uint = 61;
pub const ABS_MAX: ::std::os::raw::c_uint = 63;
pub const ABS_CNT: ::std::os::raw::c_uint = 64;
pub const SW_LID: ::std::os::raw::c_uint = 0;
pub const SW_TABLET_MODE: ::std::os::raw::c_uint = 1;
pub const SW_HEADPHONE_INSERT: ::std::os::raw::c_uint = 2;
pub const SW_RFKILL_ALL: ::std::os::raw::c_uint = 3;
pub const SW_RADIO: ::std::os::raw::c_uint = 3;
pub const SW_MICROPHONE_INSERT: ::std::os::raw::c_uint = 4;
pub const SW_DOCK: ::std::os::raw::c_uint = 5;
pub const SW_LINEOUT_INSERT: ::std::os::raw::c_uint = 6;
pub const SW_JACK_PHYSICAL_INSERT: ::std::os::raw::c_uint = 7;
pub const SW_VIDEOOUT_INSERT: ::std::os::raw::c_uint = 8;
pub const SW_CAMERA_LENS_COVER: ::std::os::raw::c_uint = 9;
pub const SW_KEYPAD_SLIDE: ::std::os::raw::c_uint = 10;
pub const SW_FRONT_PROXIMITY: ::std::os::raw::c_uint = 11;
pub const SW_ROTATE_LOCK: ::std::os::raw::c_uint = 12;
pub const SW_LINEIN_INSERT: ::std::os::raw::c_uint = 13;
pub const SW_MUTE_DEVICE: ::std::os::raw::c_uint = 14;
pub const SW_PEN_INSERTED: ::std::os::raw::c_uint = 15;
pub const SW_MAX: ::std::os::raw::c_uint = 15;
pub const SW_CNT: ::std::os::raw::c_uint = 16;
pub const MSC_SERIAL: ::std::os::raw::c_uint = 0;
pub const MSC_PULSELED: ::std::os::raw::c_uint = 1;
pub const MSC_GESTURE: ::std::os::raw::c_uint = 2;
pub const MSC_RAW: ::std::os::raw::c_uint = 3;
pub const MSC_SCAN: ::std::os::raw::c_uint = 4;
pub const MSC_TIMESTAMP: ::std::os::raw::c_uint = 5;
pub const MSC_MAX: ::std::os::raw::c_uint = 7;
pub const MSC_CNT: ::std::os::raw::c_uint = 8;
pub const LED_NUML: ::std::os::raw::c_uint = 0;
pub const LED_CAPSL: ::std::os::raw::c_uint = 1;
pub const LED_SCROLLL: ::std::os::raw::c_uint = 2;
pub const LED_COMPOSE: ::std::os::raw::c_uint = 3;
pub const LED_KANA: ::std::os::raw::c_uint = 4;
pub const LED_SLEEP: ::std::os::raw::c_uint = 5;
pub const LED_SUSPEND: ::std::os::raw::c_uint = 6;
pub const LED_MUTE: ::std::os::raw::c_uint = 7;
pub const LED_MISC: ::std::os::raw::c_uint = 8;
pub const LED_MAIL: ::std::os::raw::c_uint = 9;
pub const LED_CHARGING: ::std::os::raw::c_uint = 10;
pub const LED_MAX: ::std::os::raw::c_uint = 15;
pub const LED_CNT: ::std::os::raw::c_uint = 16;
pub const REP_DELAY: ::std::os::raw::c_uint = 0;
pub const REP_PERIOD: ::std::os::raw::c_uint = 1;
pub const REP_MAX: ::std::os::raw::c_uint = 1;
pub const REP_CNT: ::std::os::raw::c_uint = 2;
pub const SND_CLICK: ::std::os::raw::c_uint = 0;
pub const SND_BELL: ::std::os::raw::c_uint = 1;
pub const SND_TONE: ::std::os::raw::c_uint = 2;
pub const SND_MAX: ::std::os::raw::c_uint = 7;
pub const SND_CNT: ::std::os::raw::c_uint = 8;
pub const EV_VERSION: ::std::os::raw::c_uint = 65537;
pub const ID_BUS: ::std::os::raw::c_uint = 0;
pub const ID_VENDOR: ::std::os::raw::c_uint = 1;
pub const ID_PRODUCT: ::std::os::raw::c_uint = 2;
pub const ID_VERSION: ::std::os::raw::c_uint = 3;
pub const BUS_PCI: ::std::os::raw::c_uint = 1;
pub const BUS_ISAPNP: ::std::os::raw::c_uint = 2;
pub const BUS_USB: ::std::os::raw::c_uint = 3;
pub const BUS_HIL: ::std::os::raw::c_uint = 4;
pub const BUS_BLUETOOTH: ::std::os::raw::c_uint = 5;
pub const BUS_VIRTUAL: ::std::os::raw::c_uint = 6;
pub const BUS_ISA: ::std::os::raw::c_uint = 16;
pub const BUS_I8042: ::std::os::raw::c_uint = 17;
pub const BUS_XTKBD: ::std::os::raw::c_uint = 18;
pub const BUS_RS232: ::std::os::raw::c_uint = 19;
pub const BUS_GAMEPORT: ::std::os::raw::c_uint = 20;
pub const BUS_PARPORT: ::std::os::raw::c_uint = 21;
pub const BUS_AMIGA: ::std::os::raw::c_uint = 22;
pub const BUS_ADB: ::std::os::raw::c_uint = 23;
pub const BUS_I2C: ::std::os::raw::c_uint = 24;
pub const BUS_HOST: ::std::os::raw::c_uint = 25;
pub const BUS_GSC: ::std::os::raw::c_uint = 26;
pub const BUS_ATARI: ::std::os::raw::c_uint = 27;
pub const BUS_SPI: ::std::os::raw::c_uint = 28;
pub const BUS_RMI: ::std::os::raw::c_uint = 29;
pub const BUS_CEC: ::std::os::raw::c_uint = 30;
pub const BUS_INTEL_ISHTP: ::std::os::raw::c_uint = 31;
pub const MT_TOOL_FINGER: ::std::os::raw::c_uint = 0;
pub const MT_TOOL_PEN: ::std::os::raw::c_uint = 1;
pub const MT_TOOL_PALM: ::std::os::raw::c_uint = 2;
pub const MT_TOOL_MAX: ::std::os::raw::c_uint = 2;
pub const FF_STATUS_STOPPED: ::std::os::raw::c_uint = 0;
pub const FF_STATUS_PLAYING: ::std::os::raw::c_uint = 1;
pub const FF_STATUS_MAX: ::std::os::raw::c_uint = 1;
pub const FF_RUMBLE: ::std::os::raw::c_uint = 80;
pub const FF_PERIODIC: ::std::os::raw::c_uint = 81;
pub const FF_CONSTANT: ::std::os::raw::c_uint = 82;
pub const FF_SPRING: ::std::os::raw::c_uint = 83;
pub const FF_FRICTION: ::std::os::raw::c_uint = 84;
pub const FF_DAMPER: ::std::os::raw::c_uint = 85;
pub const FF_INERTIA: ::std::os::raw::c_uint = 86;
pub const FF_RAMP: ::std::os::raw::c_uint = 87;
pub const FF_EFFECT_MIN: ::std::os::raw::c_uint = 80;
pub const FF_EFFECT_MAX: ::std::os::raw::c_uint = 87;
pub const FF_SQUARE: ::std::os::raw::c_uint = 88;
pub const FF_TRIANGLE: ::std::os::raw::c_uint = 89;
pub const FF_SINE: ::std::os::raw::c_uint = 90;
pub const FF_SAW_UP: ::std::os::raw::c_uint = 91;
pub const FF_SAW_DOWN: ::std::os::raw::c_uint = 92;
pub const FF_CUSTOM: ::std::os::raw::c_uint = 93;
pub const FF_WAVEFORM_MIN: ::std::os::raw::c_uint = 88;
pub const FF_WAVEFORM_MAX: ::std::os::raw::c_uint = 93;
pub const FF_GAIN: ::std::os::raw::c_uint = 96;
pub const FF_AUTOCENTER: ::std::os::raw::c_uint = 97;
pub const FF_MAX_EFFECTS: ::std::os::raw::c_uint = 96;
pub const FF_MAX: ::std::os::raw::c_uint = 127;
pub const FF_CNT: ::std::os::raw::c_uint = 128;
pub type __u_char = ::std::os::raw::c_uchar;
pub type __u_short = ::std::os::raw::c_ushort;
pub type __u_int = ::std::os::raw::c_uint;
pub type __u_long = ::std::os::raw::c_ulong;
pub type __int8_t = ::std::os::raw::c_char;
pub type __uint8_t = ::std::os::raw::c_uchar;
pub type __int16_t = ::std::os::raw::c_short;
pub type __uint16_t = ::std::os::raw::c_ushort;
pub type __int32_t = ::std::os::raw::c_int;
pub type __uint32_t = ::std::os::raw::c_uint;
pub type __int64_t = ::std::os::raw::c_long;
pub type __uint64_t = ::std::os::raw::c_ulong;
pub type __quad_t = ::std::os::raw::c_long;
pub type __u_quad_t = ::std::os::raw::c_ulong;
pub type __dev_t = ::std::os::raw::c_ulong;
pub type __uid_t = ::std::os::raw::c_uint;
pub type __gid_t = ::std::os::raw::c_uint;
pub type __ino_t = ::std::os::raw::c_ulong;
pub type __ino64_t = ::std::os::raw::c_ulong;
pub type __mode_t = ::std::os::raw::c_uint;
pub type __nlink_t = ::std::os::raw::c_ulong;
pub type __off_t = ::std::os::raw::c_long;
pub type __off64_t = ::std::os::raw::c_long;
pub type __pid_t = ::std::os::raw::c_int;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct __fsid_t {
    pub __val: [::std::os::raw::c_int; 2usize],
}
#[test]
fn bindgen_test_layout___fsid_t() {
    assert_eq!(::std::mem::size_of::<__fsid_t>() , 8usize , concat ! (
               "Size of: " , stringify ! ( __fsid_t ) ));
    assert_eq! (::std::mem::align_of::<__fsid_t>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( __fsid_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const __fsid_t ) ) . __val as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( __fsid_t ) , "::" ,
                stringify ! ( __val ) ));
}
impl Clone for __fsid_t {
    fn clone(&self) -> Self { *self }
}
pub type __clock_t = ::std::os::raw::c_long;
pub type __rlim_t = ::std::os::raw::c_ulong;
pub type __rlim64_t = ::std::os::raw::c_ulong;
pub type __id_t = ::std::os::raw::c_uint;
pub type __time_t = ::std::os::raw::c_long;
pub type __useconds_t = ::std::os::raw::c_uint;
pub type __suseconds_t = ::std::os::raw::c_long;
pub type __daddr_t = ::std::os::raw::c_int;
pub type __key_t = ::std::os::raw::c_int;
pub type __clockid_t = ::std::os::raw::c_int;
pub type __timer_t = *mut ::std::os::raw::c_void;
pub type __blksize_t = ::std::os::raw::c_long;
pub type __blkcnt_t = ::std::os::raw::c_long;
pub type __blkcnt64_t = ::std::os::raw::c_long;
pub type __fsblkcnt_t = ::std::os::raw::c_ulong;
pub type __fsblkcnt64_t = ::std::os::raw::c_ulong;
pub type __fsfilcnt_t = ::std::os::raw::c_ulong;
pub type __fsfilcnt64_t = ::std::os::raw::c_ulong;
pub type __fsword_t = ::std::os::raw::c_long;
pub type __ssize_t = ::std::os::raw::c_long;
pub type __syscall_slong_t = ::std::os::raw::c_long;
pub type __syscall_ulong_t = ::std::os::raw::c_ulong;
pub type __loff_t = __off64_t;
pub type __qaddr_t = *mut __quad_t;
pub type __caddr_t = *mut ::std::os::raw::c_char;
pub type __intptr_t = ::std::os::raw::c_long;
pub type __socklen_t = ::std::os::raw::c_uint;
pub type time_t = __time_t;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct timeval {
    pub tv_sec: __time_t,
    pub tv_usec: __suseconds_t,
}
#[test]
fn bindgen_test_layout_timeval() {
    assert_eq!(::std::mem::size_of::<timeval>() , 16usize , concat ! (
               "Size of: " , stringify ! ( timeval ) ));
    assert_eq! (::std::mem::align_of::<timeval>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( timeval ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const timeval ) ) . tv_sec as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( timeval ) , "::" ,
                stringify ! ( tv_sec ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const timeval ) ) . tv_usec as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( timeval ) , "::" ,
                stringify ! ( tv_usec ) ));
}
impl Clone for timeval {
    fn clone(&self) -> Self { *self }
}
pub type __sig_atomic_t = ::std::os::raw::c_int;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct __sigset_t {
    pub __val: [::std::os::raw::c_ulong; 16usize],
}
#[test]
fn bindgen_test_layout___sigset_t() {
    assert_eq!(::std::mem::size_of::<__sigset_t>() , 128usize , concat ! (
               "Size of: " , stringify ! ( __sigset_t ) ));
    assert_eq! (::std::mem::align_of::<__sigset_t>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( __sigset_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const __sigset_t ) ) . __val as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( __sigset_t ) , "::" ,
                stringify ! ( __val ) ));
}
impl Clone for __sigset_t {
    fn clone(&self) -> Self { *self }
}
pub type sigset_t = __sigset_t;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct timespec {
    pub tv_sec: __time_t,
    pub tv_nsec: __syscall_slong_t,
}
#[test]
fn bindgen_test_layout_timespec() {
    assert_eq!(::std::mem::size_of::<timespec>() , 16usize , concat ! (
               "Size of: " , stringify ! ( timespec ) ));
    assert_eq! (::std::mem::align_of::<timespec>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( timespec ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const timespec ) ) . tv_sec as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( timespec ) , "::" ,
                stringify ! ( tv_sec ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const timespec ) ) . tv_nsec as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( timespec ) , "::" ,
                stringify ! ( tv_nsec ) ));
}
impl Clone for timespec {
    fn clone(&self) -> Self { *self }
}
pub type suseconds_t = __suseconds_t;
pub type __fd_mask = ::std::os::raw::c_long;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct fd_set {
    pub __fds_bits: [__fd_mask; 16usize],
}
#[test]
fn bindgen_test_layout_fd_set() {
    assert_eq!(::std::mem::size_of::<fd_set>() , 128usize , concat ! (
               "Size of: " , stringify ! ( fd_set ) ));
    assert_eq! (::std::mem::align_of::<fd_set>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( fd_set ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const fd_set ) ) . __fds_bits as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( fd_set ) , "::" ,
                stringify ! ( __fds_bits ) ));
}
impl Clone for fd_set {
    fn clone(&self) -> Self { *self }
}
pub type fd_mask = __fd_mask;
extern "C" {
    pub fn select(__nfds: ::std::os::raw::c_int, __readfds: *mut fd_set,
                  __writefds: *mut fd_set, __exceptfds: *mut fd_set,
                  __timeout: *mut timeval) -> ::std::os::raw::c_int;
}
extern "C" {
    pub fn pselect(__nfds: ::std::os::raw::c_int, __readfds: *mut fd_set,
                   __writefds: *mut fd_set, __exceptfds: *mut fd_set,
                   __timeout: *const timespec, __sigmask: *const __sigset_t)
     -> ::std::os::raw::c_int;
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct timezone {
    pub tz_minuteswest: ::std::os::raw::c_int,
    pub tz_dsttime: ::std::os::raw::c_int,
}
#[test]
fn bindgen_test_layout_timezone() {
    assert_eq!(::std::mem::size_of::<timezone>() , 8usize , concat ! (
               "Size of: " , stringify ! ( timezone ) ));
    assert_eq! (::std::mem::align_of::<timezone>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( timezone ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const timezone ) ) . tz_minuteswest as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( timezone ) , "::" ,
                stringify ! ( tz_minuteswest ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const timezone ) ) . tz_dsttime as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( timezone ) , "::" ,
                stringify ! ( tz_dsttime ) ));
}
impl Clone for timezone {
    fn clone(&self) -> Self { *self }
}
pub type __timezone_ptr_t = *mut timezone;
extern "C" {
    pub fn gettimeofday(__tv: *mut timeval, __tz: __timezone_ptr_t)
     -> ::std::os::raw::c_int;
}
extern "C" {
    pub fn settimeofday(__tv: *const timeval, __tz: *const timezone)
     -> ::std::os::raw::c_int;
}
extern "C" {
    pub fn adjtime(__delta: *const timeval, __olddelta: *mut timeval)
     -> ::std::os::raw::c_int;
}
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum __itimer_which {
    ITIMER_REAL = 0,
    ITIMER_VIRTUAL = 1,
    ITIMER_PROF = 2,
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct itimerval {
    pub it_interval: timeval,
    pub it_value: timeval,
}
#[test]
fn bindgen_test_layout_itimerval() {
    assert_eq!(::std::mem::size_of::<itimerval>() , 32usize , concat ! (
               "Size of: " , stringify ! ( itimerval ) ));
    assert_eq! (::std::mem::align_of::<itimerval>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( itimerval ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const itimerval ) ) . it_interval as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( itimerval ) , "::" ,
                stringify ! ( it_interval ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const itimerval ) ) . it_value as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( itimerval ) , "::" ,
                stringify ! ( it_value ) ));
}
impl Clone for itimerval {
    fn clone(&self) -> Self { *self }
}
pub type __itimer_which_t = ::std::os::raw::c_int;
extern "C" {
    pub fn getitimer(__which: __itimer_which_t, __value: *mut itimerval)
     -> ::std::os::raw::c_int;
}
extern "C" {
    pub fn setitimer(__which: __itimer_which_t, __new: *const itimerval,
                     __old: *mut itimerval) -> ::std::os::raw::c_int;
}
extern "C" {
    pub fn utimes(__file: *const ::std::os::raw::c_char,
                  __tvp: *const timeval) -> ::std::os::raw::c_int;
}
extern "C" {
    pub fn lutimes(__file: *const ::std::os::raw::c_char,
                   __tvp: *const timeval) -> ::std::os::raw::c_int;
}
extern "C" {
    pub fn futimes(__fd: ::std::os::raw::c_int, __tvp: *const timeval)
     -> ::std::os::raw::c_int;
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct winsize {
    pub ws_row: ::std::os::raw::c_ushort,
    pub ws_col: ::std::os::raw::c_ushort,
    pub ws_xpixel: ::std::os::raw::c_ushort,
    pub ws_ypixel: ::std::os::raw::c_ushort,
}
#[test]
fn bindgen_test_layout_winsize() {
    assert_eq!(::std::mem::size_of::<winsize>() , 8usize , concat ! (
               "Size of: " , stringify ! ( winsize ) ));
    assert_eq! (::std::mem::align_of::<winsize>() , 2usize , concat ! (
                "Alignment of " , stringify ! ( winsize ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const winsize ) ) . ws_row as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( winsize ) , "::" ,
                stringify ! ( ws_row ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const winsize ) ) . ws_col as * const _ as
                usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( winsize ) , "::" ,
                stringify ! ( ws_col ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const winsize ) ) . ws_xpixel as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( winsize ) , "::" ,
                stringify ! ( ws_xpixel ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const winsize ) ) . ws_ypixel as * const _ as
                usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( winsize ) , "::" ,
                stringify ! ( ws_ypixel ) ));
}
impl Clone for winsize {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct termio {
    pub c_iflag: ::std::os::raw::c_ushort,
    pub c_oflag: ::std::os::raw::c_ushort,
    pub c_cflag: ::std::os::raw::c_ushort,
    pub c_lflag: ::std::os::raw::c_ushort,
    pub c_line: ::std::os::raw::c_uchar,
    pub c_cc: [::std::os::raw::c_uchar; 8usize],
}
#[test]
fn bindgen_test_layout_termio() {
    assert_eq!(::std::mem::size_of::<termio>() , 18usize , concat ! (
               "Size of: " , stringify ! ( termio ) ));
    assert_eq! (::std::mem::align_of::<termio>() , 2usize , concat ! (
                "Alignment of " , stringify ! ( termio ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const termio ) ) . c_iflag as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( termio ) , "::" ,
                stringify ! ( c_iflag ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const termio ) ) . c_oflag as * const _ as
                usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( termio ) , "::" ,
                stringify ! ( c_oflag ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const termio ) ) . c_cflag as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( termio ) , "::" ,
                stringify ! ( c_cflag ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const termio ) ) . c_lflag as * const _ as
                usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( termio ) , "::" ,
                stringify ! ( c_lflag ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const termio ) ) . c_line as * const _ as usize
                } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( termio ) , "::" ,
                stringify ! ( c_line ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const termio ) ) . c_cc as * const _ as usize }
                , 9usize , concat ! (
                "Alignment of field: " , stringify ! ( termio ) , "::" ,
                stringify ! ( c_cc ) ));
}
impl Clone for termio {
    fn clone(&self) -> Self { *self }
}
extern "C" {
    pub fn ioctl(__fd: ::std::os::raw::c_int,
                 __request: ::std::os::raw::c_ulong, ...)
     -> ::std::os::raw::c_int;
}
pub type u_char = __u_char;
pub type u_short = __u_short;
pub type u_int = __u_int;
pub type u_long = __u_long;
pub type quad_t = __quad_t;
pub type u_quad_t = __u_quad_t;
pub type fsid_t = __fsid_t;
pub type loff_t = __loff_t;
pub type ino_t = __ino_t;
pub type dev_t = __dev_t;
pub type gid_t = __gid_t;
pub type mode_t = __mode_t;
pub type nlink_t = __nlink_t;
pub type uid_t = __uid_t;
pub type off_t = __off_t;
pub type pid_t = __pid_t;
pub type id_t = __id_t;
pub type daddr_t = __daddr_t;
pub type caddr_t = __caddr_t;
pub type key_t = __key_t;
pub type clock_t = __clock_t;
pub type clockid_t = __clockid_t;
pub type timer_t = __timer_t;
pub type ulong = ::std::os::raw::c_ulong;
pub type ushort = ::std::os::raw::c_ushort;
pub type uint = ::std::os::raw::c_uint;
pub type u_int8_t = ::std::os::raw::c_uchar;
pub type u_int16_t = ::std::os::raw::c_ushort;
pub type u_int32_t = ::std::os::raw::c_uint;
pub type u_int64_t = ::std::os::raw::c_ulong;
pub type register_t = ::std::os::raw::c_long;
extern "C" {
    pub fn gnu_dev_major(__dev: ::std::os::raw::c_ulonglong)
     -> ::std::os::raw::c_uint;
}
extern "C" {
    pub fn gnu_dev_minor(__dev: ::std::os::raw::c_ulonglong)
     -> ::std::os::raw::c_uint;
}
extern "C" {
    pub fn gnu_dev_makedev(__major: ::std::os::raw::c_uint,
                           __minor: ::std::os::raw::c_uint)
     -> ::std::os::raw::c_ulonglong;
}
pub type blksize_t = __blksize_t;
pub type blkcnt_t = __blkcnt_t;
pub type fsblkcnt_t = __fsblkcnt_t;
pub type fsfilcnt_t = __fsfilcnt_t;
pub type pthread_t = ::std::os::raw::c_ulong;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct pthread_attr_t {
    pub __size: __BindgenUnionField<[::std::os::raw::c_char; 56usize]>,
    pub __align: __BindgenUnionField<::std::os::raw::c_long>,
    pub bindgen_union_field: [u64; 7usize],
}
#[test]
fn bindgen_test_layout_pthread_attr_t() {
    assert_eq!(::std::mem::size_of::<pthread_attr_t>() , 56usize , concat ! (
               "Size of: " , stringify ! ( pthread_attr_t ) ));
    assert_eq! (::std::mem::align_of::<pthread_attr_t>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( pthread_attr_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_attr_t ) ) . __size as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_attr_t ) , "::"
                , stringify ! ( __size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_attr_t ) ) . __align as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_attr_t ) , "::"
                , stringify ! ( __align ) ));
}
impl Clone for pthread_attr_t {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct __pthread_internal_list {
    pub __prev: *mut __pthread_internal_list,
    pub __next: *mut __pthread_internal_list,
}
#[test]
fn bindgen_test_layout___pthread_internal_list() {
    assert_eq!(::std::mem::size_of::<__pthread_internal_list>() , 16usize ,
               concat ! (
               "Size of: " , stringify ! ( __pthread_internal_list ) ));
    assert_eq! (::std::mem::align_of::<__pthread_internal_list>() , 8usize ,
                concat ! (
                "Alignment of " , stringify ! ( __pthread_internal_list ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const __pthread_internal_list ) ) . __prev as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( __pthread_internal_list
                ) , "::" , stringify ! ( __prev ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const __pthread_internal_list ) ) . __next as *
                const _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( __pthread_internal_list
                ) , "::" , stringify ! ( __next ) ));
}
impl Clone for __pthread_internal_list {
    fn clone(&self) -> Self { *self }
}
pub type __pthread_list_t = __pthread_internal_list;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct pthread_mutex_t {
    pub __data: __BindgenUnionField<pthread_mutex_t___pthread_mutex_s>,
    pub __size: __BindgenUnionField<[::std::os::raw::c_char; 40usize]>,
    pub __align: __BindgenUnionField<::std::os::raw::c_long>,
    pub bindgen_union_field: [u64; 5usize],
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct pthread_mutex_t___pthread_mutex_s {
    pub __lock: ::std::os::raw::c_int,
    pub __count: ::std::os::raw::c_uint,
    pub __owner: ::std::os::raw::c_int,
    pub __nusers: ::std::os::raw::c_uint,
    pub __kind: ::std::os::raw::c_int,
    pub __spins: ::std::os::raw::c_short,
    pub __elision: ::std::os::raw::c_short,
    pub __list: __pthread_list_t,
}
#[test]
fn bindgen_test_layout_pthread_mutex_t___pthread_mutex_s() {
    assert_eq!(::std::mem::size_of::<pthread_mutex_t___pthread_mutex_s>() ,
               40usize , concat ! (
               "Size of: " , stringify ! ( pthread_mutex_t___pthread_mutex_s )
               ));
    assert_eq! (::std::mem::align_of::<pthread_mutex_t___pthread_mutex_s>() ,
                8usize , concat ! (
                "Alignment of " , stringify ! (
                pthread_mutex_t___pthread_mutex_s ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) .
                __lock as * const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! (
                __lock ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) .
                __count as * const _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! (
                __count ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) .
                __owner as * const _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! (
                __owner ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) .
                __nusers as * const _ as usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! (
                __nusers ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) .
                __kind as * const _ as usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! (
                __kind ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) .
                __spins as * const _ as usize } , 20usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! (
                __spins ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) .
                __elision as * const _ as usize } , 22usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! (
                __elision ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) .
                __list as * const _ as usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! (
                __list ) ));
}
impl Clone for pthread_mutex_t___pthread_mutex_s {
    fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_pthread_mutex_t() {
    assert_eq!(::std::mem::size_of::<pthread_mutex_t>() , 40usize , concat ! (
               "Size of: " , stringify ! ( pthread_mutex_t ) ));
    assert_eq! (::std::mem::align_of::<pthread_mutex_t>() , 8usize , concat !
                ( "Alignment of " , stringify ! ( pthread_mutex_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutex_t ) ) . __data as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_mutex_t ) ,
                "::" , stringify ! ( __data ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutex_t ) ) . __size as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_mutex_t ) ,
                "::" , stringify ! ( __size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutex_t ) ) . __align as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_mutex_t ) ,
                "::" , stringify ! ( __align ) ));
}
impl Clone for pthread_mutex_t {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct pthread_mutexattr_t {
    pub __size: __BindgenUnionField<[::std::os::raw::c_char; 4usize]>,
    pub __align: __BindgenUnionField<::std::os::raw::c_int>,
    pub bindgen_union_field: u32,
}
#[test]
fn bindgen_test_layout_pthread_mutexattr_t() {
    assert_eq!(::std::mem::size_of::<pthread_mutexattr_t>() , 4usize , concat
               ! ( "Size of: " , stringify ! ( pthread_mutexattr_t ) ));
    assert_eq! (::std::mem::align_of::<pthread_mutexattr_t>() , 4usize ,
                concat ! (
                "Alignment of " , stringify ! ( pthread_mutexattr_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutexattr_t ) ) . __size as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_mutexattr_t ) ,
                "::" , stringify ! ( __size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_mutexattr_t ) ) . __align as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_mutexattr_t ) ,
                "::" , stringify ! ( __align ) ));
}
impl Clone for pthread_mutexattr_t {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct pthread_cond_t {
    pub __data: __BindgenUnionField<pthread_cond_t__bindgen_ty_1>,
    pub __size: __BindgenUnionField<[::std::os::raw::c_char; 48usize]>,
    pub __align: __BindgenUnionField<::std::os::raw::c_longlong>,
    pub bindgen_union_field: [u64; 6usize],
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct pthread_cond_t__bindgen_ty_1 {
    pub __lock: ::std::os::raw::c_int,
    pub __futex: ::std::os::raw::c_uint,
    pub __total_seq: ::std::os::raw::c_ulonglong,
    pub __wakeup_seq: ::std::os::raw::c_ulonglong,
    pub __woken_seq: ::std::os::raw::c_ulonglong,
    pub __mutex: *mut ::std::os::raw::c_void,
    pub __nwaiters: ::std::os::raw::c_uint,
    pub __broadcast_seq: ::std::os::raw::c_uint,
}
#[test]
fn bindgen_test_layout_pthread_cond_t__bindgen_ty_1() {
    assert_eq!(::std::mem::size_of::<pthread_cond_t__bindgen_ty_1>() , 48usize
               , concat ! (
               "Size of: " , stringify ! ( pthread_cond_t__bindgen_ty_1 ) ));
    assert_eq! (::std::mem::align_of::<pthread_cond_t__bindgen_ty_1>() ,
                8usize , concat ! (
                "Alignment of " , stringify ! ( pthread_cond_t__bindgen_ty_1 )
                ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) . __lock
                as * const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! ( __lock )
                ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) .
                __futex as * const _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! ( __futex
                ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) .
                __total_seq as * const _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! (
                __total_seq ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) .
                __wakeup_seq as * const _ as usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! (
                __wakeup_seq ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) .
                __woken_seq as * const _ as usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! (
                __woken_seq ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) .
                __mutex as * const _ as usize } , 32usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! ( __mutex
                ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) .
                __nwaiters as * const _ as usize } , 40usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! (
                __nwaiters ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) .
                __broadcast_seq as * const _ as usize } , 44usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! (
                __broadcast_seq ) ));
}
impl Clone for pthread_cond_t__bindgen_ty_1 {
    fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_pthread_cond_t() {
    assert_eq!(::std::mem::size_of::<pthread_cond_t>() , 48usize , concat ! (
               "Size of: " , stringify ! ( pthread_cond_t ) ));
    assert_eq! (::std::mem::align_of::<pthread_cond_t>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( pthread_cond_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_cond_t ) ) . __data as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_cond_t ) , "::"
                , stringify ! ( __data ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_cond_t ) ) . __size as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_cond_t ) , "::"
                , stringify ! ( __size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_cond_t ) ) . __align as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_cond_t ) , "::"
                , stringify ! ( __align ) ));
}
impl Clone for pthread_cond_t {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct pthread_condattr_t {
    pub __size: __BindgenUnionField<[::std::os::raw::c_char; 4usize]>,
    pub __align: __BindgenUnionField<::std::os::raw::c_int>,
    pub bindgen_union_field: u32,
}
#[test]
fn bindgen_test_layout_pthread_condattr_t() {
    assert_eq!(::std::mem::size_of::<pthread_condattr_t>() , 4usize , concat !
               ( "Size of: " , stringify ! ( pthread_condattr_t ) ));
    assert_eq! (::std::mem::align_of::<pthread_condattr_t>() , 4usize , concat
                ! ( "Alignment of " , stringify ! ( pthread_condattr_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_condattr_t ) ) . __size as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_condattr_t ) ,
                "::" , stringify ! ( __size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_condattr_t ) ) . __align as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_condattr_t ) ,
                "::" , stringify ! ( __align ) ));
}
impl Clone for pthread_condattr_t {
    fn clone(&self) -> Self { *self }
}
pub type pthread_key_t = ::std::os::raw::c_uint;
pub type pthread_once_t = ::std::os::raw::c_int;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct pthread_rwlock_t {
    pub __data: __BindgenUnionField<pthread_rwlock_t__bindgen_ty_1>,
    pub __size: __BindgenUnionField<[::std::os::raw::c_char; 56usize]>,
    pub __align: __BindgenUnionField<::std::os::raw::c_long>,
    pub bindgen_union_field: [u64; 7usize],
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct pthread_rwlock_t__bindgen_ty_1 {
    pub __lock: ::std::os::raw::c_int,
    pub __nr_readers: ::std::os::raw::c_uint,
    pub __readers_wakeup: ::std::os::raw::c_uint,
    pub __writer_wakeup: ::std::os::raw::c_uint,
    pub __nr_readers_queued: ::std::os::raw::c_uint,
    pub __nr_writers_queued: ::std::os::raw::c_uint,
    pub __writer: ::std::os::raw::c_int,
    pub __shared: ::std::os::raw::c_int,
    pub __rwelision: ::std::os::raw::c_char,
    pub __pad1: [::std::os::raw::c_uchar; 7usize],
    pub __pad2: ::std::os::raw::c_ulong,
    pub __flags: ::std::os::raw::c_uint,
}
#[test]
fn bindgen_test_layout_pthread_rwlock_t__bindgen_ty_1() {
    assert_eq!(::std::mem::size_of::<pthread_rwlock_t__bindgen_ty_1>() ,
               56usize , concat ! (
               "Size of: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 )
               ));
    assert_eq! (::std::mem::align_of::<pthread_rwlock_t__bindgen_ty_1>() ,
                8usize , concat ! (
                "Alignment of " , stringify ! ( pthread_rwlock_t__bindgen_ty_1
                ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) .
                __lock as * const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __lock
                ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) .
                __nr_readers as * const _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! (
                __nr_readers ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) .
                __readers_wakeup as * const _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! (
                __readers_wakeup ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) .
                __writer_wakeup as * const _ as usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! (
                __writer_wakeup ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) .
                __nr_readers_queued as * const _ as usize } , 16usize , concat
                ! (
                "Alignment of field: " , stringify ! (
                pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! (
                __nr_readers_queued ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) .
                __nr_writers_queued as * const _ as usize } , 20usize , concat
                ! (
                "Alignment of field: " , stringify ! (
                pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! (
                __nr_writers_queued ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) .
                __writer as * const _ as usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! (
                __writer ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) .
                __shared as * const _ as usize } , 28usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! (
                __shared ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) .
                __rwelision as * const _ as usize } , 32usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! (
                __rwelision ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) .
                __pad1 as * const _ as usize } , 33usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __pad1
                ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) .
                __pad2 as * const _ as usize } , 40usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __pad2
                ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) .
                __flags as * const _ as usize } , 48usize , concat ! (
                "Alignment of field: " , stringify ! (
                pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! (
                __flags ) ));
}
impl Clone for pthread_rwlock_t__bindgen_ty_1 {
    fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_pthread_rwlock_t() {
    assert_eq!(::std::mem::size_of::<pthread_rwlock_t>() , 56usize , concat !
               ( "Size of: " , stringify ! ( pthread_rwlock_t ) ));
    assert_eq! (::std::mem::align_of::<pthread_rwlock_t>() , 8usize , concat !
                ( "Alignment of " , stringify ! ( pthread_rwlock_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t ) ) . __data as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_rwlock_t ) ,
                "::" , stringify ! ( __data ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t ) ) . __size as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_rwlock_t ) ,
                "::" , stringify ! ( __size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlock_t ) ) . __align as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_rwlock_t ) ,
                "::" , stringify ! ( __align ) ));
}
impl Clone for pthread_rwlock_t {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct pthread_rwlockattr_t {
    pub __size: __BindgenUnionField<[::std::os::raw::c_char; 8usize]>,
    pub __align: __BindgenUnionField<::std::os::raw::c_long>,
    pub bindgen_union_field: u64,
}
#[test]
fn bindgen_test_layout_pthread_rwlockattr_t() {
    assert_eq!(::std::mem::size_of::<pthread_rwlockattr_t>() , 8usize , concat
               ! ( "Size of: " , stringify ! ( pthread_rwlockattr_t ) ));
    assert_eq! (::std::mem::align_of::<pthread_rwlockattr_t>() , 8usize ,
                concat ! (
                "Alignment of " , stringify ! ( pthread_rwlockattr_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlockattr_t ) ) . __size as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_rwlockattr_t )
                , "::" , stringify ! ( __size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_rwlockattr_t ) ) . __align as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_rwlockattr_t )
                , "::" , stringify ! ( __align ) ));
}
impl Clone for pthread_rwlockattr_t {
    fn clone(&self) -> Self { *self }
}
pub type pthread_spinlock_t = ::std::os::raw::c_int;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct pthread_barrier_t {
    pub __size: __BindgenUnionField<[::std::os::raw::c_char; 32usize]>,
    pub __align: __BindgenUnionField<::std::os::raw::c_long>,
    pub bindgen_union_field: [u64; 4usize],
}
#[test]
fn bindgen_test_layout_pthread_barrier_t() {
    assert_eq!(::std::mem::size_of::<pthread_barrier_t>() , 32usize , concat !
               ( "Size of: " , stringify ! ( pthread_barrier_t ) ));
    assert_eq! (::std::mem::align_of::<pthread_barrier_t>() , 8usize , concat
                ! ( "Alignment of " , stringify ! ( pthread_barrier_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_barrier_t ) ) . __size as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_barrier_t ) ,
                "::" , stringify ! ( __size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_barrier_t ) ) . __align as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_barrier_t ) ,
                "::" , stringify ! ( __align ) ));
}
impl Clone for pthread_barrier_t {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct pthread_barrierattr_t {
    pub __size: __BindgenUnionField<[::std::os::raw::c_char; 4usize]>,
    pub __align: __BindgenUnionField<::std::os::raw::c_int>,
    pub bindgen_union_field: u32,
}
#[test]
fn bindgen_test_layout_pthread_barrierattr_t() {
    assert_eq!(::std::mem::size_of::<pthread_barrierattr_t>() , 4usize ,
               concat ! ( "Size of: " , stringify ! ( pthread_barrierattr_t )
               ));
    assert_eq! (::std::mem::align_of::<pthread_barrierattr_t>() , 4usize ,
                concat ! (
                "Alignment of " , stringify ! ( pthread_barrierattr_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_barrierattr_t ) ) . __size as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_barrierattr_t )
                , "::" , stringify ! ( __size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const pthread_barrierattr_t ) ) . __align as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( pthread_barrierattr_t )
                , "::" , stringify ! ( __align ) ));
}
impl Clone for pthread_barrierattr_t {
    fn clone(&self) -> Self { *self }
}
pub type __s8 = ::std::os::raw::c_char;
pub type __u8 = ::std::os::raw::c_uchar;
pub type __s16 = ::std::os::raw::c_short;
pub type __u16 = ::std::os::raw::c_ushort;
pub type __s32 = ::std::os::raw::c_int;
pub type __u32 = ::std::os::raw::c_uint;
pub type __s64 = ::std::os::raw::c_longlong;
pub type __u64 = ::std::os::raw::c_ulonglong;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct __kernel_fd_set {
    pub fds_bits: [::std::os::raw::c_ulong; 16usize],
}
#[test]
fn bindgen_test_layout___kernel_fd_set() {
    assert_eq!(::std::mem::size_of::<__kernel_fd_set>() , 128usize , concat !
               ( "Size of: " , stringify ! ( __kernel_fd_set ) ));
    assert_eq! (::std::mem::align_of::<__kernel_fd_set>() , 8usize , concat !
                ( "Alignment of " , stringify ! ( __kernel_fd_set ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const __kernel_fd_set ) ) . fds_bits as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( __kernel_fd_set ) ,
                "::" , stringify ! ( fds_bits ) ));
}
impl Clone for __kernel_fd_set {
    fn clone(&self) -> Self { *self }
}
pub type __kernel_sighandler_t =
    ::std::option::Option<unsafe extern "C" fn(arg1: ::std::os::raw::c_int)>;
pub type __kernel_key_t = ::std::os::raw::c_int;
pub type __kernel_mqd_t = ::std::os::raw::c_int;
pub type __kernel_old_uid_t = ::std::os::raw::c_ushort;
pub type __kernel_old_gid_t = ::std::os::raw::c_ushort;
pub type __kernel_old_dev_t = ::std::os::raw::c_ulong;
pub type __kernel_long_t = ::std::os::raw::c_long;
pub type __kernel_ulong_t = ::std::os::raw::c_ulong;
pub type __kernel_ino_t = __kernel_ulong_t;
pub type __kernel_mode_t = ::std::os::raw::c_uint;
pub type __kernel_pid_t = ::std::os::raw::c_int;
pub type __kernel_ipc_pid_t = ::std::os::raw::c_int;
pub type __kernel_uid_t = ::std::os::raw::c_uint;
pub type __kernel_gid_t = ::std::os::raw::c_uint;
pub type __kernel_suseconds_t = __kernel_long_t;
pub type __kernel_daddr_t = ::std::os::raw::c_int;
pub type __kernel_uid32_t = ::std::os::raw::c_uint;
pub type __kernel_gid32_t = ::std::os::raw::c_uint;
pub type __kernel_size_t = __kernel_ulong_t;
pub type __kernel_ssize_t = __kernel_long_t;
pub type __kernel_ptrdiff_t = __kernel_long_t;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct __kernel_fsid_t {
    pub val: [::std::os::raw::c_int; 2usize],
}
#[test]
fn bindgen_test_layout___kernel_fsid_t() {
    assert_eq!(::std::mem::size_of::<__kernel_fsid_t>() , 8usize , concat ! (
               "Size of: " , stringify ! ( __kernel_fsid_t ) ));
    assert_eq! (::std::mem::align_of::<__kernel_fsid_t>() , 4usize , concat !
                ( "Alignment of " , stringify ! ( __kernel_fsid_t ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const __kernel_fsid_t ) ) . val as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( __kernel_fsid_t ) ,
                "::" , stringify ! ( val ) ));
}
impl Clone for __kernel_fsid_t {
    fn clone(&self) -> Self { *self }
}
pub type __kernel_off_t = __kernel_long_t;
pub type __kernel_loff_t = ::std::os::raw::c_longlong;
pub type __kernel_time_t = __kernel_long_t;
pub type __kernel_clock_t = __kernel_long_t;
pub type __kernel_timer_t = ::std::os::raw::c_int;
pub type __kernel_clockid_t = ::std::os::raw::c_int;
pub type __kernel_caddr_t = *mut ::std::os::raw::c_char;
pub type __kernel_uid16_t = ::std::os::raw::c_ushort;
pub type __kernel_gid16_t = ::std::os::raw::c_ushort;
pub type __le16 = __u16;
pub type __be16 = __u16;
pub type __le32 = __u32;
pub type __be32 = __u32;
pub type __le64 = __u64;
pub type __be64 = __u64;
pub type __sum16 = __u16;
pub type __wsum = __u32;
#[repr(C)]
#[derive(Debug, Copy)]
pub struct input_event {
    pub time: timeval,
    pub type_: __u16,
    pub code: __u16,
    pub value: __s32,
}
#[test]
fn bindgen_test_layout_input_event() {
    assert_eq!(::std::mem::size_of::<input_event>() , 24usize , concat ! (
               "Size of: " , stringify ! ( input_event ) ));
    assert_eq! (::std::mem::align_of::<input_event>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( input_event ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_event ) ) . time as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( input_event ) , "::" ,
                stringify ! ( time ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_event ) ) . type_ as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( input_event ) , "::" ,
                stringify ! ( type_ ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_event ) ) . code as * const _ as
                usize } , 18usize , concat ! (
                "Alignment of field: " , stringify ! ( input_event ) , "::" ,
                stringify ! ( code ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_event ) ) . value as * const _ as
                usize } , 20usize , concat ! (
                "Alignment of field: " , stringify ! ( input_event ) , "::" ,
                stringify ! ( value ) ));
}
impl Clone for input_event {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct input_id {
    pub bustype: __u16,
    pub vendor: __u16,
    pub product: __u16,
    pub version: __u16,
}
#[test]
fn bindgen_test_layout_input_id() {
    assert_eq!(::std::mem::size_of::<input_id>() , 8usize , concat ! (
               "Size of: " , stringify ! ( input_id ) ));
    assert_eq! (::std::mem::align_of::<input_id>() , 2usize , concat ! (
                "Alignment of " , stringify ! ( input_id ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_id ) ) . bustype as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( input_id ) , "::" ,
                stringify ! ( bustype ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_id ) ) . vendor as * const _ as
                usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( input_id ) , "::" ,
                stringify ! ( vendor ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_id ) ) . product as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( input_id ) , "::" ,
                stringify ! ( product ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_id ) ) . version as * const _ as
                usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( input_id ) , "::" ,
                stringify ! ( version ) ));
}
impl Clone for input_id {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct input_absinfo {
    pub value: __s32,
    pub minimum: __s32,
    pub maximum: __s32,
    pub fuzz: __s32,
    pub flat: __s32,
    pub resolution: __s32,
}
#[test]
fn bindgen_test_layout_input_absinfo() {
    assert_eq!(::std::mem::size_of::<input_absinfo>() , 24usize , concat ! (
               "Size of: " , stringify ! ( input_absinfo ) ));
    assert_eq! (::std::mem::align_of::<input_absinfo>() , 4usize , concat ! (
                "Alignment of " , stringify ! ( input_absinfo ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_absinfo ) ) . value as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( input_absinfo ) , "::"
                , stringify ! ( value ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_absinfo ) ) . minimum as * const _
                as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( input_absinfo ) , "::"
                , stringify ! ( minimum ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_absinfo ) ) . maximum as * const _
                as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( input_absinfo ) , "::"
                , stringify ! ( maximum ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_absinfo ) ) . fuzz as * const _ as
                usize } , 12usize , concat ! (
                "Alignment of field: " , stringify ! ( input_absinfo ) , "::"
                , stringify ! ( fuzz ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_absinfo ) ) . flat as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( input_absinfo ) , "::"
                , stringify ! ( flat ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_absinfo ) ) . resolution as * const
                _ as usize } , 20usize , concat ! (
                "Alignment of field: " , stringify ! ( input_absinfo ) , "::"
                , stringify ! ( resolution ) ));
}
impl Clone for input_absinfo {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct input_keymap_entry {
    pub flags: __u8,
    pub len: __u8,
    pub index: __u16,
    pub keycode: __u32,
    pub scancode: [__u8; 32usize],
}
#[test]
fn bindgen_test_layout_input_keymap_entry() {
    assert_eq!(::std::mem::size_of::<input_keymap_entry>() , 40usize , concat
               ! ( "Size of: " , stringify ! ( input_keymap_entry ) ));
    assert_eq! (::std::mem::align_of::<input_keymap_entry>() , 4usize , concat
                ! ( "Alignment of " , stringify ! ( input_keymap_entry ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_keymap_entry ) ) . flags as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( input_keymap_entry ) ,
                "::" , stringify ! ( flags ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_keymap_entry ) ) . len as * const _
                as usize } , 1usize , concat ! (
                "Alignment of field: " , stringify ! ( input_keymap_entry ) ,
                "::" , stringify ! ( len ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_keymap_entry ) ) . index as * const
                _ as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( input_keymap_entry ) ,
                "::" , stringify ! ( index ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_keymap_entry ) ) . keycode as *
                const _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( input_keymap_entry ) ,
                "::" , stringify ! ( keycode ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_keymap_entry ) ) . scancode as *
                const _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( input_keymap_entry ) ,
                "::" , stringify ! ( scancode ) ));
}
impl Clone for input_keymap_entry {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct input_mask {
    pub type_: __u32,
    pub codes_size: __u32,
    pub codes_ptr: __u64,
}
#[test]
fn bindgen_test_layout_input_mask() {
    assert_eq!(::std::mem::size_of::<input_mask>() , 16usize , concat ! (
               "Size of: " , stringify ! ( input_mask ) ));
    assert_eq! (::std::mem::align_of::<input_mask>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( input_mask ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_mask ) ) . type_ as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( input_mask ) , "::" ,
                stringify ! ( type_ ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_mask ) ) . codes_size as * const _
                as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( input_mask ) , "::" ,
                stringify ! ( codes_size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const input_mask ) ) . codes_ptr as * const _
                as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( input_mask ) , "::" ,
                stringify ! ( codes_ptr ) ));
}
impl Clone for input_mask {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct ff_replay {
    pub length: __u16,
    pub delay: __u16,
}
#[test]
fn bindgen_test_layout_ff_replay() {
    assert_eq!(::std::mem::size_of::<ff_replay>() , 4usize , concat ! (
               "Size of: " , stringify ! ( ff_replay ) ));
    assert_eq! (::std::mem::align_of::<ff_replay>() , 2usize , concat ! (
                "Alignment of " , stringify ! ( ff_replay ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_replay ) ) . length as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_replay ) , "::" ,
                stringify ! ( length ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_replay ) ) . delay as * const _ as
                usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_replay ) , "::" ,
                stringify ! ( delay ) ));
}
impl Clone for ff_replay {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct ff_trigger {
    pub button: __u16,
    pub interval: __u16,
}
#[test]
fn bindgen_test_layout_ff_trigger() {
    assert_eq!(::std::mem::size_of::<ff_trigger>() , 4usize , concat ! (
               "Size of: " , stringify ! ( ff_trigger ) ));
    assert_eq! (::std::mem::align_of::<ff_trigger>() , 2usize , concat ! (
                "Alignment of " , stringify ! ( ff_trigger ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_trigger ) ) . button as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_trigger ) , "::" ,
                stringify ! ( button ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_trigger ) ) . interval as * const _ as
                usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_trigger ) , "::" ,
                stringify ! ( interval ) ));
}
impl Clone for ff_trigger {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct ff_envelope {
    pub attack_length: __u16,
    pub attack_level: __u16,
    pub fade_length: __u16,
    pub fade_level: __u16,
}
#[test]
fn bindgen_test_layout_ff_envelope() {
    assert_eq!(::std::mem::size_of::<ff_envelope>() , 8usize , concat ! (
               "Size of: " , stringify ! ( ff_envelope ) ));
    assert_eq! (::std::mem::align_of::<ff_envelope>() , 2usize , concat ! (
                "Alignment of " , stringify ! ( ff_envelope ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_envelope ) ) . attack_length as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_envelope ) , "::" ,
                stringify ! ( attack_length ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_envelope ) ) . attack_level as * const
                _ as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_envelope ) , "::" ,
                stringify ! ( attack_level ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_envelope ) ) . fade_length as * const
                _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_envelope ) , "::" ,
                stringify ! ( fade_length ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_envelope ) ) . fade_level as * const _
                as usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_envelope ) , "::" ,
                stringify ! ( fade_level ) ));
}
impl Clone for ff_envelope {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct ff_constant_effect {
    pub level: __s16,
    pub envelope: ff_envelope,
}
#[test]
fn bindgen_test_layout_ff_constant_effect() {
    assert_eq!(::std::mem::size_of::<ff_constant_effect>() , 10usize , concat
               ! ( "Size of: " , stringify ! ( ff_constant_effect ) ));
    assert_eq! (::std::mem::align_of::<ff_constant_effect>() , 2usize , concat
                ! ( "Alignment of " , stringify ! ( ff_constant_effect ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_constant_effect ) ) . level as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_constant_effect ) ,
                "::" , stringify ! ( level ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_constant_effect ) ) . envelope as *
                const _ as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_constant_effect ) ,
                "::" , stringify ! ( envelope ) ));
}
impl Clone for ff_constant_effect {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct ff_ramp_effect {
    pub start_level: __s16,
    pub end_level: __s16,
    pub envelope: ff_envelope,
}
#[test]
fn bindgen_test_layout_ff_ramp_effect() {
    assert_eq!(::std::mem::size_of::<ff_ramp_effect>() , 12usize , concat ! (
               "Size of: " , stringify ! ( ff_ramp_effect ) ));
    assert_eq! (::std::mem::align_of::<ff_ramp_effect>() , 2usize , concat ! (
                "Alignment of " , stringify ! ( ff_ramp_effect ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_ramp_effect ) ) . start_level as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_ramp_effect ) , "::"
                , stringify ! ( start_level ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_ramp_effect ) ) . end_level as * const
                _ as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_ramp_effect ) , "::"
                , stringify ! ( end_level ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_ramp_effect ) ) . envelope as * const
                _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_ramp_effect ) , "::"
                , stringify ! ( envelope ) ));
}
impl Clone for ff_ramp_effect {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct ff_condition_effect {
    pub right_saturation: __u16,
    pub left_saturation: __u16,
    pub right_coeff: __s16,
    pub left_coeff: __s16,
    pub deadband: __u16,
    pub center: __s16,
}
#[test]
fn bindgen_test_layout_ff_condition_effect() {
    assert_eq!(::std::mem::size_of::<ff_condition_effect>() , 12usize , concat
               ! ( "Size of: " , stringify ! ( ff_condition_effect ) ));
    assert_eq! (::std::mem::align_of::<ff_condition_effect>() , 2usize ,
                concat ! (
                "Alignment of " , stringify ! ( ff_condition_effect ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_condition_effect ) ) .
                right_saturation as * const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_condition_effect ) ,
                "::" , stringify ! ( right_saturation ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_condition_effect ) ) . left_saturation
                as * const _ as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_condition_effect ) ,
                "::" , stringify ! ( left_saturation ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_condition_effect ) ) . right_coeff as
                * const _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_condition_effect ) ,
                "::" , stringify ! ( right_coeff ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_condition_effect ) ) . left_coeff as *
                const _ as usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_condition_effect ) ,
                "::" , stringify ! ( left_coeff ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_condition_effect ) ) . deadband as *
                const _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_condition_effect ) ,
                "::" , stringify ! ( deadband ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_condition_effect ) ) . center as *
                const _ as usize } , 10usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_condition_effect ) ,
                "::" , stringify ! ( center ) ));
}
impl Clone for ff_condition_effect {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct ff_periodic_effect {
    pub waveform: __u16,
    pub period: __u16,
    pub magnitude: __s16,
    pub offset: __s16,
    pub phase: __u16,
    pub envelope: ff_envelope,
    pub custom_len: __u32,
    pub custom_data: *mut __s16,
}
#[test]
fn bindgen_test_layout_ff_periodic_effect() {
    assert_eq!(::std::mem::size_of::<ff_periodic_effect>() , 32usize , concat
               ! ( "Size of: " , stringify ! ( ff_periodic_effect ) ));
    assert_eq! (::std::mem::align_of::<ff_periodic_effect>() , 8usize , concat
                ! ( "Alignment of " , stringify ! ( ff_periodic_effect ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_periodic_effect ) ) . waveform as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_periodic_effect ) ,
                "::" , stringify ! ( waveform ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_periodic_effect ) ) . period as *
                const _ as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_periodic_effect ) ,
                "::" , stringify ! ( period ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_periodic_effect ) ) . magnitude as *
                const _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_periodic_effect ) ,
                "::" , stringify ! ( magnitude ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_periodic_effect ) ) . offset as *
                const _ as usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_periodic_effect ) ,
                "::" , stringify ! ( offset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_periodic_effect ) ) . phase as * const
                _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_periodic_effect ) ,
                "::" , stringify ! ( phase ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_periodic_effect ) ) . envelope as *
                const _ as usize } , 10usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_periodic_effect ) ,
                "::" , stringify ! ( envelope ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_periodic_effect ) ) . custom_len as *
                const _ as usize } , 20usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_periodic_effect ) ,
                "::" , stringify ! ( custom_len ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_periodic_effect ) ) . custom_data as *
                const _ as usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_periodic_effect ) ,
                "::" , stringify ! ( custom_data ) ));
}
impl Clone for ff_periodic_effect {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct ff_rumble_effect {
    pub strong_magnitude: __u16,
    pub weak_magnitude: __u16,
}
#[test]
fn bindgen_test_layout_ff_rumble_effect() {
    assert_eq!(::std::mem::size_of::<ff_rumble_effect>() , 4usize , concat ! (
               "Size of: " , stringify ! ( ff_rumble_effect ) ));
    assert_eq! (::std::mem::align_of::<ff_rumble_effect>() , 2usize , concat !
                ( "Alignment of " , stringify ! ( ff_rumble_effect ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_rumble_effect ) ) . strong_magnitude
                as * const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_rumble_effect ) ,
                "::" , stringify ! ( strong_magnitude ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_rumble_effect ) ) . weak_magnitude as
                * const _ as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_rumble_effect ) ,
                "::" , stringify ! ( weak_magnitude ) ));
}
impl Clone for ff_rumble_effect {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct ff_effect {
    pub type_: __u16,
    pub id: __s16,
    pub direction: __u16,
    pub trigger: ff_trigger,
    pub replay: ff_replay,
    pub u: ff_effect__bindgen_ty_1,
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct ff_effect__bindgen_ty_1 {
    pub constant: __BindgenUnionField<ff_constant_effect>,
    pub ramp: __BindgenUnionField<ff_ramp_effect>,
    pub periodic: __BindgenUnionField<ff_periodic_effect>,
    pub condition: __BindgenUnionField<[ff_condition_effect; 2usize]>,
    pub rumble: __BindgenUnionField<ff_rumble_effect>,
    pub bindgen_union_field: [u64; 4usize],
}
#[test]
fn bindgen_test_layout_ff_effect__bindgen_ty_1() {
    assert_eq!(::std::mem::size_of::<ff_effect__bindgen_ty_1>() , 32usize ,
               concat ! (
               "Size of: " , stringify ! ( ff_effect__bindgen_ty_1 ) ));
    assert_eq! (::std::mem::align_of::<ff_effect__bindgen_ty_1>() , 8usize ,
                concat ! (
                "Alignment of " , stringify ! ( ff_effect__bindgen_ty_1 ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_effect__bindgen_ty_1 ) ) . constant as
                * const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_effect__bindgen_ty_1
                ) , "::" , stringify ! ( constant ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_effect__bindgen_ty_1 ) ) . ramp as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_effect__bindgen_ty_1
                ) , "::" , stringify ! ( ramp ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_effect__bindgen_ty_1 ) ) . periodic as
                * const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_effect__bindgen_ty_1
                ) , "::" , stringify ! ( periodic ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_effect__bindgen_ty_1 ) ) . condition
                as * const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_effect__bindgen_ty_1
                ) , "::" , stringify ! ( condition ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_effect__bindgen_ty_1 ) ) . rumble as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_effect__bindgen_ty_1
                ) , "::" , stringify ! ( rumble ) ));
}
impl Clone for ff_effect__bindgen_ty_1 {
    fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_ff_effect() {
    assert_eq!(::std::mem::size_of::<ff_effect>() , 48usize , concat ! (
               "Size of: " , stringify ! ( ff_effect ) ));
    assert_eq! (::std::mem::align_of::<ff_effect>() , 8usize , concat ! (
                "Alignment of " , stringify ! ( ff_effect ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_effect ) ) . type_ as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_effect ) , "::" ,
                stringify ! ( type_ ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_effect ) ) . id as * const _ as usize
                } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_effect ) , "::" ,
                stringify ! ( id ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_effect ) ) . direction as * const _ as
                usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_effect ) , "::" ,
                stringify ! ( direction ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_effect ) ) . trigger as * const _ as
                usize } , 6usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_effect ) , "::" ,
                stringify ! ( trigger ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_effect ) ) . replay as * const _ as
                usize } , 10usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_effect ) , "::" ,
                stringify ! ( replay ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const ff_effect ) ) . u as * const _ as usize }
                , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( ff_effect ) , "::" ,
                stringify ! ( u ) ));
}
impl Clone for ff_effect {
    fn clone(&self) -> Self { *self }
}