Commit 17be8765 authored by Pietro Fezzardi's avatar Pietro Fezzardi Committed by Alessandro Rubini

inttypes.h: fix sign in typedef of uint64_t

parent c6b68c61
......@@ -4,7 +4,7 @@
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef signed long long uint64_t;
typedef unsigned long long uint64_t;
typedef signed char int8_t;
typedef signed short int16_t;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment