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 0622a74 commit 8cf44beCopy full SHA for 8cf44be
src/libcore/libc.rs
@@ -139,7 +139,16 @@ mod types {
139
enum FILE {}
140
enum fpos_t {}
141
}
142
- mod c99 { }
+ mod c99 {
143
+ type int8_t = i8;
144
+ type int16_t = i16;
145
+ type int32_t = i32;
146
+ type int64_t = i64;
147
+ type uint8_t = u8;
148
+ type uint16_t = u16;
149
+ type uint32_t = u32;
150
+ type uint64_t = u64;
151
+ }
152
mod posix88 {
153
enum DIR {}
154
enum dirent {}
0 commit comments