1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

* tags.h: scm_t_intptr should have been intptr_t.

This commit is contained in:
Rob Browning 2003-04-14 15:42:34 +00:00
parent 3071ea2764
commit f59195a1d0

View file

@ -32,7 +32,7 @@
/* In the beginning was the Word:
*/
#if SCM_SIZEOF_INTPTR_T != 0 && defined(INTPTR_MAX) && defined(INTPTR_MIN)
typedef scm_t_intptr scm_t_signed_bits;
typedef intptr_t scm_t_signed_bits;
#define SCM_T_SIGNED_BITS_MAX INTPTR_MAX
#define SCM_T_SIGNED_BITS_MIN INTPTR_MIN
#else