Skip to content

Commit 9078c49

Browse files
authored
Merge pull request #3642 from bzEq/deprecated-type-alias
Silence `use of deprecated type alias warning` warnings
2 parents 08f0a63 + 98be777 commit 9078c49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/unix/aix/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ pub type rlim_t = ::c_ulong;
1717
pub type speed_t = ::c_uint;
1818
pub type tcflag_t = ::c_uint;
1919
pub type time_t = ::c_long;
20-
pub type time64_t = ::int64_t;
20+
pub type time64_t = u64;
2121
pub type timer_t = ::c_long;
2222
pub type wchar_t = ::c_uint;
2323
pub type nfds_t = ::c_int;
2424
pub type projid_t = ::c_int;
2525
pub type id_t = ::c_uint;
2626
pub type blksize64_t = ::c_ulonglong;
2727
pub type blkcnt64_t = ::c_ulonglong;
28-
pub type sctp_assoc_t = ::uint32_t;
28+
pub type sctp_assoc_t = u32;
2929

3030
pub type suseconds_t = ::c_int;
3131
pub type useconds_t = ::c_uint;

0 commit comments

Comments
 (0)