mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
305 B
C
13 lines
305 B
C
// https://issues.dlang.org/show_bug.cgi?id=23214
|
|
|
|
typedef unsigned __int64 uintptr_t;
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=24304
|
|
|
|
__uint16_t u16;
|
|
__uint32_t u32;
|
|
__uint64_t u64;
|
|
|
|
_Static_assert(sizeof(u16) == 2, "1");
|
|
_Static_assert(sizeof(u32) == 4, "2");
|
|
_Static_assert(sizeof(u64) == 8, "3");
|