1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 06:20:23 +02:00

* numbers.h (SCM_NEWREAL, SCM_NEWCOMPLEX): Removed.

This commit is contained in:
Mikael Djurfeldt 2000-06-19 10:04:52 +00:00
parent 26a379b298
commit c4929149b9

View file

@ -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)