@@ -103,6 +103,7 @@ pub use types::os::arch::c95::{c_ushort, clock_t, ptrdiff_t, c_schar};
103
103
pub use types:: os:: arch:: c95:: { size_t, time_t, suseconds_t} ;
104
104
pub use types:: os:: arch:: c99:: { c_longlong, c_ulonglong} ;
105
105
pub use types:: os:: arch:: c99:: { intptr_t, uintptr_t} ;
106
+ pub use types:: os:: arch:: c99:: { intmax_t, uintmax_t} ;
106
107
pub use types:: os:: arch:: posix88:: { dev_t, ino_t, mode_t} ;
107
108
pub use types:: os:: arch:: posix88:: { off_t, pid_t, ssize_t} ;
108
109
@@ -533,6 +534,8 @@ pub mod types {
533
534
pub type c_ulonglong = u64 ;
534
535
pub type intptr_t = i32 ;
535
536
pub type uintptr_t = u32 ;
537
+ pub type intmax_t = i64 ;
538
+ pub type uintmax_t = u64 ;
536
539
}
537
540
#[ cfg( any( target_arch = "x86" ,
538
541
target_arch = "mips" ,
@@ -740,6 +743,8 @@ pub mod types {
740
743
pub type c_ulonglong = u64 ;
741
744
pub type intptr_t = i64 ;
742
745
pub type uintptr_t = u64 ;
746
+ pub type intmax_t = i64 ;
747
+ pub type uintmax_t = u64 ;
743
748
}
744
749
pub mod posix88 {
745
750
pub type off_t = i64 ;
@@ -973,6 +978,8 @@ pub mod types {
973
978
pub type c_ulonglong = u64 ;
974
979
pub type intptr_t = i64 ;
975
980
pub type uintptr_t = u64 ;
981
+ pub type intmax_t = i64 ;
982
+ pub type uintmax_t = u64 ;
976
983
}
977
984
pub mod posix88 {
978
985
pub type off_t = i64 ;
@@ -1186,6 +1193,8 @@ pub mod types {
1186
1193
pub type c_ulonglong = u64 ;
1187
1194
pub type intptr_t = i64 ;
1188
1195
pub type uintptr_t = u64 ;
1196
+ pub type intmax_t = i64 ;
1197
+ pub type uintmax_t = u64 ;
1189
1198
}
1190
1199
pub mod posix88 {
1191
1200
pub type off_t = i64 ;
@@ -1426,6 +1435,9 @@ pub mod types {
1426
1435
pub type uintptr_t = u32 ;
1427
1436
#[ cfg( target_arch = "x86_64" ) ]
1428
1437
pub type uintptr_t = u64 ;
1438
+
1439
+ pub type intmax_t = i64 ;
1440
+ pub type uintmax_t = u64 ;
1429
1441
}
1430
1442
1431
1443
pub mod posix88 {
@@ -1815,6 +1827,8 @@ pub mod types {
1815
1827
pub type c_ulonglong = u64 ;
1816
1828
pub type intptr_t = i32 ;
1817
1829
pub type uintptr_t = u32 ;
1830
+ pub type intmax_t = i64 ;
1831
+ pub type uintmax_t = u64 ;
1818
1832
}
1819
1833
pub mod posix88 {
1820
1834
pub type off_t = i64 ;
@@ -1916,6 +1930,8 @@ pub mod types {
1916
1930
pub type c_ulonglong = u64 ;
1917
1931
pub type intptr_t = i64 ;
1918
1932
pub type uintptr_t = u64 ;
1933
+ pub type intmax_t = i64 ;
1934
+ pub type uintmax_t = u64 ;
1919
1935
}
1920
1936
pub mod posix88 {
1921
1937
pub type off_t = i64 ;
0 commit comments