Skip to content

Commit 00cc6d2

Browse files
committed
auto merge of #17896 : mahkoh/rust/intmax, r=alexcrichton
Closes #17075 I don't know if this is correct. The easiest way to find out is to run the following program on all targets but I can't do it myself. ```c #include <stdint.h> #include <stdio.h> int main(void) { if (sizeof(intmax_t) != 8) { puts("ERROR"); return 1; } } ```
2 parents c53f8a9 + 3ff7a3d commit 00cc6d2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/liblibc/lib.rs

+16
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ pub use types::os::arch::c95::{c_ushort, clock_t, ptrdiff_t, c_schar};
103103
pub use types::os::arch::c95::{size_t, time_t, suseconds_t};
104104
pub use types::os::arch::c99::{c_longlong, c_ulonglong};
105105
pub use types::os::arch::c99::{intptr_t, uintptr_t};
106+
pub use types::os::arch::c99::{intmax_t, uintmax_t};
106107
pub use types::os::arch::posix88::{dev_t, ino_t, mode_t};
107108
pub use types::os::arch::posix88::{off_t, pid_t, ssize_t};
108109

@@ -533,6 +534,8 @@ pub mod types {
533534
pub type c_ulonglong = u64;
534535
pub type intptr_t = i32;
535536
pub type uintptr_t = u32;
537+
pub type intmax_t = i64;
538+
pub type uintmax_t = u64;
536539
}
537540
#[cfg(any(target_arch = "x86",
538541
target_arch = "mips",
@@ -740,6 +743,8 @@ pub mod types {
740743
pub type c_ulonglong = u64;
741744
pub type intptr_t = i64;
742745
pub type uintptr_t = u64;
746+
pub type intmax_t = i64;
747+
pub type uintmax_t = u64;
743748
}
744749
pub mod posix88 {
745750
pub type off_t = i64;
@@ -973,6 +978,8 @@ pub mod types {
973978
pub type c_ulonglong = u64;
974979
pub type intptr_t = i64;
975980
pub type uintptr_t = u64;
981+
pub type intmax_t = i64;
982+
pub type uintmax_t = u64;
976983
}
977984
pub mod posix88 {
978985
pub type off_t = i64;
@@ -1186,6 +1193,8 @@ pub mod types {
11861193
pub type c_ulonglong = u64;
11871194
pub type intptr_t = i64;
11881195
pub type uintptr_t = u64;
1196+
pub type intmax_t = i64;
1197+
pub type uintmax_t = u64;
11891198
}
11901199
pub mod posix88 {
11911200
pub type off_t = i64;
@@ -1426,6 +1435,9 @@ pub mod types {
14261435
pub type uintptr_t = u32;
14271436
#[cfg(target_arch = "x86_64")]
14281437
pub type uintptr_t = u64;
1438+
1439+
pub type intmax_t = i64;
1440+
pub type uintmax_t = u64;
14291441
}
14301442

14311443
pub mod posix88 {
@@ -1815,6 +1827,8 @@ pub mod types {
18151827
pub type c_ulonglong = u64;
18161828
pub type intptr_t = i32;
18171829
pub type uintptr_t = u32;
1830+
pub type intmax_t = i64;
1831+
pub type uintmax_t = u64;
18181832
}
18191833
pub mod posix88 {
18201834
pub type off_t = i64;
@@ -1916,6 +1930,8 @@ pub mod types {
19161930
pub type c_ulonglong = u64;
19171931
pub type intptr_t = i64;
19181932
pub type uintptr_t = u64;
1933+
pub type intmax_t = i64;
1934+
pub type uintmax_t = u64;
19191935
}
19201936
pub mod posix88 {
19211937
pub type off_t = i64;

0 commit comments

Comments
 (0)