From c4929149b96eb0c0f6c3950c0333cb7e56f5ac69 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Mon, 19 Jun 2000 10:04:52 +0000 Subject: [PATCH] * numbers.h (SCM_NEWREAL, SCM_NEWCOMPLEX): Removed. --- libguile/numbers.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/libguile/numbers.h b/libguile/numbers.h index 14e18f8a7..c53d587ec 100644 --- a/libguile/numbers.h +++ b/libguile/numbers.h @@ -308,8 +308,6 @@ typedef struct scm_dblproc double (*cproc) (); } scm_dblproc; -#define SCM_NEWREAL(z, x) do { z = scm_make_real (x); } while (0) -#define SCM_NEWCOMPLEX(z, x, y) do { z = scm_make_complex (x, y); } while (0) #define SCM_UNEGFIXABLE(n) ((n) <= -SCM_MOST_NEGATIVE_FIXNUM) #define SCM_FLOBUFLEN (10+2*(sizeof(double)/sizeof(char)*SCM_CHAR_BIT*3+9)/10) #define SCM_INEXP(x) SCM_INEXACTP(x)