Skip to content

Commit 6689480

Browse files
committed
---
yaml --- r: 15181 b: refs/heads/try c: 8cf44be h: refs/heads/master i: 15179: 16dc1a2 v: v3
1 parent 20b33c1 commit 6689480

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
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 0622a74c48a708aec28d25964f4e9b4489580bc7
5+
refs/heads/try: 8cf44bed57cccacdb853e620c0b479c358c83056
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/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)