diff options
author | Rob Browning <rlb@defaultvalue.org> | 2004-06-20 20:18:18 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2004-06-20 20:18:18 +0000 |
commit | 9d9536fdd88335070bba19a11a0a0e7afa7f7013 (patch) | |
tree | 4e80d51ff90d959c79f6cc876bf51505509ab0cb /srfi/srfi-4.c | |
parent | 82d5c4b7048fc18276cc7f25bcc5234823735f5a (diff) | |
download | guile-9d9536fdd88335070bba19a11a0a0e7afa7f7013.tar.gz |
Add separate symmetric test for SCM_HAVE_T_UINT64 in one case.
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 */ |