summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2015-07-28 19:11:38 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2015-07-29 08:19:32 -0400
commit702c92eb7c4823aa9b0f69b95ee386f97f520737 (patch)
tree7d1d8308680e9d6ea57ff2facd57f2155a8a1702 /handy.h
parenta0b05c4bde4f97301b663b8de70677551eacff4c (diff)
downloadperl-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/handy.h b/handy.h
index e0d096a8fa..63a51cbe52 100644
--- a/handy.h
+++ b/handy.h
@@ -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