diff --git a/libguile/numbers.h b/libguile/numbers.h index f38e73e78..900abc37a 100644 --- a/libguile/numbers.h +++ b/libguile/numbers.h @@ -276,7 +276,7 @@ extern SCM scm_bigequal SCM_P ((SCM x, SCM y)); extern SCM scm_floequal SCM_P ((SCM x, SCM y)); extern SCM scm_number_p SCM_P ((SCM x)); extern SCM scm_real_p SCM_P ((SCM x)); -extern SCM scm_int_p SCM_P ((SCM x)); +extern SCM scm_integer_p SCM_P ((SCM x)); extern SCM scm_inexact_p SCM_P ((SCM x)); extern SCM scm_num_eq_p SCM_P ((SCM x, SCM y)); extern SCM scm_less_p SCM_P ((SCM x, SCM y)); diff --git a/libguile/scmhob.h b/libguile/scmhob.h index 063938d90..6bd61489a 100644 --- a/libguile/scmhob.h +++ b/libguile/scmhob.h @@ -53,7 +53,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. #define in2ex scm_inexact_to_exact #define inexactp scm_inexact_p #define input_portp scm_input_port_p -#define intp scm_int_p +#define intp scm_integer_p #define length scm_length #define leqp scm_leq_p #define lessp scm_less_p