We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb83189 commit c700e64Copy full SHA for c700e64
libc-test/build.rs
@@ -36,6 +36,7 @@ fn main() {
36
cfg.header("errno.h")
37
.header("fcntl.h")
38
.header("limits.h")
39
+ .header("stdbool.h")
40
.header("stddef.h")
41
.header("stdint.h")
42
.header("stdio.h")
src/lib.rs
@@ -109,6 +109,7 @@ pub type uint16_t = u16;
109
pub type uint32_t = u32;
110
pub type uint64_t = u64;
111
112
+pub type c_bool = u8;
113
pub type c_schar = i8;
114
pub type c_uchar = u8;
115
pub type c_short = i16;
0 commit comments