Skip to content

Commit 23efc09

Browse files
committed
---
yaml --- r: 12175 b: refs/heads/master c: 8cf44be h: refs/heads/master i: 12173: b042eb6 12171: 4ae73c0 12167: 7284d38 12159: bc75678 v: v3
1 parent a388734 commit 23efc09

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 0622a74c48a708aec28d25964f4e9b4489580bc7
2+
refs/heads/master: 8cf44bed57cccacdb853e620c0b479c358c83056
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf

trunk/src/libcore/libc.rs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,16 @@ mod types {
139139
enum FILE {}
140140
enum fpos_t {}
141141
}
142-
mod c99 { }
142+
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+
}
143152
mod posix88 {
144153
enum DIR {}
145154
enum dirent {}

0 commit comments

Comments
 (0)