We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a284240 + 119f8b4 commit f66fd2eCopy full SHA for f66fd2e
src/liblibc/lib.rs
@@ -1357,8 +1357,16 @@ pub mod types {
1357
pub mod c99 {
1358
pub type c_longlong = i64;
1359
pub type c_ulonglong = u64;
1360
+
1361
+ #[cfg(target_arch = "x86")]
1362
pub type intptr_t = i32;
1363
+ #[cfg(target_arch = "x86_64")]
1364
+ pub type intptr_t = i64;
1365
1366
1367
pub type uintptr_t = u32;
1368
1369
+ pub type uintptr_t = u64;
1370
}
1371
1372
pub mod posix88 {
0 commit comments