Skip to content

Commit

Permalink
Merge pull request #3631 from taiki-e/aix-c-char
Browse files Browse the repository at this point in the history
Fix c_char on AIX
  • Loading branch information
JohnTitor committed Apr 26, 2024
2 parents 82806b3 + 92c8bcb commit d5f1fc3
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 d5f1fc3

Please sign in to comment.