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.h | |
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.h')
-rw-r--r-- | libguile/numbers.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libguile/numbers.h b/libguile/numbers.h index 95d59b8ad..abb08f0a0 100644 --- a/libguile/numbers.h +++ b/libguile/numbers.h @@ -3,7 +3,7 @@ #ifndef SCM_NUMBERS_H #define SCM_NUMBERS_H -/* Copyright (C) 1995,1996,1998,2000,2001,2002,2003,2004,2005, 2006, 2008, 2009 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,1998,2000,2001,2002,2003,2004,2005, 2006, 2008, 2009, 2010 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -353,16 +353,12 @@ SCM_API SCM scm_from_uint32 (scm_t_uint32 x); SCM_API scm_t_wchar scm_to_wchar (SCM x); SCM_API SCM scm_from_wchar (scm_t_wchar x); -#if SCM_HAVE_T_INT64 - SCM_API scm_t_int64 scm_to_int64 (SCM x); SCM_API SCM scm_from_int64 (scm_t_int64 x); SCM_API scm_t_uint64 scm_to_uint64 (SCM x); SCM_API SCM scm_from_uint64 (scm_t_uint64 x); -#endif - SCM_API void scm_to_mpz (SCM x, mpz_t rop); SCM_API SCM scm_from_mpz (mpz_t rop); |