diff options
| author | Julian Orth <ju.orth@gmail.com> | 2014-10-09 23:20:56 +0200 |
|---|---|---|
| committer | Julian Orth <ju.orth@gmail.com> | 2014-10-12 14:08:54 +0200 |
| commit | 3ff7a3d4ec98bcb063d846aee6037ea48ba5a15d (patch) | |
| tree | 3702bcbeab98123b00e53d72f6ff04eac9712f60 /src/liblibc | |
| parent | 79d056f94b75e1c9ad5d72bd8081d6aa5e323848 (diff) | |
| download | rust-3ff7a3d4ec98bcb063d846aee6037ea48ba5a15d.tar.gz rust-3ff7a3d4ec98bcb063d846aee6037ea48ba5a15d.zip | |
add intmax
Diffstat (limited to 'src/liblibc')
| -rw-r--r-- | src/liblibc/lib.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index d8faee20652..f2cf5265aee 100644 --- a/src/liblibc/lib.rs +++ b/src/liblibc/lib.rs @@ -103,6 +103,7 @@ pub use types::os::arch::c95::{c_ushort, clock_t, ptrdiff_t, c_schar}; pub use types::os::arch::c95::{size_t, time_t, suseconds_t}; pub use types::os::arch::c99::{c_longlong, c_ulonglong}; pub use types::os::arch::c99::{intptr_t, uintptr_t}; +pub use types::os::arch::c99::{intmax_t, uintmax_t}; pub use types::os::arch::posix88::{dev_t, ino_t, mode_t}; pub use types::os::arch::posix88::{off_t, pid_t, ssize_t}; @@ -533,6 +534,8 @@ pub mod types { pub type c_ulonglong = u64; pub type intptr_t = i32; pub type uintptr_t = u32; + pub type intmax_t = i64; + pub type uintmax_t = u64; } #[cfg(any(target_arch = "x86", target_arch = "mips", @@ -740,6 +743,8 @@ pub mod types { pub type c_ulonglong = u64; pub type intptr_t = i64; pub type uintptr_t = u64; + pub type intmax_t = i64; + pub type uintmax_t = u64; } pub mod posix88 { pub type off_t = i64; @@ -973,6 +978,8 @@ pub mod types { pub type c_ulonglong = u64; pub type intptr_t = i64; pub type uintptr_t = u64; + pub type intmax_t = i64; + pub type uintmax_t = u64; } pub mod posix88 { pub type off_t = i64; @@ -1186,6 +1193,8 @@ pub mod types { pub type c_ulonglong = u64; pub type intptr_t = i64; pub type uintptr_t = u64; + pub type intmax_t = i64; + pub type uintmax_t = u64; } pub mod posix88 { pub type off_t = i64; @@ -1426,6 +1435,9 @@ pub mod types { pub type uintptr_t = u32; #[cfg(target_arch = "x86_64")] pub type uintptr_t = u64; + + pub type intmax_t = i64; + pub type uintmax_t = u64; } pub mod posix88 { @@ -1815,6 +1827,8 @@ pub mod types { pub type c_ulonglong = u64; pub type intptr_t = i32; pub type uintptr_t = u32; + pub type intmax_t = i64; + pub type uintmax_t = u64; } pub mod posix88 { pub type off_t = i64; @@ -1916,6 +1930,8 @@ pub mod types { pub type c_ulonglong = u64; pub type intptr_t = i64; pub type uintptr_t = u64; + pub type intmax_t = i64; + pub type uintmax_t = u64; } pub mod posix88 { pub type off_t = i64; |
