ape: add signed fixed size integer typedefs to u.h
This commit is contained in:
parent
88537cfe9b
commit
19d6a98038
1 changed files with 4 additions and 0 deletions
|
@ -20,5 +20,9 @@ typedef uchar u8int;
|
||||||
typedef ushort u16int;
|
typedef ushort u16int;
|
||||||
typedef ulong u32int;
|
typedef ulong u32int;
|
||||||
typedef uvlong u64int;
|
typedef uvlong u64int;
|
||||||
|
typedef signed char s8int;
|
||||||
|
typedef signed short s16int;
|
||||||
|
typedef signed int s32int;
|
||||||
|
typedef signed long long s64int;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue