From: John Hodge Date: Mon, 17 Jun 2013 04:04:47 +0000 (+0800) Subject: Usermode/libc - inttypes.h fixed to include stdint.h X-Git-Tag: rel0.15~438 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=b85f2ca0e6967f8f490943145855bd027d310c9b;p=tpg%2Facess2.git Usermode/libc - inttypes.h fixed to include stdint.h --- diff --git a/Usermode/Libraries/libc.so_src/include_exp/inttypes.h b/Usermode/Libraries/libc.so_src/include_exp/inttypes.h index df92f77d..0200aa6a 100644 --- a/Usermode/Libraries/libc.so_src/include_exp/inttypes.h +++ b/Usermode/Libraries/libc.so_src/include_exp/inttypes.h @@ -1,13 +1,28 @@ +/* + * Acess2 C Library + * - By John Hodge (thePowersGang) + * + * inttypes.h + * - Fixed-size integer sizes + * + * Defined in IEEE Std 1003.1 + */ +#ifndef _INTTYPES_H_ +#define _INTTYPES_H_ + +#include #define PRId64 "lld" #define PRIdLEAST64 "lld" #define PRIdFAST64 "lld" #define PRIdMAX #define PRIdPTR -#define PRIi64 +#define PRIi64 "lli" #define PRIiLEAST64 #define PRIiFAST64 #define PRIiMAX #define PRIiPTR #define PRIx64 "llx" + +#endif