libc: Update inttypes.h
Turns out it was incorrect.
This commit is contained in:
parent
0faabe02e5
commit
51e024588e
@ -3,61 +3,61 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#define PRId8 "%d"
|
#define PRId8 "d"
|
||||||
#define PRId16 "%d"
|
#define PRId16 "d"
|
||||||
#define PRId32 "%d"
|
#define PRId32 "d"
|
||||||
#define PRId64 "%ld"
|
#define PRId64 "ld"
|
||||||
#define PRIdLEAST8 "%d"
|
#define PRIdLEAST8 "d"
|
||||||
#define PRIdLEAST16 "%d"
|
#define PRIdLEAST16 "d"
|
||||||
#define PRIdLEAST32 "%d"
|
#define PRIdLEAST32 "d"
|
||||||
#define PRIdLEAST64 "%ld"
|
#define PRIdLEAST64 "ld"
|
||||||
#define PRIdFAST8 "%d"
|
#define PRIdFAST8 "d"
|
||||||
#define PRIdFAST16 "%d"
|
#define PRIdFAST16 "d"
|
||||||
#define PRIdFAST32 "%d"
|
#define PRIdFAST32 "d"
|
||||||
#define PRIdFAST64 "%ld"
|
#define PRIdFAST64 "ld"
|
||||||
#define PRIdMAX "%ld"
|
#define PRIdMAX "ld"
|
||||||
#define PRIdPTR "%ld"
|
#define PRIdPTR "ld"
|
||||||
#define PRIi8 "%d"
|
#define PRIi8 "d"
|
||||||
#define PRIi16 "%d"
|
#define PRIi16 "d"
|
||||||
#define PRIi32 "%d"
|
#define PRIi32 "d"
|
||||||
#define PRIi64 "%ld"
|
#define PRIi64 "ld"
|
||||||
#define PRIiLEAST8 "%d"
|
#define PRIiLEAST8 "d"
|
||||||
#define PRIiLEAST16 "%d"
|
#define PRIiLEAST16 "d"
|
||||||
#define PRIiLEAST32 "%d"
|
#define PRIiLEAST32 "d"
|
||||||
#define PRIiLEAST64 "%ld"
|
#define PRIiLEAST64 "ld"
|
||||||
#define PRIiFAST8 "%d"
|
#define PRIiFAST8 "d"
|
||||||
#define PRIiFAST16 "%d"
|
#define PRIiFAST16 "d"
|
||||||
#define PRIiFAST32 "%d"
|
#define PRIiFAST32 "d"
|
||||||
#define PRIiFAST64 "%ld"
|
#define PRIiFAST64 "ld"
|
||||||
#define PRIiMAX "%ld"
|
#define PRIiMAX "ld"
|
||||||
#define PRIiPTR "%ld"
|
#define PRIiPTR "ld"
|
||||||
#define PRIu8 "%u"
|
#define PRIu8 "u"
|
||||||
#define PRIu16 "%u"
|
#define PRIu16 "u"
|
||||||
#define PRIu32 "%u"
|
#define PRIu32 "u"
|
||||||
#define PRIu64 "%lu"
|
#define PRIu64 "lu"
|
||||||
#define PRIuLEAST8 "%u"
|
#define PRIuLEAST8 "u"
|
||||||
#define PRIuLEAST16 "%u"
|
#define PRIuLEAST16 "u"
|
||||||
#define PRIuLEAST32 "%u"
|
#define PRIuLEAST32 "u"
|
||||||
#define PRIuLEAST64 "%lu"
|
#define PRIuLEAST64 "lu"
|
||||||
#define PRIuFAST8 "%u"
|
#define PRIuFAST8 "u"
|
||||||
#define PRIuFAST16 "%u"
|
#define PRIuFAST16 "u"
|
||||||
#define PRIuFAST32 "%u"
|
#define PRIuFAST32 "u"
|
||||||
#define PRIuFAST64 "%lu"
|
#define PRIuFAST64 "lu"
|
||||||
#define PRIuMAX "%lu"
|
#define PRIuMAX "lu"
|
||||||
#define PRIuPTR "%lu"
|
#define PRIuPTR "lu"
|
||||||
#define PRIx8 "%x"
|
#define PRIx8 "x"
|
||||||
#define PRIx16 "%x"
|
#define PRIx16 "x"
|
||||||
#define PRIx32 "%x"
|
#define PRIx32 "x"
|
||||||
#define PRIx64 "%lx"
|
#define PRIx64 "lx"
|
||||||
#define PRIxLEAST8 "%x"
|
#define PRIxLEAST8 "x"
|
||||||
#define PRIxLEAST16 "%x"
|
#define PRIxLEAST16 "x"
|
||||||
#define PRIxLEAST32 "%x"
|
#define PRIxLEAST32 "x"
|
||||||
#define PRIxLEAST64 "%lx"
|
#define PRIxLEAST64 "lx"
|
||||||
#define PRIxFAST8 "%x"
|
#define PRIxFAST8 "x"
|
||||||
#define PRIxFAST16 "%x"
|
#define PRIxFAST16 "x"
|
||||||
#define PRIxFAST32 "%x"
|
#define PRIxFAST32 "x"
|
||||||
#define PRIxFAST64 "%lx"
|
#define PRIxFAST64 "lx"
|
||||||
#define PRIxMAX "%lx"
|
#define PRIxMAX "lx"
|
||||||
#define PRIxPTR "%lx"
|
#define PRIxPTR "lx"
|
||||||
|
|
||||||
#endif
|
#endif
|
Loading…
Reference in New Issue
Block a user