summaryrefslogtreecommitdiffstats
path: root/itypes.h
diff options
context:
space:
mode:
authorPaul A. Patience <paul@apatience.com>2021-09-04 20:45:57 -0400
committerKaz Kylheku <kaz@kylheku.com>2021-09-06 10:12:34 -0700
commit567568e0bfc38980b622f942ee07b23df189ca44 (patch)
tree7f398f61349fd3bfd32833c387c172c43da77963 /itypes.h
parent9d5dd3fa06ad1ae8355cbe00ec75d1cb80dd05c0 (diff)
downloadtxr-567568e0bfc38980b622f942ee07b23df189ca44.tar.gz
txr-567568e0bfc38980b622f942ee07b23df189ca44.tar.bz2
txr-567568e0bfc38980b622f942ee07b23df189ca44.zip
itypes: fix usage of double_intptr_t.
It has actually never yet been used since its introduction in commit 543f15cdc6b77f31639d87081b35aae3f1caf84a because we never HAVE_DBL_INTPTR_T (it's a typo). * itypes.h: HAVE_DBL_INTPTR_T -> HAVE_DOUBLE_INTPTR_T.
Diffstat (limited to 'itypes.h')
-rw-r--r--itypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/itypes.h b/itypes.h
index 497486c7..97e50b2b 100644
--- a/itypes.h
+++ b/itypes.h
@@ -76,7 +76,7 @@ typedef long i64_t;
#define HAVE_I64 1
typedef ulonglong_t u64_t;
typedef longlong_t i64_t;
-#elif HAVE_DBL_INTPTR_T && (SIZEOF_DOUBLE_INTPTR * CHAR_BIT) == 64
+#elif HAVE_DOUBLE_INTPTR_T && (SIZEOF_DOUBLE_INTPTR * CHAR_BIT) == 64
#define HAVE_I64 1
typedef double_uintptr_t u64_t;
typedef double_intptr_t i64_t;