diff options
author | Ian Lynagh <igloo@earth.li> | 2012-04-27 01:27:48 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-04-27 01:27:48 +0100 |
commit | 5a3fdc0ce364a26362f6aee5ce6075eb10e8f811 (patch) | |
tree | a4c62c24a803ffd3264cf60a994a71fcf8d63320 /includes/Rts.h | |
parent | d7b57949f3a9e42751f60fd09ddebd299b8762e7 (diff) | |
download | haskell-5a3fdc0ce364a26362f6aee5ce6075eb10e8f811.tar.gz |
Fix build on Win32, and handle the FMT_* #defines in a slightly nicer way
Diffstat (limited to 'includes/Rts.h')
-rw-r--r-- | includes/Rts.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/includes/Rts.h b/includes/Rts.h index e060e14915..501b9dcbfc 100644 --- a/includes/Rts.h +++ b/includes/Rts.h @@ -145,19 +145,6 @@ void _assertFail(const char *filename, unsigned int linenum) #define FMT_SizeT "zu" #define FMT_HexSizeT "zx" -#define FMT_Word "zu" -#define FMT_Int "zd" - -/* - * Getting printf formats right for platform-dependent typedefs - */ -#if SIZEOF_LONG == 8 -#define FMT_Word64 "lu" -#define FMT_Int64 "ld" -#else -#define FMT_Word64 "llu" -#define FMT_Int64 "lld" -#endif /* ----------------------------------------------------------------------------- Time values in the RTS |