Skip to content

Commit e5f8e5e

Browse files
committed
---
yaml --- r: 7146 b: refs/heads/master c: ae76a7d h: refs/heads/master v: v3
1 parent 83b6bb5 commit e5f8e5e

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: a736669fb686d1a44f47d9624a9ed2aa1e072413
2+
refs/heads/master: ae76a7db5d5747aad7e572911848800e139f127b

trunk/src/libcore/ctypes.rs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ A signed integer with the same size as a C `long`
3232
*/
3333
type long = int;
3434

35+
/*
36+
Type: longlong
37+
38+
A signed integer with the same size as a C `long long`
39+
*/
40+
type longlong = i64;
41+
3542
/*
3643
Type: unsigned
3744

@@ -46,6 +53,13 @@ An unsigned integer with the same size as a C `unsigned long`
4653
*/
4754
type ulong = uint;
4855

56+
/*
57+
Type: ulonglong
58+
59+
An unsigned integer with the same size as a C `unsigned long long`
60+
*/
61+
type ulonglong = u64;
62+
4963
/*
5064
Type: intptr_t
5165

0 commit comments

Comments
 (0)