-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #1057 - jakllsch:netbsd-5298beff-d081-4368-ab2a-0987e84…
…c6d02, r=alexcrichton NetBSD: correct c_char signedness on arm and powerpc
- Loading branch information
Showing
7 changed files
with
31 additions
and
17 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
...ix/bsd/netbsdlike/netbsd/other/b32/mod.rs → src/unix/bsd/netbsdlike/netbsd/arm.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
pub type c_long = i32; | ||
pub type c_ulong = u32; | ||
pub type c_char = u8; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pub type c_long = i32; | ||
pub type c_ulong = u32; | ||
pub type c_char = u8; |
1 change: 1 addition & 0 deletions
1
...ix/bsd/netbsdlike/netbsd/other/b64/mod.rs → src/unix/bsd/netbsdlike/netbsd/sparc64.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
pub type c_long = i64; | ||
pub type c_ulong = u64; | ||
pub type c_char = i8; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pub type c_long = i32; | ||
pub type c_ulong = u32; | ||
pub type c_char = i8; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pub type c_long = i64; | ||
pub type c_ulong = u64; | ||
pub type c_char = i8; |