Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/libcore/ctypes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ A signed integer with the same size as a C `long`
*/
type long = int;

/*
Type: longlong

A signed integer with the same size as a C `long long`
*/
type longlong = i64;

/*
Type: unsigned

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

/*
Type: ulonglong

An unsigned integer with the same size as a C `unsigned long long`
*/
type ulonglong = u64;

/*
Type: intptr_t

Expand Down