diff options
Diffstat (limited to 'srfi/srfi-4.c')
-rw-r--r-- | srfi/srfi-4.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/srfi/srfi-4.c b/srfi/srfi-4.c index b76e1fbb6..1d5e9820f 100644 --- a/srfi/srfi-4.c +++ b/srfi/srfi-4.c @@ -31,8 +31,11 @@ typedef scm_t_int16 int_s16; typedef scm_t_uint32 int_u32; typedef scm_t_int32 int_s32; -#if SCM_HAVE_T_INT64 +#if SCM_HAVE_T_UINT64 typedef scm_t_uint64 int_u64; +#endif /* SCM_HAVE_T_UINT64 */ + +#if SCM_HAVE_T_INT64 typedef scm_t_int64 int_s64; #endif /* SCM_HAVE_T_INT64 */ |