diff options
author | Sébastien Marie <semarie@users.noreply.github.com> | 2016-12-02 12:20:26 +0100 |
---|---|---|
committer | Sébastien Marie <semarie@users.noreply.github.com> | 2016-12-02 12:20:26 +0100 |
commit | 69afc3aa9fea8efcb055099e417e7cfbb9ecf783 (patch) | |
tree | ab10fa8dc11d5012bda0d40409000d800794ac6f | |
parent | 94848c190728bdf42acfa2057f2bada59f46a0a6 (diff) | |
download | rust-libc-69afc3aa9fea8efcb055099e417e7cfbb9ecf783.tar.gz |
suseconds_t is a long (i64 or i32 depending arch)
-rw-r--r-- | src/unix/bsd/netbsdlike/openbsdlike/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unix/bsd/netbsdlike/openbsdlike/mod.rs b/src/unix/bsd/netbsdlike/openbsdlike/mod.rs index 4e6019ba61..44d840a308 100644 --- a/src/unix/bsd/netbsdlike/openbsdlike/mod.rs +++ b/src/unix/bsd/netbsdlike/openbsdlike/mod.rs @@ -1,5 +1,5 @@ pub type clock_t = i64; -pub type suseconds_t = i64; +pub type suseconds_t = ::c_long; pub type dev_t = i32; pub type sigset_t = ::c_uint; pub type blksize_t = ::int32_t; |