diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2015-07-28 19:11:38 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2015-07-29 08:19:32 -0400 |
commit | 702c92eb7c4823aa9b0f69b95ee386f97f520737 (patch) | |
tree | 7d1d8308680e9d6ea57ff2facd57f2155a8a1702 /handy.h | |
parent | a0b05c4bde4f97301b663b8de70677551eacff4c (diff) | |
download | perl-702c92eb7c4823aa9b0f69b95ee386f97f520737.tar.gz |
Use U64 (a type) instead of U64TYPE (a define).
Builds on top of 16d89be8.
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -204,8 +204,8 @@ typedef U64TYPE U64; # define PeRl_UINT64_C(c) CAT2(c,UI64) # endif # ifndef PeRl_INT64_C -# define PeRl_INT64_C(c) ((I64TYPE)(c)) /* last resort */ -# define PeRl_UINT64_C(c) ((U64TYPE)(c)) +# define PeRl_INT64_C(c) ((I64)(c)) /* last resort */ +# define PeRl_UINT64_C(c) ((U64)(c)) # endif /* In OS X the INT64_C/UINT64_C are defined with LL/ULL, which will * not fly with C89-pedantic gcc, so let's undefine them first so that |