introduce signed intptr and %z format modifier for formating uintptr and intptr

This commit is contained in:
cinap_lenrek 2016-01-07 04:39:09 +01:00
parent 59245c73f0
commit 3e38194d72
17 changed files with 35 additions and 0 deletions

View file

@ -6,6 +6,7 @@ typedef unsigned int uint;
typedef signed char schar;
typedef long long vlong;
typedef unsigned long long uvlong;
typedef long intptr;
typedef unsigned long uintptr;
typedef unsigned long usize;
typedef uint Rune;