Skip to content
/ libc Public
forked from rust-lang/libc

Commit

Permalink
Fix c_char on AIX
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Mar 24, 2024
1 parent a0f5b4b commit 01fbd97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/aix/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub type c_char = i8;
pub type c_char = u8;
pub type caddr_t = *mut ::c_char;
pub type clockid_t = ::c_longlong;
pub type blkcnt_t = ::c_long;
Expand Down

0 comments on commit 01fbd97

Please sign in to comment.