diff options
author | Paul A. Patience <paul@apatience.com> | 2021-09-04 20:45:57 -0400 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-09-06 10:12:34 -0700 |
commit | 05774c6360f50ae2111cc84a590569466b18c887 (patch) | |
tree | 7f398f61349fd3bfd32833c387c172c43da77963 | |
parent | 73abf228864eefb5aef0f59061ed78e214a330ef (diff) | |
download | txr-05774c6360f50ae2111cc84a590569466b18c887.tar.gz txr-05774c6360f50ae2111cc84a590569466b18c887.tar.bz2 txr-05774c6360f50ae2111cc84a590569466b18c887.zip |
itypes: fix usage of double_intptr_t.
It has actually never yet been used since its introduction in
commit 8fe261d344eb7607ffbe05713bd808cd1d766e46 because we never
HAVE_DBL_INTPTR_T (it's a typo).
* itypes.h: HAVE_DBL_INTPTR_T -> HAVE_DOUBLE_INTPTR_T.
-rw-r--r-- | itypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |