diff options
author | Andy Wingo <wingo@pobox.com> | 2010-07-22 20:56:55 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-07-26 15:00:49 +0200 |
commit | 4ca48269976e17b2530728cce7df63843a6ce2b0 (patch) | |
tree | 2f72584484bf9f40062dafa4123a962fe17e4eb7 /libguile/numbers.c | |
parent | 77b139121d0344d8a89f4d8b85739a3447bac196 (diff) | |
download | guile-4ca48269976e17b2530728cce7df63843a6ce2b0.tar.gz |
remove SCM_HAVE_T_INT64, SCM_HAVE_T_UINT64
* libguile/__scm.h:
* libguile/numbers.h:
* libguile/random.c:
* libguile/srfi-4.c:
* libguile/srfi-4.h:
* libguile/numbers.c:
* test-suite/standalone/test-conversion.c:
* libguile/gen-scmconfig.c: As we require 64-bit integers in
configure.ac, remove conditional definition of 64-bit types.
Diffstat (limited to 'libguile/numbers.c')
-rw-r--r-- | libguile/numbers.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libguile/numbers.c b/libguile/numbers.c index 509e1c1ed..72c0387c0 100644 --- a/libguile/numbers.c +++ b/libguile/numbers.c @@ -6285,8 +6285,6 @@ scm_i_range_error (SCM bad_val, SCM min, SCM max) #define SCM_FROM_TYPE_PROTO(arg) scm_from_wchar (arg) #include "libguile/conv-integer.i.c" -#if SCM_HAVE_T_INT64 - #define TYPE scm_t_int64 #define TYPE_MIN SCM_T_INT64_MIN #define TYPE_MAX SCM_T_INT64_MAX @@ -6303,8 +6301,6 @@ scm_i_range_error (SCM bad_val, SCM min, SCM max) #define SCM_FROM_TYPE_PROTO(arg) scm_from_uint64 (arg) #include "libguile/conv-uinteger.i.c" -#endif - void scm_to_mpz (SCM val, mpz_t rop) { |