change type size to match openbsd C

This commit is contained in:
Sébastien Marie 2015-12-21 16:35:41 +01:00
parent c5eadb3293
commit d732678ddc
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ pub type suseconds_t = i64;
pub type dev_t = i32;
pub type sigset_t = ::c_uint;
pub type blksize_t = ::uint32_t;
pub type fsblkcnt_t = ::c_uint;
pub type fsfilcnt_t = ::c_uint;
pub type fsblkcnt_t = ::uint64_t;
pub type fsfilcnt_t = ::uint64_t;
pub type pthread_attr_t = *mut ::c_void;
pub type pthread_mutex_t = *mut ::c_void;
pub type pthread_mutexattr_t = *mut ::c_void;