summaryrefslogtreecommitdiff
path: root/libguile/__scm.h
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2011-05-15 11:27:52 +0200
committerAndy Wingo <wingo@pobox.com>2011-05-15 15:34:15 +0200
commit4f1ce27a368a776dad8334824e92aeadfce998ab (patch)
treee994c27b1ab4b84dad4bac26f9c9bab96206d3e3 /libguile/__scm.h
parent871054f08e062f44ed668a2ae6b4df6500f54672 (diff)
downloadguile-4f1ce27a368a776dad8334824e92aeadfce998ab.tar.gz
remove SCM_I_LLONG and SCM_I_ULLONG limit defines
* test-suite/standalone/test-num2integral.c (test_long_long): (test_ulong_long): Replace SCM_I_LLONG and SCM_I_ULLONG defines with their counterparts from limits.h. * libguile/__scm.h: Remove SCM_I_LLONG and SCM_I_ULLONG limit defines.
Diffstat (limited to 'libguile/__scm.h')
-rw-r--r--libguile/__scm.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/libguile/__scm.h b/libguile/__scm.h
index 518799ed0..60659b8b8 100644
--- a/libguile/__scm.h
+++ b/libguile/__scm.h
@@ -310,12 +310,6 @@
#define SCM_T_INT64_MIN SCM_I_TYPE_MIN(scm_t_int64,SCM_T_UINT64_MAX)
#define SCM_T_INT64_MAX SCM_I_TYPE_MAX(scm_t_int64,SCM_T_UINT64_MAX)
-#if SCM_SIZEOF_LONG_LONG
-#define SCM_I_ULLONG_MAX SCM_I_UTYPE_MAX(unsigned long long)
-#define SCM_I_LLONG_MIN SCM_I_TYPE_MIN(long long,SCM_I_ULLONG_MAX)
-#define SCM_I_LLONG_MAX SCM_I_TYPE_MAX(long long,SCM_I_ULLONG_MAX)
-#endif
-
#define SCM_T_UINTMAX_MAX SCM_I_UTYPE_MAX(scm_t_uintmax)
#define SCM_T_INTMAX_MIN SCM_I_TYPE_MIN(scm_t_intmax,SCM_T_UINTMAX_MAX)
#define SCM_T_INTMAX_MAX SCM_I_TYPE_MAX(scm_t_intmax,SCM_T_UINTMAX_MAX)