* coop-threads.c: Remove K&R function headers.
[bpt/guile.git] / libguile / numbers.c
index 6a41f38..46a205c 100644 (file)
@@ -1,4 +1,4 @@
-/*      Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
+/*      Copyright (C) 1995,1996,1997,1998, 1999 Free Software Foundation, Inc.
 
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * If you write modifications of your own for GUILE, it is your choice
  * whether to permit this exception to apply to your modifications.
  * If you do not wish that, delete this exception notice.  */
+
+/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
+   gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
+
 \f
 
 #include <stdio.h>
 #include "_scm.h"
 #include "genio.h"
 #include "unif.h"
+#include "feature.h"
+#include "smob.h"
 
+#include "scm_validate.h"
 #include "numbers.h"
 \f
 #define DIGITS '0':case '1':case '2':case '3':case '4':\
 \f
 
 
-SCM_PROC (s_exact_p, "exact?", 1, 0, 0, scm_exact_p);
-
-SCM
-scm_exact_p (x)
-     SCM x;
+GUILE_PROC (scm_exact_p, "exact?", 1, 0, 0, 
+            (SCM x),
+"")
+#define FUNC_NAME s_scm_exact_p
 {
   if (SCM_INUMP (x))
     return SCM_BOOL_T;
 #ifdef SCM_BIGDIG
-  if (SCM_NIMP (x) && SCM_BIGP (x))
+  if (SCM_BIGP (x))
     return SCM_BOOL_T;
 #endif
   return SCM_BOOL_F;
 }
+#undef FUNC_NAME
 
-SCM_PROC (s_odd_p, "odd?", 1, 0, 0, scm_odd_p);
-
-SCM
-scm_odd_p (n)
-     SCM n;
+GUILE_PROC (scm_odd_p, "odd?", 1, 0, 0, 
+            (SCM n),
+"")
+#define FUNC_NAME s_scm_odd_p
 {
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (n))
     {
-      SCM_ASSERT (SCM_NIMP (n) && SCM_BIGP (n), n, SCM_ARG1, s_odd_p);
-      return (1 & SCM_BDIGITS (n)[0]) ? SCM_BOOL_T : SCM_BOOL_F;
+      SCM_VALIDATE_BIGINT(1,n);
+      return SCM_BOOL(1 & SCM_BDIGITS (n)[0]);
     }
 #else
-  SCM_ASSERT (SCM_INUMP (n), n, SCM_ARG1, s_odd_p);
+  SCM_VALIDATE_INT(1,n);
 #endif
-  return (4 & (int) n) ? SCM_BOOL_T : SCM_BOOL_F;
+  return SCM_BOOL(4 & (int) n);
 }
+#undef FUNC_NAME
 
-SCM_PROC (s_even_p, "even?", 1, 0, 0, scm_even_p);
-
-SCM
-scm_even_p (n)
-     SCM n;
+GUILE_PROC (scm_even_p, "even?", 1, 0, 0, 
+            (SCM n),
+"")
+#define FUNC_NAME s_scm_even_p
 {
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (n))
     {
-      SCM_ASSERT (SCM_NIMP (n) && SCM_BIGP (n), n, SCM_ARG1, s_even_p);
-      return (1 & SCM_BDIGITS (n)[0]) ? SCM_BOOL_F : SCM_BOOL_T;
+      SCM_VALIDATE_BIGINT(1,n);
+      return SCM_NEGATE_BOOL(1 & SCM_BDIGITS (n)[0]);
     }
 #else
-  SCM_ASSERT (SCM_INUMP (n), n, SCM_ARG1, s_even_p);
+  SCM_VALIDATE_INT(1,n);
 #endif
-  return (4 & (int) n) ? SCM_BOOL_F : SCM_BOOL_T;
+  return SCM_NEGATE_BOOL(4 & (int) n);
 }
+#undef FUNC_NAME
 
-SCM_PROC (s_abs, "abs", 1, 0, 0, scm_abs);
+SCM_GPROC (s_abs, "abs", 1, 0, 0, scm_abs, g_abs);
 
 SCM
-scm_abs (x)
-     SCM x;
+scm_abs (SCM x)
 {
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_abs);
+      SCM_GASSERT1 (SCM_BIGP (x), g_abs, x, SCM_ARG1, s_abs);
       if (SCM_TYP16 (x) == scm_tc16_bigpos)
        return x;
       return scm_copybig (x, 0);
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_abs);
+  SCM_GASSERT1 (SCM_INUMP (x), g_abs, x, SCM_ARG1, s_abs);
 #endif
   if (SCM_INUM (x) >= 0)
     return x;
@@ -168,22 +174,21 @@ scm_abs (x)
   return SCM_MAKINUM (x);
 }
 
-SCM_PROC (s_quotient, "quotient", 2, 0, 0, scm_quotient);
+SCM_GPROC (s_quotient, "quotient", 2, 0, 0, scm_quotient, g_quotient);
 
 SCM
-scm_quotient (x, y)
-     SCM x;
-     SCM y;
+scm_quotient (SCM x, SCM y)
 {
   register long z;
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
       long w;
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_quotient);
+      SCM_GASSERT2 (SCM_BIGP (x),
+                   g_quotient, x, y, SCM_ARG1, s_quotient);
       if (SCM_NINUMP (y))
        {
-         SCM_ASRTGO (SCM_NIMP (y) && SCM_BIGP (y), bady);
+         SCM_ASRTGO (SCM_BIGP (y), bady);
          return scm_divbigbig (SCM_BDIGITS (x), SCM_NUMDIGS (x),
                                SCM_BDIGITS (y), SCM_NUMDIGS (y),
                                SCM_BIGSIGN (x) ^ SCM_BIGSIGN (y), 2);
@@ -217,18 +222,16 @@ scm_quotient (x, y)
     }
   if (SCM_NINUMP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_BIGP (y)))
+      if (!SCM_BIGP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_quotient);
+         SCM_WTA_DISPATCH_2 (g_quotient, x, y, SCM_ARG2, s_quotient);
        }
-#endif
       return SCM_INUM0;
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_quotient);
-  SCM_ASSERT (SCM_INUMP (y), y, SCM_ARG2, s_quotient);
+  SCM_GASSERT2 (SCM_INUMP (x), g_quotient, x, y, SCM_ARG1, s_quotient);
+  SCM_GASSERT2 (SCM_INUMP (y), g_quotient, x, y, SCM_ARG2, s_quotient);
 #endif
   if ((z = SCM_INUM (y)) == 0)
     {
@@ -261,21 +264,20 @@ scm_quotient (x, y)
   return SCM_MAKINUM (z);
 }
 
-SCM_PROC (s_remainder, "remainder", 2, 0, 0, scm_remainder);
+SCM_GPROC (s_remainder, "remainder", 2, 0, 0, scm_remainder, g_remainder);
 
 SCM
-scm_remainder (x, y)
-     SCM x;
-     SCM y;
+scm_remainder (SCM x, SCM y)
 {
   register long z;
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_remainder);
+      SCM_GASSERT2 (SCM_BIGP (x),
+                   g_remainder, x, y, SCM_ARG1, s_remainder);
       if (SCM_NINUMP (y))
        {
-         SCM_ASRTGO (SCM_NIMP (y) && SCM_BIGP (y), bady);
+         SCM_ASRTGO (SCM_BIGP (y), bady);
          return scm_divbigbig (SCM_BDIGITS (x), SCM_NUMDIGS (x),
                                SCM_BDIGITS (y), SCM_NUMDIGS (y),
                                SCM_BIGSIGN (x), 0);
@@ -286,18 +288,16 @@ scm_remainder (x, y)
     }
   if (SCM_NINUMP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_BIGP (y)))
+      if (!SCM_BIGP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_remainder);
+         SCM_WTA_DISPATCH_2 (g_remainder, x, y, SCM_ARG2, s_remainder);
        }
-#endif
       return x;
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_remainder);
-  SCM_ASSERT (SCM_INUMP (y), y, SCM_ARG2, s_remainder);
+  SCM_GASSERT2 (SCM_INUMP (x), g_remainder, x, y, SCM_ARG1, s_remainder);
+  SCM_GASSERT2 (SCM_INUMP (y), g_remainder, x, y, SCM_ARG2, s_remainder);
 #endif
   if (!(z = SCM_INUM (y)))
     {
@@ -321,21 +321,20 @@ scm_remainder (x, y)
   return SCM_MAKINUM (z);
 }
 
-SCM_PROC (s_modulo, "modulo", 2, 0, 0, scm_modulo);
+SCM_GPROC (s_modulo, "modulo", 2, 0, 0, scm_modulo, g_modulo);
 
 SCM
-scm_modulo (x, y)
-     SCM x;
-     SCM y;
+scm_modulo (SCM x, SCM y)
 {
   register long yy, z;
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_modulo);
+      SCM_GASSERT2 (SCM_BIGP (x),
+                   g_modulo, x, y, SCM_ARG1, s_modulo);
       if (SCM_NINUMP (y))
        {
-         SCM_ASRTGO (SCM_NIMP (y) && SCM_BIGP (y), bady);
+         SCM_ASRTGO (SCM_BIGP (y), bady);
          return scm_divbigbig (SCM_BDIGITS (x), SCM_NUMDIGS (x),
                                SCM_BDIGITS (y), SCM_NUMDIGS (y),
                                SCM_BIGSIGN (y),
@@ -348,18 +347,16 @@ scm_modulo (x, y)
     }
   if (SCM_NINUMP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_BIGP (y)))
+      if (!SCM_BIGP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_modulo);
+         SCM_WTA_DISPATCH_2 (g_modulo, x, y, SCM_ARG2, s_modulo);
        }
-#endif
       return (SCM_BIGSIGN (y) ? (x > 0) : (x < 0)) ? scm_sum (x, y) : x;
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_modulo);
-  SCM_ASSERT (SCM_INUMP (y), y, SCM_ARG2, s_modulo);
+  SCM_GASSERT1 (SCM_INUMP (x), g_modulo, x, y, SCM_ARG1, s_modulo);
+  SCM_GASSERT2 (SCM_INUMP (y), g_modulo, x, y, SCM_ARG2, s_modulo);
 #endif
   if (!(yy = SCM_INUM (y)))
     {
@@ -375,12 +372,10 @@ scm_modulo (x, y)
   return SCM_MAKINUM (((yy < 0) ? (z > 0) : (z < 0)) ? z + yy : z);
 }
 
-SCM_PROC1 (s_gcd, "gcd", scm_tc7_asubr, scm_gcd);
+SCM_GPROC1 (s_gcd, "gcd", scm_tc7_asubr, scm_gcd, g_gcd);
 
 SCM
-scm_gcd (x, y)
-     SCM x;
-     SCM y;
+scm_gcd (SCM x, SCM y)
 {
   register long u, v, k, t;
   if (SCM_UNBNDP (y))
@@ -390,13 +385,15 @@ scm_gcd (x, y)
   if (SCM_NINUMP (x))
     {
     big_gcd:
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_gcd);
+      SCM_GASSERT2 (SCM_BIGP (x),
+                   g_gcd, x, y, SCM_ARG1, s_gcd);
       if (SCM_BIGSIGN (x))
        x = scm_copybig (x, 0);
     newy:
       if (SCM_NINUMP (y))
        {
-         SCM_ASSERT (SCM_NIMP (y) && SCM_BIGP (y), y, SCM_ARG2, s_gcd);
+         SCM_GASSERT2 (SCM_BIGP (y),
+                       g_gcd, x, y, SCM_ARGn, s_gcd);
          if (SCM_BIGSIGN (y))
            y = scm_copybig (y, 0);
          switch (scm_bigcomp (x, y))
@@ -428,8 +425,8 @@ scm_gcd (x, y)
       goto big_gcd;
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_gcd);
-  SCM_ASSERT (SCM_INUMP (y), y, SCM_ARG2, s_gcd);
+  SCM_GASSERT2 (SCM_INUMP (x), g_gcd, x, y, SCM_ARG1, s_gcd);
+  SCM_GASSERT2 (SCM_INUMP (y), g_gcd, x, y, SCM_ARGn, s_gcd);
 #endif
   u = SCM_INUM (x);
   if (u < 0)
@@ -472,20 +469,34 @@ scm_gcd (x, y)
   return SCM_MAKINUM (u);
 }
 
-SCM_PROC1 (s_lcm, "lcm", scm_tc7_asubr, scm_lcm);
+SCM_GPROC1 (s_lcm, "lcm", scm_tc7_asubr, scm_lcm, g_lcm);
 
 SCM
-scm_lcm (n1, n2)
-     SCM n1;
-     SCM n2;
+scm_lcm (SCM n1, SCM n2)
 {
   SCM d;
+#ifndef SCM_BIGDIG
+  SCM_GASSERT2 (SCM_INUMP (n1) || SCM_UNBNDP (n1),
+               g_lcm, n1, n2, SCM_ARG1, s_lcm);
+  SCM_GASSERT2 (SCM_INUMP (n2) || SCM_UNBNDP (n2),
+               g_lcm, n1, n2, SCM_ARGn, s_lcm);
+#else
+  SCM_GASSERT2 (SCM_INUMP (n1)
+               || SCM_UNBNDP (n1)
+               || (SCM_BIGP (n1)),
+               g_lcm, n1, n2, SCM_ARG1, s_lcm);
+  SCM_GASSERT2 (SCM_INUMP (n2)
+               || SCM_UNBNDP (n2)
+               || (SCM_BIGP (n2)),
+               g_lcm, n1, n2, SCM_ARGn, s_lcm);
+#endif
   if (SCM_UNBNDP (n2))
     {
       n2 = SCM_MAKINUM (1L);
       if (SCM_UNBNDP (n1))
        return n2;
     }
+  
   d = scm_gcd (n1, n2);
   if (SCM_INUM0 == d)
     return d;
@@ -499,210 +510,276 @@ scm_lcm (n1, n2)
 #endif
 
 #ifndef scm_long2num
-SCM_PROC1 (s_logand, "logand", scm_tc7_asubr, scm_logand);
-
-SCM
-scm_logand (n1, n2)
-     SCM n1;
-     SCM n2;
+GUILE_PROC1 (scm_logand, "logand", scm_tc7_asubr,
+             (SCM n1, SCM n2),
+"Returns the integer which is the bit-wise AND of the two integer
+arguments.
+
+Example:
+@lisp
+(number->string (logand #b1100 #b1010) 2)
+   @result{} \"1000\"")
+#define FUNC_NAME s_scm_logand
 {
+  int i1, i2;
   if (SCM_UNBNDP (n2))
     {
       if (SCM_UNBNDP (n1))
        return SCM_MAKINUM (-1);
       return n1;
     }
-  return scm_ulong2num (scm_num2ulong (n1, (char *) SCM_ARG1, s_logand)
-                       & scm_num2ulong (n2, (char *) SCM_ARG2, s_logand));
+  SCM_VALIDATE_INT_COPY(1,n1,i1);
+  SCM_VALIDATE_INT_COPY(2,n2,i2);
+  return scm_ulong2num (i1 & i2);
 }
-
-SCM_PROC1 (s_logior, "logior", scm_tc7_asubr, scm_logior);
-
-SCM
-scm_logior (n1, n2)
-     SCM n1;
-     SCM n2;
+#undef FUNC_NAME
+
+GUILE_PROC1 (scm_logior, "logior", scm_tc7_asubr,
+             (SCM n1, SCM n2),
+"Returns the integer which is the bit-wise OR of the two integer
+arguments.
+
+Example:
+@lisp
+(number->string (logior #b1100 #b1010) 2)
+   @result{} \"1110\"
+@end lisp")
+#define FUNC_NAME s_scm_logior
 {
+  int i1, i2;
   if (SCM_UNBNDP (n2))
     {
       if (SCM_UNBNDP (n1))
        return SCM_INUM0;
       return n1;
     }
-  return scm_ulong2num (scm_num2ulong (n1, (char *) SCM_ARG1, s_logior)
-                       | scm_num2ulong (n2, (char *) SCM_ARG2, s_logior));
+  SCM_VALIDATE_INT_COPY(1,n1,i1);
+  SCM_VALIDATE_INT_COPY(2,n2,i2);
+  return scm_ulong2num (i1 | i2);
 }
-
-SCM_PROC1 (s_logxor, "logxor", scm_tc7_asubr, scm_logxor);
-
-SCM
-scm_logxor (n1, n2)
-     SCM n1;
-     SCM n2;
+#undef FUNC_NAME
+
+GUILE_PROC1 (scm_logxor, "logxor", scm_tc7_asubr,
+             (SCM n1, SCM n2),
+"Returns the integer which is the bit-wise XOR of the two integer
+arguments.
+
+Example:
+@lisp
+(number->string (logxor #b1100 #b1010) 2)
+   @result{} \"110\"
+@end lisp")
+#define FUNC_NAME s_scm_logxor
 {
+  int i1, i2;
   if (SCM_UNBNDP (n2))
     {
       if (SCM_UNBNDP (n1))
        return SCM_INUM0;
       return n1;
     }
-  return scm_ulong2num (scm_num2ulong (n1, (char *) SCM_ARG1, s_logxor)
-                       ^ scm_num2ulong (n2, (char *) SCM_ARG2, s_logxor));
+  SCM_VALIDATE_INT_COPY(1,n1,i1);
+  SCM_VALIDATE_INT_COPY(2,n2,i2);
+  return scm_ulong2num (i1 ^ i2);
 }
+#undef FUNC_NAME
 
-SCM_PROC (s_logtest, "logtest", 2, 0, 0, scm_logtest);
-
-SCM
-scm_logtest (n1, n2)
-     SCM n1;
-     SCM n2;
+GUILE_PROC (scm_logtest, "logtest", 2, 0, 0,
+            (SCM n1, SCM n2),
+"")
+#define FUNC_NAME s_scm_logtest
 {
-  return ((scm_num2ulong (n1, (char *) SCM_ARG1, s_logtest)
-          & scm_num2ulong (n2, (char *) SCM_ARG2, s_logtest))
-         ? SCM_BOOL_T : SCM_BOOL_F);
+  int i1, i2;
+  SCM_VALIDATE_INT_COPY(1,n1,i1);
+  SCM_VALIDATE_INT_COPY(2,n2,i2);
+  return SCM_BOOL(i1 & i2);
 }
+#undef FUNC_NAME
 
 
-SCM_PROC (s_logbit_p, "logbit?", 2, 0, 0, scm_logbit_p);
-
-SCM
-scm_logbit_p (n1, n2)
-     SCM n1;
-     SCM n2;
+GUILE_PROC (scm_logbit_p, "logbit?", 2, 0, 0,
+            (SCM n1, SCM n2),
+"")
+#define FUNC_NAME s_scm_logbit_p
 {
-  return (((1 << scm_num2long (n1, (char *) SCM_ARG1, s_logtest))
-          & scm_num2ulong (n2, (char *) SCM_ARG2, s_logtest))
-         ? SCM_BOOL_T : SCM_BOOL_F);
+  int i1, i2;
+  SCM_VALIDATE_INT_COPY(1,n1,i1);
+  SCM_VALIDATE_INT_COPY(2,n2,i2);
+  return SCM_BOOL((1 << i1) & i2);
 }
+#undef FUNC_NAME
 
 #else
 
-SCM_PROC1 (s_logand, "logand", scm_tc7_asubr, scm_logand);
-
-SCM
-scm_logand (n1, n2)
-     SCM n1;
-     SCM n2;
+GUILE_PROC1 (scm_logand, "logand", scm_tc7_asubr,
+             (SCM n1, SCM n2),
+"")
+#define FUNC_NAME s_scm_logand
 {
+  int i1, i2;
   if (SCM_UNBNDP (n2))
     {
       if (SCM_UNBNDP (n1))
        return SCM_MAKINUM (-1);
       return n1;
     }
-  return SCM_MAKINUM (SCM_INUM (n1) & SCM_INUM (n2));
+  SCM_VALIDATE_INT_COPY(1,n1,i1);
+  SCM_VALIDATE_INT_COPY(2,n2,i2);
+  return SCM_MAKINUM (i1 & i2);
 }
+#undef FUNC_NAME
 
-SCM_PROC1 (s_logior, "logior", scm_tc7_asubr, scm_logior);
-
-SCM
-scm_logior (n1, n2)
-     SCM n1;
-     SCM n2;
+GUILE_PROC1 (scm_logior, "logior", scm_tc7_asubr,
+             (SCM n1, SCM n2),
+"")
+#define FUNC_NAME s_scm_logior
 {
+  int i1, i2;
   if (SCM_UNBNDP (n2))
     {
       if (SCM_UNBNDP (n1))
        return SCM_INUM0;
       return n1;
     }
-  return SCM_MAKINUM (SCM_INUM (n1) | SCM_INUM (n2));
+  SCM_VALIDATE_INT_COPY(1,n1,i1);
+  SCM_VALIDATE_INT_COPY(2,n2,i2);
+  return SCM_MAKINUM (i1 | i2);
 }
+#undef FUNC_NAME
 
-SCM_PROC1 (s_logxor, "logxor", scm_tc7_asubr, scm_logxor);
-
-SCM
-scm_logxor (n1, n2)
-     SCM n1;
-     SCM n2;
+GUILE_PROC1 (scm_logxor, "logxor", scm_tc7_asubr,
+             (SCM n1, SCM n2),
+"")
+#define FUNC_NAME s_scm_logxor
 {
+  int i1, i2;
   if (SCM_UNBNDP (n2))
     {
       if (SCM_UNBNDP (n1))
        return SCM_INUM0;
       return n1;
     }
-  return SCM_MAKINUM (SCM_INUM (n1) ^ SCM_INUM (n2));
+  SCM_VALIDATE_INT_COPY(1,n1,i1);
+  SCM_VALIDATE_INT_COPY(2,n2,i2);
+  return SCM_MAKINUM (i1 ^ i2);
 }
+#undef FUNC_NAME
 
-SCM_PROC (s_logtest, "logtest", 2, 0, 0, scm_logtest);
+GUILE_PROC (scm_logtest, "logtest", 2, 0, 0,
+            (SCM n1, SCM n2),
+"@example
+(logtest j k) @equiv{} (not (zero? (logand j k)))
 
-SCM
-scm_logtest (n1, n2)
-     SCM n1;
-     SCM n2;
+(logtest #b0100 #b1011) @result{} #f
+(logtest #b0100 #b0111) @result{} #t
+@end example")
+#define FUNC_NAME s_scm_logtest
 {
-  SCM_ASSERT (SCM_INUMP (n1), n1, SCM_ARG1, s_logtest);
-  SCM_ASSERT (SCM_INUMP (n2), n2, SCM_ARG2, s_logtest);
-  return (SCM_INUM (n1) & SCM_INUM (n2)) ? SCM_BOOL_T : SCM_BOOL_F;
+  int i1, i2;
+  SCM_VALIDATE_INT_COPY(1,n1,i1);
+  SCM_VALIDATE_INT_COPY(2,n2,i2);
+  return SCM_BOOL(i1 & i2);
 }
-
-SCM_PROC (s_logbit_p, "logbit?", 2, 0, 0, scm_logbit_p);
-
-SCM
-scm_logbit_p (n1, n2)
-     SCM n1;
-     SCM n2;
+#undef FUNC_NAME
+
+GUILE_PROC (scm_logbit_p, "logbit?", 2, 0, 0,
+            (SCM n1, SCM n2),
+"@example
+(logbit? index j) @equiv{} (logtest (integer-expt 2 index) j)
+
+(logbit? 0 #b1101) @result{} #t
+(logbit? 1 #b1101) @result{} #f
+(logbit? 2 #b1101) @result{} #t
+(logbit? 3 #b1101) @result{} #t
+(logbit? 4 #b1101) @result{} #f
+@end example")
+#define FUNC_NAME s_scm_logbit_p
 {
-  SCM_ASSERT (SCM_INUMP (n1) && SCM_INUM (n1) >= 0, n1, SCM_ARG1, s_logbit_p);
-  SCM_ASSERT (SCM_INUMP (n2), n2, SCM_ARG2, s_logbit_p);
-  return ((1 << SCM_INUM (n1)) & SCM_INUM (n2)) ? SCM_BOOL_T : SCM_BOOL_F;
+  int i1, i2;
+  SCM_VALIDATE_INT_MIN_COPY(1,n1,0,i1);
+  SCM_VALIDATE_INT_COPY(2,n2,i2);
+  return SCM_BOOL((1 << i1) & i2);
 }
-#endif
-
-SCM_PROC (s_lognot, "lognot", 1, 0, 0, scm_lognot);
-
-SCM
-scm_lognot (n)
-     SCM n;
+#undef FUNC_NAME
+#endif
+
+GUILE_PROC (scm_lognot, "lognot", 1, 0, 0, 
+            (SCM n),
+"Returns the integer which is the 2s-complement of the integer argument.
+
+Example:
+@lisp
+(number->string (lognot #b10000000) 2)
+   @result{} \"-10000001\"
+(number->string (lognot #b0) 2)
+   @result{} \"-1\"
+@end lisp
+")
+#define FUNC_NAME s_scm_lognot
 {
-  SCM_ASSERT (SCM_INUMP (n), n, SCM_ARG1, s_lognot);
+  SCM_VALIDATE_INT(1,n);
   return scm_difference (SCM_MAKINUM (-1L), n);
 }
-
-SCM_PROC (s_integer_expt, "integer-expt", 2, 0, 0, scm_integer_expt);
-
-SCM
-scm_integer_expt (z1, z2)
-     SCM z1;
-     SCM z2;
+#undef FUNC_NAME
+
+GUILE_PROC (scm_integer_expt, "integer-expt", 2, 0, 0,
+            (SCM z1, SCM z2),
+"Returns @var{n} raised to the non-negative integer exponent @var{k}.
+
+Example:
+@lisp
+(integer-expt 2 5)
+   @result{} 32
+(integer-expt -3 3)
+   @result{} -27
+@end lisp")
+#define FUNC_NAME s_scm_integer_expt
 {
   SCM acc = SCM_MAKINUM (1L);
+  int i2;
 #ifdef SCM_BIGDIG
   if (SCM_INUM0 == z1 || acc == z1)
     return z1;
   else if (SCM_MAKINUM (-1L) == z1)
     return SCM_BOOL_F == scm_even_p (z2) ? z1 : acc;
 #endif
-  SCM_ASSERT (SCM_INUMP (z2), z2, SCM_ARG2, s_integer_expt);
-  z2 = SCM_INUM (z2);
-  if (z2 < 0)
+  SCM_VALIDATE_INT_COPY(2,z2,i2);
+  if (i2 < 0)
     {
-      z2 = -z2;
+      i2 = -i2;
       z1 = scm_divide (z1, SCM_UNDEFINED);
     }
   while (1)
     {
-      if (0 == z2)
+      if (0 == i2)
        return acc;
-      if (1 == z2)
+      if (1 == i2)
        return scm_product (acc, z1);
-      if (z2 & 1)
+      if (i2 & 1)
        acc = scm_product (acc, z1);
       z1 = scm_product (z1, z1);
-      z2 >>= 1;
+      i2 >>= 1;
     }
 }
-
-SCM_PROC (s_ash, "ash", 2, 0, 0, scm_ash);
-
-SCM
-scm_ash (n, cnt)
-     SCM n;
-     SCM cnt;
+#undef FUNC_NAME
+
+GUILE_PROC (scm_ash, "ash", 2, 0, 0,
+            (SCM n, SCM cnt),
+"Returns an integer equivalent to
+@code{(inexact->exact (floor (* @var{int} (expt 2 @var{count}))))}.@refill
+
+Example:
+@lisp
+(number->string (ash #b1 3) 2)
+   @result{} "1000"
+(number->string (ash #b1010 -1) 2)
+   @result{} "101"
+@end lisp")
+#define FUNC_NAME s_scm_ash
 {
+  /* GJB:FIXME:: what is going on here? */
   SCM res = SCM_INUM (n);
-  SCM_ASSERT (SCM_INUMP (cnt), cnt, SCM_ARG2, s_ash);
+  SCM_VALIDATE_INT(2,cnt);
 #ifdef SCM_BIGDIG
   if (cnt < 0)
     {
@@ -716,30 +793,40 @@ scm_ash (n, cnt)
   else
     return scm_product (n, scm_integer_expt (SCM_MAKINUM (2), cnt));
 #else
-  SCM_ASSERT (SCM_INUMP (n), n, SCM_ARG1, s_ash);
+  SCM_VALIDATE_INT(1,n)
   cnt = SCM_INUM (cnt);
   if (cnt < 0)
     return SCM_MAKINUM (SCM_SRS (res, -cnt));
   res = SCM_MAKINUM (res << cnt);
   if (SCM_INUM (res) >> cnt != SCM_INUM (n))
-    scm_num_overflow (s_ash);
+    scm_num_overflow (FUNC_NAME);
   return res;
 #endif
 }
-
-SCM_PROC (s_bit_extract, "bit-extract", 3, 0, 0, scm_bit_extract);
-
-SCM
-scm_bit_extract (n, start, end)
-     SCM n;
-     SCM start;
-     SCM end;
+#undef FUNC_NAME
+
+/* GJB:FIXME: do not use SCMs as integers! */
+GUILE_PROC (scm_bit_extract, "bit-extract", 3, 0, 0,
+            (SCM n, SCM start, SCM end),
+"Returns the integer composed of the @var{start} (inclusive) through
+@var{end} (exclusive) bits of @var{n}.  The @var{start}th bit becomes
+the 0-th bit in the result.@refill
+
+Example:
+@lisp
+(number->string (bit-extract #b1101101010 0 4) 2)
+   @result{} \"1010\"
+(number->string (bit-extract #b1101101010 4 9) 2)
+   @result{} \"10110\"
+@end lisp")
+#define FUNC_NAME s_scm_bit_extract
 {
-  SCM_ASSERT (SCM_INUMP (start), start, SCM_ARG2, s_bit_extract);
-  SCM_ASSERT (SCM_INUMP (end), end, SCM_ARG3, s_bit_extract);
+  SCM_VALIDATE_INT(1,n);
+  SCM_VALIDATE_INT_MIN(2,start,0);
+  SCM_VALIDATE_INT_MIN(3,end,0);
   start = SCM_INUM (start);
   end = SCM_INUM (end);
-  SCM_ASSERT (end >= start, SCM_MAKINUM (end), SCM_OUTOFRANGE, s_bit_extract);
+  SCM_ASSERT (end >= start, SCM_MAKINUM (end), SCM_OUTOFRANGE, FUNC_NAME);
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (n))
     return
@@ -748,19 +835,33 @@ scm_bit_extract (n, start, end)
                                  SCM_MAKINUM (1L)),
                  scm_ash (n, SCM_MAKINUM (-start)));
 #else
-  SCM_ASSERT (SCM_INUMP (n), n, SCM_ARG1, s_bit_extract);
+  SCM_VALIDATE_INT(1,n);
 #endif
   return SCM_MAKINUM ((SCM_INUM (n) >> start) & ((1L << (end - start)) - 1));
 }
+#undef FUNC_NAME
 
 static const char scm_logtab[] = {
   0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4
 };
-SCM_PROC (s_logcount, "logcount", 1, 0, 0, scm_logcount);
 
-SCM
-scm_logcount (n)
-     SCM n;
+GUILE_PROC (scm_logcount, "logcount", 1, 0, 0,
+            (SCM n),
+"Returns the number of bits in integer @var{n}.  If integer is positive,
+the 1-bits in its binary representation are counted.  If negative, the
+0-bits in its two's-complement binary representation are counted.  If 0,
+0 is returned.
+
+Example:
+@lisp
+(logcount #b10101010)
+   @result{} 4
+(logcount 0)
+   @result{} 0
+(logcount -2)
+   @result{} 1
+@end lisp")
+#define FUNC_NAME s_scm_logcount
 {
   register unsigned long c = 0;
   register long nn;
@@ -769,7 +870,7 @@ scm_logcount (n)
     {
       scm_sizet i;
       SCM_BIGDIG *ds, d;
-      SCM_ASSERT (SCM_NIMP (n) && SCM_BIGP (n), n, SCM_ARG1, s_logcount);
+      SCM_VALIDATE_BIGINT(1,n);
       if (SCM_BIGSIGN (n))
        return scm_logcount (scm_difference (SCM_MAKINUM (-1L), n));
       ds = SCM_BDIGITS (n);
@@ -779,7 +880,7 @@ scm_logcount (n)
       return SCM_MAKINUM (c);
     }
 #else
-  SCM_ASSERT (SCM_INUMP (n), n, SCM_ARG1, s_logcount);
+  SCM_VALIDATE_INT(1,n);
 #endif
   if ((nn = SCM_INUM (n)) < 0)
     nn = -1 - nn;
@@ -787,15 +888,27 @@ scm_logcount (n)
     c += scm_logtab[15 & nn];
   return SCM_MAKINUM (c);
 }
+#undef FUNC_NAME
+
 
 static const char scm_ilentab[] = {
   0, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4
 };
-SCM_PROC (s_integer_length, "integer-length", 1, 0, 0, scm_integer_length);
 
-SCM
-scm_integer_length (n)
-     SCM n;
+GUILE_PROC (scm_integer_length, "integer-length", 1, 0, 0,
+            (SCM n),
+"Returns the number of bits neccessary to represent @var{n}.
+
+Example:
+@lisp
+(integer-length #b10101010)
+   @result{} 8
+(integer-length 0)
+   @result{} 0
+(integer-length #b1111)
+   @result{} 4
+@end lisp")
+#define FUNC_NAME s_scm_integer_length
 {
   register unsigned long c = 0;
   register long nn;
@@ -804,7 +917,7 @@ scm_integer_length (n)
   if (SCM_NINUMP (n))
     {
       SCM_BIGDIG *ds, d;
-      SCM_ASSERT (SCM_NIMP (n) && SCM_BIGP (n), n, SCM_ARG1, s_integer_length);
+      SCM_VALIDATE_BIGINT(1,n);
       if (SCM_BIGSIGN (n))
        return scm_integer_length (scm_difference (SCM_MAKINUM (-1L), n));
       ds = SCM_BDIGITS (n);
@@ -817,7 +930,7 @@ scm_integer_length (n)
       return SCM_MAKINUM (c - 4 + l);
     }
 #else
-  SCM_ASSERT (SCM_INUMP (n), n, SCM_ARG1, s_integer_length);
+  SCM_VALIDATE_INT(1,n);
 #endif
   if ((nn = SCM_INUM (n)) < 0)
     nn = -1 - nn;
@@ -828,15 +941,14 @@ scm_integer_length (n)
     }
   return SCM_MAKINUM (c - 4 + l);
 }
+#undef FUNC_NAME
 
 
 #ifdef SCM_BIGDIG
 static const char s_bignum[] = "bignum";
 
 SCM
-scm_mkbig (nlen, sign)
-     scm_sizet nlen;
-     int sign;
+scm_mkbig (scm_sizet nlen, int sign)
 {
   SCM v = nlen;
   /* Cast to SCM to avoid signed/unsigned comparison warnings.  */
@@ -853,9 +965,7 @@ scm_mkbig (nlen, sign)
 
 
 SCM
-scm_big2inum (b, l)
-     SCM b;
-     scm_sizet l;
+scm_big2inum (SCM b, scm_sizet l)
 {
   unsigned long num = 0;
   SCM_BIGDIG *tmp = SCM_BDIGITS (b);
@@ -875,9 +985,7 @@ scm_big2inum (b, l)
 static const char s_adjbig[] = "scm_adjbig";
 
 SCM
-scm_adjbig (b, nlen)
-     SCM b;
-     scm_sizet nlen;
+scm_adjbig (SCM b, scm_sizet nlen)
 {
   scm_sizet nsiz = nlen;
   if (((nsiz << 16) >> 16) != nlen)
@@ -901,8 +1009,7 @@ scm_adjbig (b, nlen)
 
 
 SCM
-scm_normbig (b)
-     SCM b;
+scm_normbig (SCM b)
 {
 #ifndef _UNICOS
   scm_sizet nlen = SCM_NUMDIGS (b);
@@ -923,9 +1030,7 @@ scm_normbig (b)
 
 
 SCM
-scm_copybig (b, sign)
-     SCM b;
-     int sign;
+scm_copybig (SCM b, int sign)
 {
   scm_sizet i = SCM_NUMDIGS (b);
   SCM ans = scm_mkbig (i, sign);
@@ -938,8 +1043,7 @@ scm_copybig (b, sign)
 
 
 SCM
-scm_long2big (n)
-     long n;
+scm_long2big (long n)
 {
   scm_sizet i = 0;
   SCM_BIGDIG *digits;
@@ -955,11 +1059,10 @@ scm_long2big (n)
   return ans;
 }
 
-#ifdef LONGLONGS
+#ifdef HAVE_LONG_LONGS
 
 SCM
-scm_long_long2big (n)
-     long_long n;
+scm_long_long2big (long_long n)
 {
   scm_sizet i;
   SCM_BIGDIG *digits;
@@ -998,8 +1101,7 @@ scm_long_long2big (n)
 
 
 SCM
-scm_2ulong2big (np)
-     unsigned long *np;
+scm_2ulong2big (unsigned long *np)
 {
   unsigned long n;
   scm_sizet i;
@@ -1027,8 +1129,7 @@ scm_2ulong2big (np)
 
 
 SCM
-scm_ulong2big (n)
-     unsigned long n;
+scm_ulong2big (unsigned long n)
 {
   scm_sizet i = 0;
   SCM_BIGDIG *digits;
@@ -1045,9 +1146,7 @@ scm_ulong2big (n)
 
 
 int
-scm_bigcomp (x, y)
-     SCM x;
-     SCM y;
+scm_bigcomp (SCM x, SCM y)
 {
   int xsign = SCM_BIGSIGN (x);
   int ysign = SCM_BIGSIGN (y);
@@ -1088,8 +1187,7 @@ scm_bigcomp (x, y)
 
 
 long
-scm_pseudolong (x)
-     long x;
+scm_pseudolong (long x)
 {
   union
   {
@@ -1113,9 +1211,7 @@ scm_pseudolong (x)
 
 
 void
-scm_longdigs (x, digs)
-     long x;
-     SCM_BIGDIG digs[];
+scm_longdigs (long x, SCM_BIGDIG digs[])
 {
   scm_sizet i = 0;
   if (x < 0)
@@ -1131,12 +1227,7 @@ scm_longdigs (x, digs)
 
 
 SCM
-scm_addbig (x, nx, xsgn, bigy, sgny)
-     SCM_BIGDIG *x;
-     scm_sizet nx;
-     int xsgn;
-     SCM bigy;
-     int sgny;
+scm_addbig (SCM_BIGDIG *x, scm_sizet nx, int xsgn, SCM bigy, int sgny)
 {
   /* Assumes nx <= SCM_NUMDIGS(bigy) */
   /* Assumes xsgn and sgny scm_equal either 0 or 0x0100 */
@@ -1221,12 +1312,7 @@ scm_addbig (x, nx, xsgn, bigy, sgny)
 
 
 SCM
-scm_mulbig (x, nx, y, ny, sgn)
-     SCM_BIGDIG *x;
-     scm_sizet nx;
-     SCM_BIGDIG *y;
-     scm_sizet ny;
-     int sgn;
+scm_mulbig (SCM_BIGDIG *x, scm_sizet nx, SCM_BIGDIG *y, scm_sizet ny, int sgn)
 {
   scm_sizet i = 0, j = nx + ny;
   unsigned long n = 0;
@@ -1282,11 +1368,7 @@ scm_divbigdig (SCM_BIGDIG * ds,
 
 
 SCM
-scm_divbigint (x, z, sgn, mode)
-     SCM x;
-     long z;
-     int sgn;
-     int mode;
+scm_divbigint (SCM x, long z, int sgn, int mode)
 {
   if (z < 0)
     z = -z;
@@ -1319,13 +1401,7 @@ scm_divbigint (x, z, sgn, mode)
 
 
 SCM
-scm_divbigbig (x, nx, y, ny, sgn, modes)
-     SCM_BIGDIG *x;
-     scm_sizet nx;
-     SCM_BIGDIG *y;
-     scm_sizet ny;
-     int sgn;
-     int modes;
+scm_divbigbig (SCM_BIGDIG *x, scm_sizet nx, SCM_BIGDIG *y, scm_sizet ny, int sgn, int modes)
 {
   /* modes description
      0  remainder
@@ -1534,12 +1610,8 @@ static const double fx[] =
 
 
 
-static scm_sizet idbl2str SCM_P ((double f, char *a));
-
 static scm_sizet
-idbl2str (f, a)
-     double f;
-     char *a;
+idbl2str (double f, char *a)
 {
   int efmt, dpt, d, i, wp = scm_dblprec;
   scm_sizet ch = 0;
@@ -1678,12 +1750,8 @@ idbl2str (f, a)
 }
 
 
-static scm_sizet iflo2str SCM_P ((SCM flt, char *str));
-
 static scm_sizet
-iflo2str (flt, str)
-     SCM flt;
-     char *str;
+iflo2str (SCM flt, char *str)
 {
   scm_sizet i;
 #ifdef SCM_SINGLES
@@ -1703,34 +1771,33 @@ iflo2str (flt, str)
 }
 #endif /* SCM_FLOATS */
 
-
+/* convert a long to a string (unterminated).  returns the number of
+   characters in the result. 
+   rad is output base
+   p is destination: worst case (base 2) is SCM_INTBUFLEN  */
 scm_sizet
-scm_iint2str (num, rad, p)
-     long num;
-     int rad;
-     char *p;
+scm_iint2str (long num, int rad, char *p)
 {
-  scm_sizet j;
-  register int i = 1, d;
-  register long n = num;
-  if (n < 0)
-    {
-      n = -n;
-      i++;
-    }
+  scm_sizet j = 1;
+  scm_sizet i;
+  unsigned long n = (num < 0) ? -num : num;
+
   for (n /= rad; n > 0; n /= rad)
-    i++;
-  j = i;
-  n = num;
-  if (n < 0)
+    j++;
+
+  i = j;
+  if (num < 0)
     {
-      n = -n;
       *p++ = '-';
-      i--;
+      j++;
+      n = -num;
     }
+  else
+    n = num;
   while (i--)
     {
-      d = n % rad;
+      int d = n % rad;
+
       n /= rad;
       p[i] = d + ((d < 10) ? '0' : 'a' - 10);
     }
@@ -1740,12 +1807,8 @@ scm_iint2str (num, rad, p)
 
 #ifdef SCM_BIGDIG
 
-static SCM big2str SCM_P ((SCM b, register unsigned int radix));
-
 static SCM
-big2str (b, radix)
-     SCM b;
-     register unsigned int radix;
+big2str (SCM b, unsigned int radix)
 {
   SCM t = scm_copybig (b, 0);  /* sign of temp doesn't matter */
   register SCM_BIGDIG *ds = SCM_BDIGITS (t);
@@ -1793,17 +1856,13 @@ big2str (b, radix)
 #endif
 
 
-SCM_PROC (s_number_to_string, "number->string", 1, 1, 0, scm_number_to_string);
-
-SCM
-scm_number_to_string (x, radix)
-     SCM x;
-     SCM radix;
+GUILE_PROC (scm_number_to_string, "number->string", 1, 1, 0,
+            (SCM x, SCM radix),
+"")
+#define FUNC_NAME s_scm_number_to_string
 {
-  if (SCM_UNBNDP (radix))
-    radix = SCM_MAKINUM (10L);
-  else
-    SCM_ASSERT (SCM_INUMP (radix), radix, SCM_ARG2, s_number_to_string);
+  int base;
+  SCM_VALIDATE_INT_MIN_DEF_COPY(2,radix,2,10,base);
 #ifdef SCM_FLOATS
   if (SCM_NINUMP (x))
     {
@@ -1811,16 +1870,16 @@ scm_number_to_string (x, radix)
 #ifdef SCM_BIGDIG
       SCM_ASRTGO (SCM_NIMP (x), badx);
       if (SCM_BIGP (x))
-       return big2str (x, (unsigned int) SCM_INUM (radix));
+       return big2str (x, (unsigned int) base);
 #ifndef SCM_RECKLESS
-      if (!(SCM_INEXP (x)))
+      if (!SCM_INEXP (x))
        {
        badx:
-         scm_wta (x, (char *) SCM_ARG1, s_number_to_string);
+         scm_wta (x, (char *) SCM_ARG1, FUNC_NAME);
        }
 #endif
 #else
-      SCM_ASSERT (SCM_NIMP (x) && SCM_INEXP (x),
+      SCM_ASSERT (SCM_INEXP (x),
                  x, SCM_ARG1, s_number_to_string);
 #endif
       return scm_makfromstr (num_buf, iflo2str (x, num_buf), 0);
@@ -1829,9 +1888,9 @@ scm_number_to_string (x, radix)
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x),
+      SCM_ASSERT (SCM_BIGP (x),
                  x, SCM_ARG1, s_number_to_string);
-      return big2str (x, (unsigned int) SCM_INUM (radix));
+      return big2str (x, (unsigned int) base);
     }
 #else
   SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_number_to_string);
@@ -1841,21 +1900,19 @@ scm_number_to_string (x, radix)
     char num_buf[SCM_INTBUFLEN];
     return scm_makfromstr (num_buf,
                           scm_iint2str (SCM_INUM (x),
-                                        (int) SCM_INUM (radix),
+                                        base,
                                         num_buf),
                           0);
   }
 }
+#undef FUNC_NAME
 
 
 /* These print routines are stubbed here so that scm_repl.c doesn't need
    SCM_FLOATS or SCM_BIGDIGs conditionals */
 
 int
-scm_floprint (sexp, port, pstate)
-     SCM sexp;
-     SCM port;
-     scm_print_state *pstate;
+scm_floprint (SCM sexp, SCM port, scm_print_state *pstate)
 {
 #ifdef SCM_FLOATS
   char num_buf[SCM_FLOBUFLEN];
@@ -1869,10 +1926,7 @@ scm_floprint (sexp, port, pstate)
 
 
 int
-scm_bigprint (exp, port, pstate)
-     SCM exp;
-     SCM port;
-     scm_print_state *pstate;
+scm_bigprint (SCM exp, SCM port, scm_print_state *pstate)
 {
 #ifdef SCM_BIGDIG
   exp = big2str (exp, (unsigned int) 10);
@@ -1886,13 +1940,8 @@ scm_bigprint (exp, port, pstate)
 
 /*** STRINGS -> NUMBERS ***/
 
-static SCM scm_small_istr2int SCM_P ((char *str, long len, long radix));
-
 static SCM
-scm_small_istr2int (str, len, radix)
-     char *str;
-     long len;
-     long radix;
+scm_small_istr2int (char *str, long len, long radix)
 {
   register long n = 0, ln;
   register int c;
@@ -1956,10 +2005,7 @@ scm_small_istr2int (str, len, radix)
 
 
 SCM
-scm_istr2int (str, len, radix)
-     char *str;
-     long len;
-     long radix;
+scm_istr2int (char *str, long len, long radix)
 {
   scm_sizet j;
   register scm_sizet k, blen = 1;
@@ -2053,10 +2099,7 @@ scm_istr2int (str, len, radix)
 #ifdef SCM_FLOATS
 
 SCM
-scm_istr2flo (str, len, radix)
-     char *str;
-     long len;
-     long radix;
+scm_istr2flo (char *str, long len, long radix)
 {
   register int c, i = 0;
   double lead_sgn;
@@ -2312,7 +2355,7 @@ scm_istr2flo (str, len, radix)
       {                                /* polar input for complex number */
        /* get a `real' for scm_angle */
        second = scm_istr2flo (&str[i], (long) (len - i), radix);
-       if (!(SCM_INEXP (second)))
+       if (!SCM_INEXP (second))
          return SCM_BOOL_F;    /* not `real' */
        if (SCM_CPLXP (second))
          return SCM_BOOL_F;    /* not `real' */
@@ -2331,7 +2374,7 @@ scm_istr2flo (str, len, radix)
     return scm_makdbl (res, lead_sgn);
   /* get a `ureal' for complex part */
   second = scm_istr2flo (&str[i], (long) ((len - i) - 1), radix);
-  if (!(SCM_INEXP (second)))
+  if (!SCM_INEXP (second))
     return SCM_BOOL_F;         /* not `ureal' */
   if (SCM_CPLXP (second))
     return SCM_BOOL_F;         /* not `ureal' */
@@ -2345,10 +2388,7 @@ scm_istr2flo (str, len, radix)
 
 
 SCM
-scm_istring2number (str, len, radix)
-     char *str;
-     long len;
-     long radix;
+scm_istring2number (char *str, long len, long radix)
 {
   int i = 0;
   char ex = 0;
@@ -2418,38 +2458,31 @@ scm_istring2number (str, len, radix)
 }
 
 
-SCM_PROC (s_string_to_number, "string->number", 1, 1, 0, scm_string_to_number);
-
-SCM
-scm_string_to_number (str, radix)
-     SCM str;
-     SCM radix;
+GUILE_PROC (scm_string_to_number, "string->number", 1, 1, 0,
+            (SCM str, SCM radix),
+"")
+#define FUNC_NAME s_scm_string_to_number
 {
   SCM answer;
-  if (SCM_UNBNDP (radix))
-    radix = SCM_MAKINUM (10L);
-  else
-    SCM_ASSERT (SCM_INUMP (radix), radix, SCM_ARG2, s_string_to_number);
-  SCM_ASSERT (SCM_NIMP (str) && SCM_ROSTRINGP (str),
-             str, SCM_ARG1, s_string_to_number);
+  int base;
+  SCM_VALIDATE_ROSTRING(1,str);
+  SCM_VALIDATE_INT_MIN_DEF_COPY(2,radix,2,10,base);
   answer = scm_istring2number (SCM_ROCHARS (str),
                               SCM_ROLENGTH (str),
-                              SCM_INUM (radix));
+                               base);
   return scm_return_first (answer, str);
 }
+#undef FUNC_NAME
 /*** END strs->nums ***/
 
 #ifdef SCM_FLOATS
 
 SCM
-scm_makdbl (x, y)
-     double x;
-     double y;
+scm_makdbl (double x, double y)
 {
   SCM z;
   if ((y == 0.0) && (x == 0.0))
     return scm_flo0;
-  SCM_NEWCELL (z);
   SCM_DEFER_INTS;
   if (y == 0.0)
     {
@@ -2459,19 +2492,17 @@ scm_makdbl (x, y)
       if ((-FLTMAX < x) && (x < FLTMAX) && (fx == x))
 #endif
        {
-         SCM_SETCAR (z, scm_tc_flo);
+          SCM_NEWSMOB(z,scm_tc_flo,NULL);
          SCM_FLO (z) = x;
          SCM_ALLOW_INTS;
          return z;
        }
 #endif /* def SCM_SINGLES */
-      SCM_SETCDR (z, (SCM) scm_must_malloc (1L * sizeof (double), "real"));
-      SCM_SETCAR (z, scm_tc_dblr);
+      SCM_NEWSMOB(z,scm_tc_dblr,scm_must_malloc (1L * sizeof (double), "real"));
     }
   else
     {
-      SCM_SETCDR (z, (SCM) scm_must_malloc (2L * sizeof (double), "complex"));
-      SCM_SETCAR (z, scm_tc_dblc);
+      SCM_NEWSMOB(z,scm_tc_dblc,scm_must_malloc (2L * sizeof (double), "comkplex"));
       SCM_IMAG (z) = y;
     }
   SCM_REAL (z) = x;
@@ -2483,9 +2514,7 @@ scm_makdbl (x, y)
 
 
 SCM
-scm_bigequal (x, y)
-     SCM x;
-     SCM y;
+scm_bigequal (SCM x, SCM y)
 {
 #ifdef SCM_BIGDIG
   if (0 == scm_bigcomp (x, y))
@@ -2497,9 +2526,7 @@ scm_bigequal (x, y)
 
 
 SCM
-scm_floequal (x, y)
-     SCM x;
-     SCM y;
+scm_floequal (SCM x, SCM y)
 {
 #ifdef SCM_FLOATS
   if (SCM_REALPART (x) != SCM_REALPART (y))
@@ -2513,36 +2540,38 @@ scm_floequal (x, y)
 
 
 
-SCM_PROC (s_number_p, "number?", 1, 0, 0, scm_number_p);
-SCM_PROC (s_complex_p, "complex?", 1, 0, 0, scm_number_p);
+SCM_REGISTER_PROC (s_number_p, "number?", 1, 0, 0, scm_number_p);
 
-SCM
-scm_number_p (x)
-     SCM x;
+GUILE_PROC (scm_number_p, "complex?", 1, 0, 0, 
+            (SCM x),
+"")
+#define FUNC_NAME s_scm_number_p
 {
   if (SCM_INUMP (x))
     return SCM_BOOL_T;
 #ifdef SCM_FLOATS
-  if (SCM_NIMP (x) && SCM_NUMP (x))
+  if (SCM_NUMP (x))
     return SCM_BOOL_T;
 #else
 #ifdef SCM_BIGDIG
-  if (SCM_NIMP (x) && SCM_NUMP (x))
+  if (SCM_NUMP (x))
     return SCM_BOOL_T;
 #endif
 #endif
   return SCM_BOOL_F;
 }
+#undef FUNC_NAME
 
 
 
 #ifdef SCM_FLOATS
-SCM_PROC (s_real_p, "real?", 1, 0, 0, scm_real_p);
-SCM_PROC (s_rational_p, "rational?", 1, 0, 0, scm_real_p);
+SCM_REGISTER_PROC (s_real_p, "real?", 1, 0, 0, scm_real_p);
 
-SCM
-scm_real_p (x)
-     SCM x;
+
+GUILE_PROC (scm_real_p, "rational?", 1, 0, 0, 
+            (SCM x),
+"")
+#define FUNC_NAME s_scm_real_p
 {
   if (SCM_INUMP (x))
     return SCM_BOOL_T;
@@ -2556,14 +2585,14 @@ scm_real_p (x)
 #endif
   return SCM_BOOL_F;
 }
+#undef FUNC_NAME
 
 
 
-SCM_PROC (s_int_p, "integer?", 1, 0, 0, scm_integer_p);
-
-SCM
-scm_integer_p (x)
-     SCM x;
+GUILE_PROC (scm_integer_p, "integer?", 1, 0, 0, 
+            (SCM x),
+"")
+#define FUNC_NAME s_scm_integer_p
 {
   double r;
   if (SCM_INUMP (x))
@@ -2583,53 +2612,50 @@ scm_integer_p (x)
     return SCM_BOOL_T;
   return SCM_BOOL_F;
 }
+#undef FUNC_NAME
 
 
 
 #endif /* SCM_FLOATS */
 
-SCM_PROC (s_inexact_p, "inexact?", 1, 0, 0, scm_inexact_p);
-
-SCM
-scm_inexact_p (x)
-     SCM x;
+GUILE_PROC (scm_inexact_p, "inexact?", 1, 0, 0, 
+            (SCM x),
+"")
+#define FUNC_NAME s_scm_inexact_p
 {
 #ifdef SCM_FLOATS
-  if (SCM_NIMP (x) && SCM_INEXP (x))
+  if (SCM_INEXP (x))
     return SCM_BOOL_T;
 #endif
   return SCM_BOOL_F;
 }
+#undef FUNC_NAME
 
 
 
 
-SCM_PROC1 (s_eq_p, "=", scm_tc7_rpsubr, scm_num_eq_p);
+SCM_GPROC1 (s_eq_p, "=", scm_tc7_rpsubr, scm_num_eq_p, g_eq_p);
 
 SCM
-scm_num_eq_p (x, y)
-     SCM x;
-     SCM y;
+scm_num_eq_p (SCM x, SCM y)
 {
 #ifdef SCM_FLOATS
   SCM t;
   if (SCM_NINUMP (x))
     {
 #ifdef SCM_BIGDIG
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (x)))
+      if (!SCM_NIMP (x))
        {
        badx:
-         scm_wta (x, (char *) SCM_ARG1, s_eq_p);
+         SCM_WTA_DISPATCH_2 (g_eq_p, x, y, SCM_ARG1, s_eq_p);
        }
-#endif
       if (SCM_BIGP (x))
        {
          if (SCM_INUMP (y))
            return SCM_BOOL_F;
          SCM_ASRTGO (SCM_NIMP (y), bady);
          if (SCM_BIGP (y))
-           return (0 == scm_bigcomp (x, y)) ? SCM_BOOL_T : SCM_BOOL_F;
+           return SCM_BOOL(0 == scm_bigcomp (x, y));
          SCM_ASRTGO (SCM_INEXP (y), bady);
        bigreal:
          return ((SCM_REALP (y) && (scm_big2dbl (x) == SCM_REALPART (y)))
@@ -2638,7 +2664,8 @@ scm_num_eq_p (x, y)
        }
       SCM_ASRTGO (SCM_INEXP (x), badx);
 #else
-      SCM_ASSERT (SCM_NIMP (x) && SCM_INEXP (x), x, SCM_ARG1, s_eq_p);
+      SCM_GASSERT2 (SCM_INEXP (x),
+                   g_eq_p, x, y, SCM_ARG1, s_eq_p);
 #endif
       if (SCM_INUMP (y))
        {
@@ -2658,7 +2685,7 @@ scm_num_eq_p (x, y)
        }
       SCM_ASRTGO (SCM_INEXP (y), bady);
 #else
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_INEXP (y), bady);
+      SCM_ASRTGO (SCM_INEXP (y), bady);
 #endif
       if (SCM_REALPART (x) != SCM_REALPART (y))
        return SCM_BOOL_F;
@@ -2666,7 +2693,7 @@ scm_num_eq_p (x, y)
        return ((SCM_CPLXP (y) && (SCM_IMAG (x) == SCM_IMAG (y)))
                ? SCM_BOOL_T
                : SCM_BOOL_F);
-      return SCM_CPLXP (y) ? SCM_BOOL_F : SCM_BOOL_T;
+      return SCM_NEGATE_BOOL(SCM_CPLXP (y));
     }
   if (SCM_NINUMP (y))
     {
@@ -2674,21 +2701,17 @@ scm_num_eq_p (x, y)
       SCM_ASRTGO (SCM_NIMP (y), bady);
       if (SCM_BIGP (y))
        return SCM_BOOL_F;
-#ifndef SCM_RECKLESS
-      if (!(SCM_INEXP (y)))
+      if (!SCM_INEXP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_eq_p);
+         SCM_WTA_DISPATCH_2 (g_eq_p, x, y, SCM_ARGn, s_eq_p);
        }
-#endif
 #else
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_INEXP (y)))
+      if (!SCM_INEXP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_eq_p);
+         SCM_WTA_DISPATCH_2 (g_eq_p, x, y, SCM_ARGn, s_eq_p);
        }
-#endif
 #endif
     realint:
       return ((SCM_REALP (y) && (((double) SCM_INUM (x)) == SCM_REALPART (y)))
@@ -2699,58 +2722,53 @@ scm_num_eq_p (x, y)
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_eq_p);
+      SCM_GASSERT2 (SCM_BIGP (x),
+                   g_eq_p, x, y, SCM_ARG1, s_eq_p);
       if (SCM_INUMP (y))
        return SCM_BOOL_F;
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_BIGP (y), bady);
-      return (0 == scm_bigcomp (x, y)) ? SCM_BOOL_T : SCM_BOOL_F;
+      SCM_ASRTGO (SCM_BIGP (y), bady);
+      return SCM_BOOL(0 == scm_bigcomp (x, y));
     }
   if (SCM_NINUMP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_BIGP (y)))
+      if (!SCM_BIGP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_eq_p);
+         SCM_WTA_DISPATCH_2 (g_eq_p, x, y, SCM_ARGn, s_eq_p);
        }
-#endif
       return SCM_BOOL_F;
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_eq_p);
-  SCM_ASSERT (SCM_INUMP (y), y, SCM_ARG2, s_eq_p);
+  SCM_GASSERT2 (SCM_INUMP (x), g_eq_p, x, y, SCM_ARG1, s_eq_p);
+  SCM_GASSERT2 (SCM_INUMP (y), g_eq_p, x, y, SCM_ARGn, s_eq_p);
 #endif
 #endif
-  return ((long) x == (long) y) ? SCM_BOOL_T : SCM_BOOL_F;
+  return SCM_BOOL((long) x == (long) y);
 }
 
 
 
-SCM_PROC1 (s_less_p, "<", scm_tc7_rpsubr, scm_less_p);
+SCM_GPROC1 (s_less_p, "<", scm_tc7_rpsubr, scm_less_p, g_less_p);
 
 SCM
-scm_less_p (x, y)
-     SCM x;
-     SCM y;
+scm_less_p (SCM x, SCM y)
 {
 #ifdef SCM_FLOATS
   if (SCM_NINUMP (x))
     {
 #ifdef SCM_BIGDIG
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (x)))
+      if (!SCM_NIMP (x))
        {
        badx:
-         scm_wta (x, (char *) SCM_ARG1, s_less_p);
+         SCM_WTA_DISPATCH_2 (g_less_p, x, y, SCM_ARG1, s_less_p);
        }
-#endif
       if (SCM_BIGP (x))
        {
          if (SCM_INUMP (y))
-           return SCM_BIGSIGN (x) ? SCM_BOOL_T : SCM_BOOL_F;
+           return SCM_BOOL(SCM_BIGSIGN (x));
          SCM_ASRTGO (SCM_NIMP (y), bady);
          if (SCM_BIGP (y))
-           return (1 == scm_bigcomp (x, y)) ? SCM_BOOL_T : SCM_BOOL_F;
+           return SCM_BOOL(1 == scm_bigcomp (x, y));
          SCM_ASRTGO (SCM_REALP (y), bady);
          return ((scm_big2dbl (x) < SCM_REALPART (y))
                  ? SCM_BOOL_T
@@ -2758,7 +2776,8 @@ scm_less_p (x, y)
        }
       SCM_ASRTGO (SCM_REALP (x), badx);
 #else
-      SCM_ASSERT (SCM_NIMP (x) && SCM_REALP (x), x, SCM_ARG1, s_less_p);
+      SCM_GASSERT2 (SCM_REALP (x),
+                   g_less_p, x, y, SCM_ARG1, s_less_p);
 #endif
       if (SCM_INUMP (y))
        return ((SCM_REALPART (x) < ((double) SCM_INUM (y)))
@@ -2767,34 +2786,30 @@ scm_less_p (x, y)
 #ifdef SCM_BIGDIG
       SCM_ASRTGO (SCM_NIMP (y), bady);
       if (SCM_BIGP (y))
-       return (SCM_REALPART (x) < scm_big2dbl (y)) ? SCM_BOOL_T : SCM_BOOL_F;
+       return SCM_BOOL(SCM_REALPART (x) < scm_big2dbl (y));
       SCM_ASRTGO (SCM_REALP (y), bady);
 #else
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_REALP (y), bady);
+      SCM_ASRTGO (SCM_REALP (y), bady);
 #endif
-      return (SCM_REALPART (x) < SCM_REALPART (y)) ? SCM_BOOL_T : SCM_BOOL_F;
+      return SCM_BOOL(SCM_REALPART (x) < SCM_REALPART (y));
     }
   if (SCM_NINUMP (y))
     {
 #ifdef SCM_BIGDIG
       SCM_ASRTGO (SCM_NIMP (y), bady);
       if (SCM_BIGP (y))
-       return SCM_BIGSIGN (y) ? SCM_BOOL_F : SCM_BOOL_T;
-#ifndef SCM_RECKLESS
-      if (!(SCM_REALP (y)))
+       return SCM_NEGATE_BOOL(SCM_BIGSIGN (y));
+      if (!SCM_REALP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_less_p);
+         SCM_WTA_DISPATCH_2 (g_less_p, x, y, SCM_ARGn, s_less_p);
        }
-#endif
 #else
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_REALP (y)))
+      if (!SCM_REALP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_less_p);
+         SCM_WTA_DISPATCH_2 (g_less_p, x, y, SCM_ARGn, s_less_p);
        }
-#endif
 #endif
       return ((((double) SCM_INUM (x)) < SCM_REALPART (y))
              ? SCM_BOOL_T
@@ -2804,73 +2819,68 @@ scm_less_p (x, y)
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_less_p);
+      SCM_GASSERT2 (SCM_BIGP (x),
+                   g_less_p, x, y, SCM_ARG1, s_less_p);
       if (SCM_INUMP (y))
-       return SCM_BIGSIGN (x) ? SCM_BOOL_T : SCM_BOOL_F;
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_BIGP (y), bady);
-      return (1 == scm_bigcomp (x, y)) ? SCM_BOOL_T : SCM_BOOL_F;
+       return SCM_BOOL(SCM_BIGSIGN (x));
+      SCM_ASRTGO (SCM_BIGP (y), bady);
+      return SCM_BOOL(1 == scm_bigcomp (x, y));
     }
   if (SCM_NINUMP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_BIGP (y)))
+      if (!SCM_BIGP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_less_p);
+         SCM_WTA_DISPATCH_2 (g_less_p, x, y, SCM_ARGn, s_less_p);
        }
-#endif
-      return SCM_BIGSIGN (y) ? SCM_BOOL_F : SCM_BOOL_T;
+      return SCM_NEGATE_BOOL(SCM_BIGSIGN (y));
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_less_p);
-  SCM_ASSERT (SCM_INUMP (y), y, SCM_ARG2, s_less_p);
+  SCM_GASSERT2 (SCM_INUMP (x), g_less_p, x, y, SCM_ARG1, s_less_p);
+  SCM_GASSERT2 (SCM_INUMP (y), g_less_p, x, y, SCM_ARGn, s_less_p);
 #endif
 #endif
-  return ((long) x < (long) y) ? SCM_BOOL_T : SCM_BOOL_F;
+  return SCM_BOOL((long) x < (long) y);
 }
 
 
-SCM_PROC1 (s_gr_p, ">", scm_tc7_rpsubr, scm_gr_p);
-
-SCM
-scm_gr_p (x, y)
-     SCM x;
-     SCM y;
+GUILE_PROC1 (scm_gr_p, ">", scm_tc7_rpsubr,
+             (SCM x, SCM y),
+"")
+#define FUNC_NAME s_scm_gr_p
 {
   return scm_less_p (y, x);
 }
+#undef FUNC_NAME
 
 
 
-SCM_PROC1 (s_leq_p, "<=", scm_tc7_rpsubr, scm_leq_p);
-
-SCM
-scm_leq_p (x, y)
-     SCM x;
-     SCM y;
+GUILE_PROC1 (scm_leq_p, "<=", scm_tc7_rpsubr,
+             (SCM x, SCM y),
+"")
+#define FUNC_NAME s_scm_leq_p
 {
   return SCM_BOOL_NOT (scm_less_p (y, x));
 }
+#undef FUNC_NAME
 
 
 
-SCM_PROC1 (s_geq_p, ">=", scm_tc7_rpsubr, scm_geq_p);
-
-SCM
-scm_geq_p (x, y)
-     SCM x;
-     SCM y;
+GUILE_PROC1 (scm_geq_p, ">=", scm_tc7_rpsubr,
+             (SCM x, SCM y),
+"")
+#define FUNC_NAME s_scm_geq_p
 {
   return SCM_BOOL_NOT (scm_less_p (x, y));
 }
+#undef FUNC_NAME
 
 
 
-SCM_PROC (s_zero_p, "zero?", 1, 0, 0, scm_zero_p);
+SCM_GPROC (s_zero_p, "zero?", 1, 0, 0, scm_zero_p, g_zero_p);
 
 SCM
-scm_zero_p (z)
-     SCM z;
+scm_zero_p (SCM z)
 {
 #ifdef SCM_FLOATS
   if (SCM_NINUMP (z))
@@ -2879,39 +2889,38 @@ scm_zero_p (z)
       SCM_ASRTGO (SCM_NIMP (z), badz);
       if (SCM_BIGP (z))
        return SCM_BOOL_F;
-#ifndef SCM_RECKLESS
-      if (!(SCM_INEXP (z)))
+      if (!SCM_INEXP (z))
        {
        badz:
-         scm_wta (z, (char *) SCM_ARG1, s_zero_p);
+         SCM_WTA_DISPATCH_1 (g_zero_p, z, SCM_ARG1, s_zero_p);
        }
-#endif
 #else
-      SCM_ASSERT (SCM_NIMP (z) && SCM_INEXP (z), z, SCM_ARG1, s_zero_p);
+      SCM_GASSERT1 (SCM_INEXP (z),
+                   g_zero_p, z, SCM_ARG1, s_zero_p);
 #endif
-      return (z == scm_flo0) ? SCM_BOOL_T : SCM_BOOL_F;
+      return SCM_BOOL(z == scm_flo0);
     }
 #else
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (z))
     {
-      SCM_ASSERT (SCM_NIMP (z) && SCM_BIGP (z), z, SCM_ARG1, s_zero_p);
+      SCM_GASSERT1 (SCM_BIGP (z),
+                   g_zero_p, z, SCM_ARG1, s_zero_p);
       return SCM_BOOL_F;
     }
 #else
-  SCM_ASSERT (SCM_INUMP (z), z, SCM_ARG1, s_zero_p);
+  SCM_GASSERT1 (SCM_INUMP (z), g_zero_p, z, SCM_ARG1, s_zero_p);
 #endif
 #endif
-  return (z == SCM_INUM0) ? SCM_BOOL_T : SCM_BOOL_F;
+  return SCM_BOOL(z == SCM_INUM0);
 }
 
 
 
-SCM_PROC (s_positive_p, "positive?", 1, 0, 0, scm_positive_p);
+SCM_GPROC (s_positive_p, "positive?", 1, 0, 0, scm_positive_p, g_positive_p);
 
 SCM
-scm_positive_p (x)
-     SCM x;
+scm_positive_p (SCM x)
 {
 #ifdef SCM_FLOATS
   if (SCM_NINUMP (x))
@@ -2919,40 +2928,39 @@ scm_positive_p (x)
 #ifdef SCM_BIGDIG
       SCM_ASRTGO (SCM_NIMP (x), badx);
       if (SCM_BIGP (x))
-       return SCM_TYP16 (x) == scm_tc16_bigpos ? SCM_BOOL_T : SCM_BOOL_F;
-#ifndef SCM_RECKLESS
-      if (!(SCM_REALP (x)))
+       return SCM_BOOL(SCM_TYP16 (x) == scm_tc16_bigpos);
+      if (!SCM_REALP (x))
        {
        badx:
-         scm_wta (x, (char *) SCM_ARG1, s_positive_p);
+         SCM_WTA_DISPATCH_1 (g_positive_p, x, SCM_ARG1, s_positive_p);
        }
-#endif
 #else
-      SCM_ASSERT (SCM_NIMP (x) && SCM_REALP (x), x, SCM_ARG1, s_positive_p);
+      SCM_GASSERT1 (SCM_REALP (x),
+                   g_positive_p, x, SCM_ARG1, s_positive_p);
 #endif
-      return (SCM_REALPART (x) > 0.0) ? SCM_BOOL_T : SCM_BOOL_F;
+      return SCM_BOOL(SCM_REALPART (x) > 0.0);
     }
 #else
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_positive_p);
-      return SCM_TYP16 (x) == scm_tc16_bigpos ? SCM_BOOL_T : SCM_BOOL_F;
+      SCM_GASSERT1 (SCM_BIGP (x),
+                   g_positive_p, x, SCM_ARG1, s_positive_p);
+      return SCM_BOOL(SCM_TYP16 (x) == scm_tc16_bigpos);
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_positive_p);
+  SCM_GASSERT1 (SCM_INUMP (x), g_positive_p, x, SCM_ARG1, s_positive_p);
 #endif
 #endif
-  return (x > SCM_INUM0) ? SCM_BOOL_T : SCM_BOOL_F;
+  return SCM_BOOL(x > SCM_INUM0);
 }
 
 
 
-SCM_PROC (s_negative_p, "negative?", 1, 0, 0, scm_negative_p);
+SCM_GPROC (s_negative_p, "negative?", 1, 0, 0, scm_negative_p, g_negative_p);
 
 SCM
-scm_negative_p (x)
-     SCM x;
+scm_negative_p (SCM x)
 {
 #ifdef SCM_FLOATS
   if (SCM_NINUMP (x))
@@ -2960,60 +2968,58 @@ scm_negative_p (x)
 #ifdef SCM_BIGDIG
       SCM_ASRTGO (SCM_NIMP (x), badx);
       if (SCM_BIGP (x))
-       return SCM_TYP16 (x) == scm_tc16_bigpos ? SCM_BOOL_F : SCM_BOOL_T;
-#ifndef SCM_RECKLESS
+       return SCM_NEGATE_BOOL(SCM_TYP16 (x) == scm_tc16_bigpos);
       if (!(SCM_REALP (x)))
        {
        badx:
-         scm_wta (x, (char *) SCM_ARG1, s_negative_p);
+         SCM_WTA_DISPATCH_1 (g_negative_p, x, SCM_ARG1, s_negative_p);
        }
-#endif
 #else
-      SCM_ASSERT (SCM_NIMP (x) && SCM_REALP (x), x, SCM_ARG1, s_negative_p);
+      SCM_GASSERT1 (SCM_REALP (x),
+                   g_negative_p, x, SCM_ARG1, s_negative_p);
 #endif
-      return (SCM_REALPART (x) < 0.0) ? SCM_BOOL_T : SCM_BOOL_F;
+      return SCM_BOOL(SCM_REALPART (x) < 0.0);
     }
 #else
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_negative_p);
-      return (SCM_TYP16 (x) == scm_tc16_bigneg) ? SCM_BOOL_T : SCM_BOOL_F;
+      SCM_GASSERT1 (SCM_BIGP (x),
+                   g_negative_p, x, SCM_ARG1, s_negative_p);
+      return SCM_BOOL(SCM_TYP16 (x) == scm_tc16_bigneg);
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_negative_p);
+  SCM_GASSERT1 (SCM_INUMP (x), g_negative_p, x, SCM_ARG1, s_negative_p);
 #endif
 #endif
-  return (x < SCM_INUM0) ? SCM_BOOL_T : SCM_BOOL_F;
+  return SCM_BOOL(x < SCM_INUM0);
 }
 
 
-SCM_PROC1 (s_max, "max", scm_tc7_asubr, scm_max);
+SCM_GPROC1 (s_max, "max", scm_tc7_asubr, scm_max, g_max);
 
 SCM
-scm_max (x, y)
-     SCM x;
-     SCM y;
+scm_max (SCM x, SCM y)
 {
 #ifdef SCM_FLOATS
   double z;
 #endif
   if (SCM_UNBNDP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NUMBERP (x)))
-       {
-       badx:
-         scm_wta (x, (char *) SCM_ARG1, s_max);
-       }
-#endif
+      SCM_GASSERT0 (!SCM_UNBNDP (x),
+                   g_max, scm_makfrom0str (s_max), SCM_WNA, 0);
+      SCM_GASSERT1 (SCM_NUMBERP (x), g_max, x, SCM_ARG1, s_max);
       return x;
     }
 #ifdef SCM_FLOATS
   if (SCM_NINUMP (x))
     {
 #ifdef SCM_BIGDIG
-      SCM_ASRTGO (SCM_NIMP (x), badx);
+      if (!SCM_NIMP (x))
+       {
+       badx2:
+         SCM_WTA_DISPATCH_2 (g_max, x, y, SCM_ARG1, s_max);
+       }
       if (SCM_BIGP (x))
        {
          if (SCM_INUMP (y))
@@ -3025,9 +3031,10 @@ scm_max (x, y)
          z = scm_big2dbl (x);
          return (z < SCM_REALPART (y)) ? y : scm_makdbl (z, 0.0);
        }
-      SCM_ASRTGO (SCM_REALP (x), badx);
+      SCM_ASRTGO (SCM_REALP (x), badx2);
 #else
-      SCM_ASSERT (SCM_NIMP (x) && SCM_REALP (x), x, SCM_ARG1, s_max);
+      SCM_GASSERT2 (SCM_REALP (x),
+                   g_max, x, y, SCM_ARG1, s_max);
 #endif
       if (SCM_INUMP (y))
        return ((SCM_REALPART (x) < (z = SCM_INUM (y)))
@@ -3041,7 +3048,7 @@ scm_max (x, y)
                : x);
       SCM_ASRTGO (SCM_REALP (y), bady);
 #else
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_REALP (y), bady);
+      SCM_ASRTGO (SCM_REALP (y), bady);
 #endif
       return (SCM_REALPART (x) < SCM_REALPART (y)) ? y : x;
     }
@@ -3051,21 +3058,17 @@ scm_max (x, y)
       SCM_ASRTGO (SCM_NIMP (y), bady);
       if (SCM_BIGP (y))
        return SCM_BIGSIGN (y) ? x : y;
-#ifndef SCM_RECKLESS
       if (!(SCM_REALP (y)))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_max);
+         SCM_WTA_DISPATCH_2 (g_max, x, y, SCM_ARGn, s_max);
        }
-#endif
 #else
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_REALP (y)))
+      if (!SCM_REALP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_max);
+         SCM_WTA_DISPATCH_2 (g_max, x, y, SCM_ARGn, s_max);
        }
-#endif
 #endif
       return (((z = SCM_INUM (x)) < SCM_REALPART (y))
              ? y
@@ -3075,26 +3078,25 @@ scm_max (x, y)
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_max);
+      SCM_GASSERT2 (SCM_BIGP (x),
+                   g_max, x, y, SCM_ARG1, s_max);
       if (SCM_INUMP (y))
        return SCM_BIGSIGN (x) ? y : x;
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_BIGP (y), bady);
+      SCM_ASRTGO (SCM_BIGP (y), bady);
       return (1 == scm_bigcomp (x, y)) ? y : x;
     }
   if (SCM_NINUMP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_BIGP (y)))
+      if (!SCM_BIGP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_max);
+         SCM_WTA_DISPATCH_2 (g_max, x, y, SCM_ARGn, s_max);
        }
-#endif
       return SCM_BIGSIGN (y) ? x : y;
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_max);
-  SCM_ASSERT (SCM_INUMP (y), y, SCM_ARG2, s_max);
+  SCM_GASSERT2 (SCM_INUMP (x), g_max, x, y, SCM_ARG1, s_max);
+  SCM_GASSERT2 (SCM_INUMP (y), g_max, x, y, SCM_ARGn, s_max);
 #endif
 #endif
   return ((long) x < (long) y) ? y : x;
@@ -3103,32 +3105,30 @@ scm_max (x, y)
 
 
 
-SCM_PROC1 (s_min, "min", scm_tc7_asubr, scm_min);
+SCM_GPROC1 (s_min, "min", scm_tc7_asubr, scm_min, g_min);
 
 SCM
-scm_min (x, y)
-     SCM x;
-     SCM y;
+scm_min (SCM x, SCM y)
 {
 #ifdef SCM_FLOATS
   double z;
 #endif
   if (SCM_UNBNDP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NUMBERP (x)))
-       {
-       badx:
-         scm_wta (x, (char *) SCM_ARG1, s_min);
-       }
-#endif
+      SCM_GASSERT0 (!SCM_UNBNDP (x),
+                   g_min, scm_makfrom0str (s_min), SCM_WNA, 0);
+      SCM_GASSERT1 (SCM_NUMBERP (x), g_min, x, SCM_ARG1, s_min);
       return x;
     }
 #ifdef SCM_FLOATS
   if (SCM_NINUMP (x))
     {
 #ifdef SCM_BIGDIG
-      SCM_ASRTGO (SCM_NIMP (x), badx);
+      if (!SCM_NIMP (x))
+       {
+       badx2:
+         SCM_WTA_DISPATCH_2 (g_min, x, y, SCM_ARG1, s_min);
+       }
       if (SCM_BIGP (x))
        {
          if (SCM_INUMP (y))
@@ -3140,9 +3140,10 @@ scm_min (x, y)
          z = scm_big2dbl (x);
          return (z > SCM_REALPART (y)) ? y : scm_makdbl (z, 0.0);
        }
-      SCM_ASRTGO (SCM_REALP (x), badx);
+      SCM_ASRTGO (SCM_REALP (x), badx2);
 #else
-      SCM_ASSERT (SCM_NIMP (x) && SCM_REALP (x), x, SCM_ARG1, s_min);
+      SCM_GASSERT2 (SCM_REALP (x),
+                   g_min, x, y, SCM_ARG1, s_min);
 #endif
       if (SCM_INUMP (y))
        return ((SCM_REALPART (x) > (z = SCM_INUM (y)))
@@ -3156,7 +3157,7 @@ scm_min (x, y)
                : x);
       SCM_ASRTGO (SCM_REALP (y), bady);
 #else
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_REALP (y), bady);
+      SCM_ASRTGO (SCM_REALP (y), bady);
 #endif
       return (SCM_REALPART (x) > SCM_REALPART (y)) ? y : x;
     }
@@ -3166,21 +3167,17 @@ scm_min (x, y)
       SCM_ASRTGO (SCM_NIMP (y), bady);
       if (SCM_BIGP (y))
        return SCM_BIGSIGN (y) ? y : x;
-#ifndef SCM_RECKLESS
       if (!(SCM_REALP (y)))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_min);
+         SCM_WTA_DISPATCH_2 (g_min, x, y, SCM_ARGn, s_min);
        }
-#endif
 #else
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_REALP (y)))
+      if (!SCM_REALP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_min);
+         SCM_WTA_DISPATCH_2 (g_min, x, y, SCM_ARGn, s_min);
        }
-#endif
 #endif
       return (((z = SCM_INUM (x)) > SCM_REALPART (y))
              ? y
@@ -3190,26 +3187,25 @@ scm_min (x, y)
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_min);
+      SCM_GASSERT2 (SCM_BIGP (x),
+                   g_min, x, y, SCM_ARG1, s_min);
       if (SCM_INUMP (y))
        return SCM_BIGSIGN (x) ? x : y;
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_BIGP (y), bady);
+      SCM_ASRTGO (SCM_BIGP (y), bady);
       return (-1 == scm_bigcomp (x, y)) ? y : x;
     }
   if (SCM_NINUMP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_BIGP (y)))
+      if (!SCM_BIGP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_min);
+         SCM_WTA_DISPATCH_2 (g_min, x, y, SCM_ARGn, s_min);
        }
-#endif
       return SCM_BIGSIGN (y) ? y : x;
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_min);
-  SCM_ASSERT (SCM_INUMP (y), y, SCM_ARG2, s_min);
+  SCM_GASSERT2 (SCM_INUMP (x), g_min, x, y, SCM_ARG1, s_min);
+  SCM_GASSERT2 (SCM_INUMP (y), g_min, x, y, SCM_ARGn, s_min);
 #endif
 #endif
   return ((long) x > (long) y) ? y : x;
@@ -3218,24 +3214,16 @@ scm_min (x, y)
 
 
 
-SCM_PROC1 (s_sum, "+", scm_tc7_asubr, scm_sum);
+SCM_GPROC1 (s_sum, "+", scm_tc7_asubr, scm_sum, g_sum);
 
 SCM
-scm_sum (x, y)
-     SCM x;
-     SCM y;
+scm_sum (SCM x, SCM y)
 {
   if (SCM_UNBNDP (y))
     {
       if (SCM_UNBNDP (x))
        return SCM_INUM0;
-#ifndef SCM_RECKLESS
-      if (!(SCM_NUMBERP (x)))
-       {
-       badx:
-         scm_wta (x, (char *) SCM_ARG1, s_sum);
-       }
-#endif
+      SCM_GASSERT1 (SCM_NUMBERP (x), g_sum, x, SCM_ARG1, s_sum);
       return x;
     }
 #ifdef SCM_FLOATS
@@ -3243,7 +3231,11 @@ scm_sum (x, y)
     {
       SCM t;
 #ifdef SCM_BIGDIG
-      SCM_ASRTGO (SCM_NIMP (x), badx);
+      if (!SCM_NIMP (x))
+       {
+       badx2:
+         SCM_WTA_DISPATCH_2 (g_sum, x, y, SCM_ARG1, s_sum);
+       }
       if (SCM_BIGP (x))
        {
          if (SCM_INUMP (y))
@@ -3271,9 +3263,9 @@ scm_sum (x, y)
          return scm_makdbl (scm_big2dbl (x) + SCM_REALPART (y),
                             SCM_CPLXP (y) ? SCM_IMAG (y) : 0.0);
        }
-      SCM_ASRTGO (SCM_INEXP (x), badx);
+      SCM_ASRTGO (SCM_INEXP (x), badx2);
 #else
-      SCM_ASRTGO (SCM_NIMP (x) && SCM_INEXP (x), badx);
+      SCM_ASRTGO (SCM_INEXP (x), badx2);
 #endif
       if (SCM_INUMP (y))
        {
@@ -3291,21 +3283,17 @@ scm_sum (x, y)
          y = t;
          goto bigreal;
        }
-#ifndef SCM_RECKLESS
-      else if (!(SCM_INEXP (y)))
+      else if (!SCM_INEXP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_sum);
+         SCM_WTA_DISPATCH_2 (g_sum, x, y, SCM_ARGn, s_sum);
        }
-#endif
 #else
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_INEXP (y)))
+      if (!SCM_INEXP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_sum);
+         SCM_WTA_DISPATCH_2 (g_sum, x, y, SCM_ARGn, s_sum);
        }
-#endif
 #endif
       {
        double i = 0.0;
@@ -3340,7 +3328,7 @@ scm_sum (x, y)
        }
       SCM_ASRTGO (SCM_INEXP (y), bady);
 #else
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_INEXP (y), bady);
+      SCM_ASRTGO (SCM_INEXP (y), bady);
 #endif
     intreal:
       return scm_makdbl (SCM_INUM (x) + SCM_REALPART (y),
@@ -3351,7 +3339,7 @@ scm_sum (x, y)
   if (SCM_NINUMP (x))
     {
       SCM t;
-      SCM_ASRTGO (SCM_NIMP (x) && SCM_BIGP (x), badx);
+      SCM_ASRTGO (SCM_BIGP (x), badx2);
       if (SCM_INUMP (y))
        {
          t = x;
@@ -3359,7 +3347,7 @@ scm_sum (x, y)
          y = t;
          goto intbig;
        }
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_BIGP (y), bady);
+      SCM_ASRTGO (SCM_BIGP (y), bady);
       if (SCM_NUMDIGS (x) > SCM_NUMDIGS (y))
        {
          t = x;
@@ -3371,13 +3359,11 @@ scm_sum (x, y)
     }
   if (SCM_NINUMP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_BIGP (y)))
+      if (!SCM_BIGP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_sum);
+         SCM_WTA_DISPATCH_2 (g_sum, x, y, SCM_ARGn, s_sum);
        }
-#endif
     intbig:
       {
 #ifndef SCM_DIGSTOOBIG
@@ -3391,8 +3377,8 @@ scm_sum (x, y)
       }
     }
 #else
-  SCM_ASRTGO (SCM_INUMP (x), badx);
-  SCM_ASSERT (SCM_INUMP (y), y, SCM_ARG2, s_sum);
+  SCM_ASRTGO (SCM_INUMP (x), badx2);
+  SCM_GASSERT2 (SCM_INUMP (y), g_sum, x, y, SCM_ARGn, s_sum);
 #endif
 #endif
   x = SCM_INUM (x) + SCM_INUM (y);
@@ -3413,23 +3399,29 @@ scm_sum (x, y)
 
 
 
-SCM_PROC1 (s_difference, "-", scm_tc7_asubr, scm_difference);
+SCM_GPROC1 (s_difference, "-", scm_tc7_asubr, scm_difference, g_difference);
 
 SCM
-scm_difference (x, y)
-     SCM x;
-     SCM y;
+scm_difference (SCM x, SCM y)
 {
 #ifdef SCM_FLOATS
   if (SCM_NINUMP (x))
     {
-#ifndef SCM_RECKLESS
       if (!(SCM_NIMP (x)))
        {
-       badx:
-         scm_wta (x, (char *) SCM_ARG1, s_difference);
+         if (SCM_UNBNDP (y))
+           {
+             SCM_GASSERT0 (!SCM_UNBNDP (x), g_difference,
+                           scm_makfrom0str (s_difference), SCM_WNA, 0);
+           badx:
+             SCM_WTA_DISPATCH_1 (g_difference, x, SCM_ARG1, s_difference);
+           }
+         else
+           {
+           badx2:
+             SCM_WTA_DISPATCH_2 (g_difference, x, y, SCM_ARG1, s_difference);
+           }
        }
-#endif
       if (SCM_UNBNDP (y))
        {
 #ifdef SCM_BIGDIG
@@ -3464,14 +3456,14 @@ scm_difference (x, y)
          return scm_makdbl (scm_big2dbl (x) - SCM_REALPART (y),
                             SCM_CPLXP (y) ? -SCM_IMAG (y) : 0.0);
        }
-      SCM_ASRTGO (SCM_INEXP (x), badx);
+      SCM_ASRTGO (SCM_INEXP (x), badx2);
       if (SCM_BIGP (y))
        return scm_makdbl (SCM_REALPART (x) - scm_big2dbl (y),
                           SCM_CPLXP (x) ? SCM_IMAG (x) : 0.0);
       SCM_ASRTGO (SCM_INEXP (y), bady);
 #else
-      SCM_ASRTGO (SCM_INEXP (x), badx);
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_INEXP (y), bady);
+      SCM_ASRTGO (SCM_INEXP (x), badx2);
+      SCM_ASRTGO (SCM_INEXP (y), bady);
 #endif
       if (SCM_CPLXP (x))
        {
@@ -3507,21 +3499,17 @@ scm_difference (x, y)
                             y, 0x0100);
 #endif
        }
-#ifndef SCM_RECKLESS
-      if (!(SCM_INEXP (y)))
+      if (!SCM_INEXP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_difference);
+         SCM_WTA_DISPATCH_2 (g_difference, x, y, SCM_ARGn, s_difference);
        }
-#endif
 #else
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_INEXP (y)))
+      if (!SCM_INEXP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_difference);
+         SCM_WTA_DISPATCH_2 (g_difference, x, y, SCM_ARGn, s_difference);
        }
-#endif
 #endif
       return scm_makdbl (SCM_INUM (x) - SCM_REALPART (y),
                         SCM_CPLXP (y) ? -SCM_IMAG (y) : 0.0);
@@ -3530,7 +3518,8 @@ scm_difference (x, y)
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_difference);
+      SCM_GASSERT2 (SCM_BIGP (x),
+                   g_difference, x, y, SCM_ARG1, s_difference);
       if (SCM_UNBNDP (y))
        {
          x = scm_copybig (x, !SCM_BIGSIGN (x));
@@ -3551,7 +3540,7 @@ scm_difference (x, y)
                             x, 0);
 #endif
        }
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_BIGP (y), bady);
+      SCM_ASRTGO (SCM_BIGP (y), bady);
       return (SCM_NUMDIGS (x) < SCM_NUMDIGS (y)) ?
        scm_addbig (SCM_BDIGITS (x), SCM_NUMDIGS (x), SCM_BIGSIGN (x),
                    y, 0x0100) :
@@ -3565,13 +3554,11 @@ scm_difference (x, y)
     }
   if (SCM_NINUMP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_BIGP (y)))
+      if (!SCM_BIGP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_difference);
+         SCM_WTA_DISPATCH_2 (g_difference, x, y, SCM_ARGn, s_difference);
        }
-#endif
       {
 #ifndef SCM_DIGSTOOBIG
        long z = scm_pseudolong (SCM_INUM (x));
@@ -3586,13 +3573,13 @@ scm_difference (x, y)
       }
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_difference);
+  SCM_GASSERT2 (SCM_INUMP (x), g_difference, x, y, SCM_ARG1, s_difference);
   if (SCM_UNBNDP (y))
     {
       x = -SCM_INUM (x);
       goto checkx;
     }
-  SCM_ASSERT (SCM_INUMP (y), y, SCM_ARG2, s_difference);
+  SCM_GASSERT2 (SCM_INUMP (y), g_difference, x, y, SCM_ARGn, s_difference);
 #endif
 #endif
   x = SCM_INUM (x) - SCM_INUM (y);
@@ -3614,24 +3601,16 @@ scm_difference (x, y)
 
 
 
-SCM_PROC1 (s_product, "*", scm_tc7_asubr, scm_product);
+SCM_GPROC1 (s_product, "*", scm_tc7_asubr, scm_product, g_product);
 
 SCM
-scm_product (x, y)
-     SCM x;
-     SCM y;
+scm_product (SCM x, SCM y)
 {
   if (SCM_UNBNDP (y))
     {
       if (SCM_UNBNDP (x))
        return SCM_MAKINUM (1L);
-#ifndef SCM_RECKLESS
-      if (!(SCM_NUMBERP (x)))
-       {
-       badx:
-         scm_wta (x, (char *) SCM_ARG1, s_product);
-       }
-#endif
+      SCM_GASSERT1 (SCM_NUMBERP (x), g_product, x, SCM_ARG1, s_product);
       return x;
     }
 #ifdef SCM_FLOATS
@@ -3639,7 +3618,11 @@ scm_product (x, y)
     {
       SCM t;
 #ifdef SCM_BIGDIG
-      SCM_ASRTGO (SCM_NIMP (x), badx);
+      if (!SCM_NIMP (x))
+       {
+       badx2:
+         SCM_WTA_DISPATCH_2 (g_product, x, y, SCM_ARG1, s_product);
+       }
       if (SCM_BIGP (x))
        {
          if (SCM_INUMP (y))
@@ -3662,9 +3645,9 @@ scm_product (x, y)
                               SCM_CPLXP (y) ? bg * SCM_IMAG (y) : 0.0);
          }
        }
-      SCM_ASRTGO (SCM_INEXP (x), badx);
+      SCM_ASRTGO (SCM_INEXP (x), badx2);
 #else
-      SCM_ASRTGO (SCM_NIMP (x) && SCM_INEXP (x), badx);
+      SCM_ASRTGO (SCM_INEXP (x), badx2);
 #endif
       if (SCM_INUMP (y))
        {
@@ -3682,21 +3665,17 @@ scm_product (x, y)
          y = t;
          goto bigreal;
        }
-#ifndef SCM_RECKLESS
       else if (!(SCM_INEXP (y)))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_product);
+         SCM_WTA_DISPATCH_2 (g_product, x, y, SCM_ARGn, s_product);
        }
-#endif
 #else
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_INEXP (y)))
+      if (!SCM_INEXP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_product);
+         SCM_WTA_DISPATCH_2 (g_product, x, y, SCM_ARGn, s_product);
        }
-#endif
 #endif
       if (SCM_CPLXP (x))
        {
@@ -3742,7 +3721,7 @@ scm_product (x, y)
        }
       SCM_ASRTGO (SCM_INEXP (y), bady);
 #else
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_INEXP (y), bady);
+      SCM_ASRTGO (SCM_INEXP (y), bady);
 #endif
     intreal:
       return scm_makdbl (SCM_INUM (x) * SCM_REALPART (y),
@@ -3752,7 +3731,7 @@ scm_product (x, y)
 #ifdef SCM_BIGDIG
   if (SCM_NINUMP (x))
     {
-      SCM_ASRTGO (SCM_NIMP (x) && SCM_BIGP (x), badx);
+      SCM_ASRTGO (SCM_BIGP (x), badx2);
       if (SCM_INUMP (y))
        {
          SCM t = x;
@@ -3760,20 +3739,18 @@ scm_product (x, y)
          y = t;
          goto intbig;
        }
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_BIGP (y), bady);
+      SCM_ASRTGO (SCM_BIGP (y), bady);
       return scm_mulbig (SCM_BDIGITS (x), SCM_NUMDIGS (x),
                         SCM_BDIGITS (y), SCM_NUMDIGS (y),
                         SCM_BIGSIGN (x) ^ SCM_BIGSIGN (y));
     }
   if (SCM_NINUMP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_BIGP (y)))
+      if (!SCM_BIGP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_product);
+         SCM_WTA_DISPATCH_2 (g_product, x, y, SCM_ARGn, s_product);
        }
-#endif
     intbig:
       if (SCM_INUM0 == x)
        return x;
@@ -3795,8 +3772,8 @@ scm_product (x, y)
       }
     }
 #else
-  SCM_ASRTGO (SCM_INUMP (x), badx);
-  SCM_ASSERT (SCM_INUMP (y), y, SCM_ARG2, s_product);
+  SCM_ASRTGO (SCM_INUMP (x), badx2);
+  SCM_GASSERT (SCM_INUMP (y), g_product, x, y, SCM_ARGn, s_product);
 #endif
 #endif
   {
@@ -3840,9 +3817,7 @@ scm_product (x, y)
 
 
 double
-scm_num2dbl (a, why)
-     SCM a;
-     const char *why;
+scm_num2dbl (SCM a, const char *why)
 {
   if (SCM_INUMP (a))
     return (double) SCM_INUM (a);
@@ -3859,24 +3834,30 @@ scm_num2dbl (a, why)
 }
 
 
-SCM_PROC1 (s_divide, "/", scm_tc7_asubr, scm_divide);
+SCM_GPROC1 (s_divide, "/", scm_tc7_asubr, scm_divide, g_divide);
 
 SCM
-scm_divide (x, y)
-     SCM x;
-     SCM y;
+scm_divide (SCM x, SCM y)
 {
 #ifdef SCM_FLOATS
   double d, r, i, a;
   if (SCM_NINUMP (x))
     {
-#ifndef SCM_RECKLESS
       if (!(SCM_NIMP (x)))
        {
-       badx:
-         scm_wta (x, (char *) SCM_ARG1, s_divide);
+         if (SCM_UNBNDP (y))
+           {
+             SCM_GASSERT0 (!SCM_UNBNDP (x),
+                           g_divide, scm_makfrom0str (s_divide), SCM_WNA, 0);
+           badx:
+             SCM_WTA_DISPATCH_1 (g_divide, x, SCM_ARG1, s_divide);
+           }
+         else
+           {
+           badx2:
+             SCM_WTA_DISPATCH_2 (g_divide, x, y, SCM_ARG1, s_divide);
+           }
        }
-#endif
       if (SCM_UNBNDP (y))
        {
 #ifdef SCM_BIGDIG
@@ -3946,7 +3927,7 @@ scm_divide (x, y)
          goto complex_div;
        }
 #endif
-      SCM_ASRTGO (SCM_INEXP (x), badx);
+      SCM_ASRTGO (SCM_INEXP (x), badx2);
       if (SCM_INUMP (y))
        {
          d = SCM_INUM (y);
@@ -3961,7 +3942,7 @@ scm_divide (x, y)
        }
       SCM_ASRTGO (SCM_INEXP (y), bady);
 #else
-      SCM_ASRTGO (SCM_NIMP (y) && SCM_INEXP (y), bady);
+      SCM_ASRTGO (SCM_INEXP (y), bady);
 #endif
       if (SCM_REALP (y))
        {
@@ -3991,21 +3972,17 @@ scm_divide (x, y)
       SCM_ASRTGO (SCM_NIMP (y), bady);
       if (SCM_BIGP (y))
        return scm_makdbl (SCM_INUM (x) / scm_big2dbl (y), 0.0);
-#ifndef SCM_RECKLESS
       if (!(SCM_INEXP (y)))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_divide);
+         SCM_WTA_DISPATCH_2 (g_divide, x, y, SCM_ARGn, s_divide);
        }
-#endif
 #else
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_INEXP (y)))
+      if (!SCM_INEXP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_divide);
+         SCM_WTA_DISPATCH_2 (g_divide, x, y, SCM_ARGn, s_divide);
        }
-#endif
 #endif
       if (SCM_REALP (y))
        return scm_makdbl (SCM_INUM (x) / SCM_REALPART (y), 0.0);
@@ -4021,7 +3998,8 @@ scm_divide (x, y)
   if (SCM_NINUMP (x))
     {
       SCM z;
-      SCM_ASSERT (SCM_NIMP (x) && SCM_BIGP (x), x, SCM_ARG1, s_divide);
+      SCM_GASSERT2 (SCM_BIGP (x),
+                   g_divide, x, y, SCM_ARG1, s_divide);
       if (SCM_UNBNDP (y))
        goto ov;
       if (SCM_INUMP (y))
@@ -4058,7 +4036,7 @@ scm_divide (x, y)
        }
       else
        {
-         SCM_ASRTGO (SCM_NIMP (y) && SCM_BIGP (y), bady);
+         SCM_ASRTGO (SCM_BIGP (y), bady);
          z = scm_divbigbig (SCM_BDIGITS (x), SCM_NUMDIGS (x),
                             SCM_BDIGITS (y), SCM_NUMDIGS (y),
                             SCM_BIGSIGN (x) ^ SCM_BIGSIGN (y), 3);
@@ -4075,24 +4053,22 @@ scm_divide (x, y)
     }
   if (SCM_NINUMP (y))
     {
-#ifndef SCM_RECKLESS
-      if (!(SCM_NIMP (y) && SCM_BIGP (y)))
+      if (!SCM_BIGP (y))
        {
        bady:
-         scm_wta (y, (char *) SCM_ARG2, s_divide);
+         SCM_WTA_DISPATCH_2 (g_divide, x, y, SCM_ARGn, s_divide);
        }
-#endif
       goto ov;
     }
 #else
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_divide);
+  SCM_GASSERT2 (SCM_INUMP (x), g_divide, x, y, SCM_ARG1, s_divide);
   if (SCM_UNBNDP (y))
     {
       if ((SCM_MAKINUM (1L) == x) || (SCM_MAKINUM (-1L) == x))
        return x;
       goto ov;
     }
-  SCM_ASSERT (SCM_INUMP (y), y, SCM_ARG2, s_divide);
+  SCM_GASSERT2 (SCM_INUMP (y), g_divide, x, y, SCM_ARGn, s_divide);
 #endif
 #endif
   {
@@ -4120,11 +4096,10 @@ scm_divide (x, y)
 
 
 #ifdef SCM_FLOATS
-SCM_PROC1 (s_asinh, "$asinh", scm_tc7_cxr, (SCM (*)()) scm_asinh);
+SCM_GPROC1 (s_asinh, "$asinh", scm_tc7_cxr, (SCM (*)()) scm_asinh, g_asinh);
 
 double
-scm_asinh (x)
-     double x;
+scm_asinh (double x)
 {
   return log (x + sqrt (x * x + 1));
 }
@@ -4132,11 +4107,10 @@ scm_asinh (x)
 
 
 
-SCM_PROC1 (s_acosh, "$acosh", scm_tc7_cxr, (SCM (*)()) scm_acosh);
+SCM_GPROC1 (s_acosh, "$acosh", scm_tc7_cxr, (SCM (*)()) scm_acosh, g_acosh);
 
 double
-scm_acosh (x)
-     double x;
+scm_acosh (double x)
 {
   return log (x + sqrt (x * x - 1));
 }
@@ -4144,11 +4118,10 @@ scm_acosh (x)
 
 
 
-SCM_PROC1 (s_atanh, "$atanh", scm_tc7_cxr, (SCM (*)()) scm_atanh);
+SCM_GPROC1 (s_atanh, "$atanh", scm_tc7_cxr, (SCM (*)()) scm_atanh, g_atanh);
 
 double
-scm_atanh (x)
-     double x;
+scm_atanh (double x)
 {
   return 0.5 * log ((1 + x) / (1 - x));
 }
@@ -4156,11 +4129,10 @@ scm_atanh (x)
 
 
 
-SCM_PROC1 (s_truncate, "truncate", scm_tc7_cxr, (SCM (*)()) scm_truncate);
+SCM_GPROC1 (s_truncate, "truncate", scm_tc7_cxr, (SCM (*)()) scm_truncate, g_truncate);
 
 double
-scm_truncate (x)
-     double x;
+scm_truncate (double x)
 {
   if (x < 0.0)
     return -floor (-x);
@@ -4169,11 +4141,10 @@ scm_truncate (x)
 
 
 
-SCM_PROC1 (s_round, "round", scm_tc7_cxr, (SCM (*)()) scm_round);
+SCM_GPROC1 (s_round, "round", scm_tc7_cxr, (SCM (*)()) scm_round, g_round);
 
 double
-scm_round (x)
-     double x;
+scm_round (double x)
 {
   double plus_half = x + 0.5;
   double result = floor (plus_half);
@@ -4184,31 +4155,30 @@ scm_round (x)
 
 
 
-SCM_PROC1 (s_exact_to_inexact, "exact->inexact", scm_tc7_cxr, (SCM (*)()) scm_exact_to_inexact);
+SCM_GPROC1 (s_exact_to_inexact, "exact->inexact", scm_tc7_cxr, (SCM (*)()) scm_exact_to_inexact, g_exact_to_inexact);
 
 double
-scm_exact_to_inexact (z)
-     double z;
+scm_exact_to_inexact (double z)
 {
   return z;
 }
 
 
-SCM_PROC1 (s_i_floor, "floor", scm_tc7_cxr, (SCM (*)()) floor);
-SCM_PROC1 (s_i_ceil, "ceiling", scm_tc7_cxr, (SCM (*)()) ceil);
-SCM_PROC1 (s_i_sqrt, "$sqrt", scm_tc7_cxr, (SCM (*)()) sqrt);
-SCM_PROC1 (s_i_abs, "$abs", scm_tc7_cxr, (SCM (*)()) fabs);
-SCM_PROC1 (s_i_exp, "$exp", scm_tc7_cxr, (SCM (*)()) exp);
-SCM_PROC1 (s_i_log, "$log", scm_tc7_cxr, (SCM (*)()) log);
-SCM_PROC1 (s_i_sin, "$sin", scm_tc7_cxr, (SCM (*)()) sin);
-SCM_PROC1 (s_i_cos, "$cos", scm_tc7_cxr, (SCM (*)()) cos);
-SCM_PROC1 (s_i_tan, "$tan", scm_tc7_cxr, (SCM (*)()) tan);
-SCM_PROC1 (s_i_asin, "$asin", scm_tc7_cxr, (SCM (*)()) asin);
-SCM_PROC1 (s_i_acos, "$acos", scm_tc7_cxr, (SCM (*)()) acos);
-SCM_PROC1 (s_i_atan, "$atan", scm_tc7_cxr, (SCM (*)()) atan);
-SCM_PROC1 (s_i_sinh, "$sinh", scm_tc7_cxr, (SCM (*)()) sinh);
-SCM_PROC1 (s_i_cosh, "$cosh", scm_tc7_cxr, (SCM (*)()) cosh);
-SCM_PROC1 (s_i_tanh, "$tanh", scm_tc7_cxr, (SCM (*)()) tanh);
+SCM_GPROC1 (s_i_floor, "floor", scm_tc7_cxr, (SCM (*)()) floor, g_i_floor);
+SCM_GPROC1 (s_i_ceil, "ceiling", scm_tc7_cxr, (SCM (*)()) ceil, g_i_ceil);
+SCM_GPROC1 (s_i_sqrt, "$sqrt", scm_tc7_cxr, (SCM (*)()) sqrt, g_i_sqrt);
+SCM_GPROC1 (s_i_abs, "$abs", scm_tc7_cxr, (SCM (*)()) fabs, g_i_abs);
+SCM_GPROC1 (s_i_exp, "$exp", scm_tc7_cxr, (SCM (*)()) exp, g_i_exp);
+SCM_GPROC1 (s_i_log, "$log", scm_tc7_cxr, (SCM (*)()) log, g_i_log);
+SCM_GPROC1 (s_i_sin, "$sin", scm_tc7_cxr, (SCM (*)()) sin, g_i_sin);
+SCM_GPROC1 (s_i_cos, "$cos", scm_tc7_cxr, (SCM (*)()) cos, g_i_cos);
+SCM_GPROC1 (s_i_tan, "$tan", scm_tc7_cxr, (SCM (*)()) tan, g_i_tan);
+SCM_GPROC1 (s_i_asin, "$asin", scm_tc7_cxr, (SCM (*)()) asin, g_i_asin);
+SCM_GPROC1 (s_i_acos, "$acos", scm_tc7_cxr, (SCM (*)()) acos, g_i_acos);
+SCM_GPROC1 (s_i_atan, "$atan", scm_tc7_cxr, (SCM (*)()) atan, g_i_atan);
+SCM_GPROC1 (s_i_sinh, "$sinh", scm_tc7_cxr, (SCM (*)()) sinh, g_i_sinh);
+SCM_GPROC1 (s_i_cosh, "$cosh", scm_tc7_cxr, (SCM (*)()) cosh, g_i_cosh);
+SCM_GPROC1 (s_i_tanh, "$tanh", scm_tc7_cxr, (SCM (*)()) tanh, g_i_tanh);
 
 struct dpair
 {
@@ -4221,10 +4191,7 @@ static void scm_two_doubles (SCM z1,
                             struct dpair * xy);
 
 static void
-scm_two_doubles (z1, z2, sstring, xy)
-     SCM z1, z2;
-     const char *sstring;
-     struct dpair *xy;
+scm_two_doubles (SCM z1, SCM z2, const char *sstring, struct dpair *xy)
 {
   if (SCM_INUMP (z1))
     xy->x = SCM_INUM (z1);
@@ -4237,14 +4204,14 @@ scm_two_doubles (z1, z2, sstring, xy)
       else
        {
 #ifndef SCM_RECKLESS
-         if (!(SCM_REALP (z1)))
+         if (!SCM_REALP (z1))
            badz1:scm_wta (z1, (char *) SCM_ARG1, sstring);
 #endif
          xy->x = SCM_REALPART (z1);
        }
 #else
       {
-       SCM_ASSERT (SCM_NIMP (z1) && SCM_REALP (z1), z1, SCM_ARG1, sstring);
+       SCM_ASSERT (SCM_REALP (z1), z1, SCM_ARG1, sstring);
        xy->x = SCM_REALPART (z1);
       }
 #endif
@@ -4267,7 +4234,7 @@ scm_two_doubles (z1, z2, sstring, xy)
        }
 #else
       {
-       SCM_ASSERT (SCM_NIMP (z2) && SCM_REALP (z2), z2, SCM_ARG2, sstring);
+       SCM_ASSERT (SCM_REALP (z2), z2, SCM_ARG2, sstring);
        xy->y = SCM_REALPART (z2);
       }
 #endif
@@ -4277,68 +4244,63 @@ scm_two_doubles (z1, z2, sstring, xy)
 
 
 
-SCM_PROC (s_sys_expt, "$expt", 2, 0, 0, scm_sys_expt);
-
-SCM
-scm_sys_expt (z1, z2)
-     SCM z1;
-     SCM z2;
+GUILE_PROC (scm_sys_expt, "$expt", 2, 0, 0,
+            (SCM z1, SCM z2),
+"")
+#define FUNC_NAME s_scm_sys_expt
 {
   struct dpair xy;
-  scm_two_doubles (z1, z2, s_sys_expt, &xy);
+  scm_two_doubles (z1, z2, FUNC_NAME, &xy);
   return scm_makdbl (pow (xy.x, xy.y), 0.0);
 }
+#undef FUNC_NAME
 
 
 
-SCM_PROC (s_sys_atan2, "$atan2", 2, 0, 0, scm_sys_atan2);
-
-SCM
-scm_sys_atan2 (z1, z2)
-     SCM z1;
-     SCM z2;
+GUILE_PROC (scm_sys_atan2, "$atan2", 2, 0, 0,
+            (SCM z1, SCM z2),
+"")
+#define FUNC_NAME s_scm_sys_atan2
 {
   struct dpair xy;
-  scm_two_doubles (z1, z2, s_sys_atan2, &xy);
+  scm_two_doubles (z1, z2, FUNC_NAME, &xy);
   return scm_makdbl (atan2 (xy.x, xy.y), 0.0);
 }
+#undef FUNC_NAME
 
 
 
-SCM_PROC (s_make_rectangular, "make-rectangular", 2, 0, 0, scm_make_rectangular);
-
-SCM
-scm_make_rectangular (z1, z2)
-     SCM z1;
-     SCM z2;
+GUILE_PROC (scm_make_rectangular, "make-rectangular", 2, 0, 0,
+            (SCM z1, SCM z2),
+"")
+#define FUNC_NAME s_scm_make_rectangular
 {
   struct dpair xy;
-  scm_two_doubles (z1, z2, s_make_rectangular, &xy);
+  scm_two_doubles (z1, z2, FUNC_NAME, &xy);
   return scm_makdbl (xy.x, xy.y);
 }
+#undef FUNC_NAME
 
 
 
-SCM_PROC (s_make_polar, "make-polar", 2, 0, 0, scm_make_polar);
-
-SCM
-scm_make_polar (z1, z2)
-     SCM z1;
-     SCM z2;
+GUILE_PROC (scm_make_polar, "make-polar", 2, 0, 0,
+            (SCM z1, SCM z2),
+"")
+#define FUNC_NAME s_scm_make_polar
 {
   struct dpair xy;
-  scm_two_doubles (z1, z2, s_make_polar, &xy);
+  scm_two_doubles (z1, z2, FUNC_NAME, &xy);
   return scm_makdbl (xy.x * cos (xy.y), xy.x * sin (xy.y));
 }
+#undef FUNC_NAME
 
 
 
 
-SCM_PROC (s_real_part, "real-part", 1, 0, 0, scm_real_part);
+SCM_GPROC (s_real_part, "real-part", 1, 0, 0, scm_real_part, g_real_part);
 
 SCM
-scm_real_part (z)
-     SCM z;
+scm_real_part (SCM z)
 {
   if (SCM_NINUMP (z))
     {
@@ -4346,15 +4308,14 @@ scm_real_part (z)
       SCM_ASRTGO (SCM_NIMP (z), badz);
       if (SCM_BIGP (z))
        return z;
-#ifndef SCM_RECKLESS
       if (!(SCM_INEXP (z)))
        {
        badz:
-         scm_wta (z, (char *) SCM_ARG1, s_real_part);
+         SCM_WTA_DISPATCH_1 (g_real_part, z, SCM_ARG1, s_real_part);
        }
-#endif
 #else
-      SCM_ASSERT (SCM_NIMP (z) && SCM_INEXP (z), z, SCM_ARG1, s_real_part);
+      SCM_GASSERT1 (SCM_INEXP (z),
+                   g_real_part, z, SCM_ARG1, s_real_part);
 #endif
       if (SCM_CPLXP (z))
        return scm_makdbl (SCM_REAL (z), 0.0);
@@ -4364,11 +4325,10 @@ scm_real_part (z)
 
 
 
-SCM_PROC (s_imag_part, "imag-part", 1, 0, 0, scm_imag_part);
+SCM_GPROC (s_imag_part, "imag-part", 1, 0, 0, scm_imag_part, g_imag_part);
 
 SCM
-scm_imag_part (z)
-     SCM z;
+scm_imag_part (SCM z)
 {
   if (SCM_INUMP (z))
     return SCM_INUM0;
@@ -4376,15 +4336,14 @@ scm_imag_part (z)
   SCM_ASRTGO (SCM_NIMP (z), badz);
   if (SCM_BIGP (z))
     return SCM_INUM0;
-#ifndef SCM_RECKLESS
   if (!(SCM_INEXP (z)))
     {
     badz:
-      scm_wta (z, (char *) SCM_ARG1, s_imag_part);
+      SCM_WTA_DISPATCH_1 (g_imag_part, z, SCM_ARG1, s_imag_part);
     }
-#endif
 #else
-  SCM_ASSERT (SCM_NIMP (z) && SCM_INEXP (z), z, SCM_ARG1, s_imag_part);
+  SCM_GASSERT1 (SCM_INEXP (z),
+               g_imag_part, z, SCM_ARG1, s_imag_part);
 #endif
   if (SCM_CPLXP (z))
     return scm_makdbl (SCM_IMAG (z), 0.0);
@@ -4393,11 +4352,10 @@ scm_imag_part (z)
 
 
 
-SCM_PROC (s_magnitude, "magnitude", 1, 0, 0, scm_magnitude);
+SCM_GPROC (s_magnitude, "magnitude", 1, 0, 0, scm_magnitude, g_magnitude);
 
 SCM
-scm_magnitude (z)
-     SCM z;
+scm_magnitude (SCM z)
 {
   if (SCM_INUMP (z))
     return scm_abs (z);
@@ -4405,15 +4363,14 @@ scm_magnitude (z)
   SCM_ASRTGO (SCM_NIMP (z), badz);
   if (SCM_BIGP (z))
     return scm_abs (z);
-#ifndef SCM_RECKLESS
   if (!(SCM_INEXP (z)))
     {
     badz:
-      scm_wta (z, (char *) SCM_ARG1, s_magnitude);
+      SCM_WTA_DISPATCH_1 (g_magnitude, z, SCM_ARG1, s_magnitude);
     }
-#endif
 #else
-  SCM_ASSERT (SCM_NIMP (z) && SCM_INEXP (z), z, SCM_ARG1, s_magnitude);
+  SCM_GASSERT1 (SCM_INEXP (z),
+               g_magnitude, z, SCM_ARG1, s_magnitude);
 #endif
   if (SCM_CPLXP (z))
     {
@@ -4426,11 +4383,10 @@ scm_magnitude (z)
 
 
 
-SCM_PROC (s_angle, "angle", 1, 0, 0, scm_angle);
+SCM_GPROC (s_angle, "angle", 1, 0, 0, scm_angle, g_angle);
 
 SCM
-scm_angle (z)
-     SCM z;
+scm_angle (SCM z)
 {
   double x, y = 0.0;
   if (SCM_INUMP (z))
@@ -4445,15 +4401,13 @@ scm_angle (z)
       x = (SCM_TYP16 (z) == scm_tc16_bigpos) ? 1.0 : -1.0;
       goto do_angle;
     }
-#ifndef SCM_RECKLESS
   if (!(SCM_INEXP (z)))
     {
     badz:
-      scm_wta (z, (char *) SCM_ARG1, s_angle);
+      SCM_WTA_DISPATCH_1 (g_angle, z, SCM_ARG1, s_angle);
     }
-#endif
 #else
-  SCM_ASSERT (SCM_NIMP (z) && SCM_INEXP (z), z, SCM_ARG1, s_angle);
+  SCM_GASSERT1 (SCM_INEXP (z), g_angle, z, SCM_ARG1, s_angle);
 #endif
   if (SCM_REALP (z))
     {
@@ -4467,11 +4421,10 @@ scm_angle (z)
 }
 
 
-SCM_PROC (s_inexact_to_exact, "inexact->exact", 1, 0, 0, scm_inexact_to_exact);
-
-SCM
-scm_inexact_to_exact (z)
-     SCM z;
+GUILE_PROC (scm_inexact_to_exact, "inexact->exact", 1, 0, 0, 
+            (SCM z),
+"")
+#define FUNC_NAME s_scm_inexact_to_exact
 {
   if (SCM_INUMP (z))
     return z;
@@ -4483,11 +4436,11 @@ scm_inexact_to_exact (z)
   if (!(SCM_REALP (z)))
     {
     badz:
-      scm_wta (z, (char *) SCM_ARG1, s_inexact_to_exact);
+      scm_wta (z, (char *) SCM_ARG1, FUNC_NAME);
     }
 #endif
 #else
-  SCM_ASSERT (SCM_NIMP (z) && SCM_REALP (z), z, SCM_ARG1, s_inexact_to_exact);
+  SCM_VALIDATE_REAL(1,z);
 #endif
 #ifdef SCM_BIGDIG
   {
@@ -4506,17 +4459,17 @@ scm_inexact_to_exact (z)
   return SCM_MAKINUM ((long) floor (SCM_REALPART (z) + 0.5));
 #endif
 }
+#undef FUNC_NAME
 
 
 
 #else /* ~SCM_FLOATS */
-SCM_PROC (s_trunc, "truncate", 1, 0, 0, scm_trunc);
+SCM_GPROC (s_trunc, "truncate", 1, 0, 0, scm_trunc, g_trunc);
 
 SCM
-scm_trunc (x)
-     SCM x;
+scm_trunc (SCM x)
 {
-  SCM_ASSERT (SCM_INUMP (x), x, SCM_ARG1, s_truncate);
+  SCM_GASSERT2 (SCM_INUMP (x), g_trunc, x, y, SCM_ARG1, s_truncate);
   return x;
 }
 
@@ -4529,8 +4482,7 @@ scm_trunc (x)
 /* d must be integer */
 
 SCM
-scm_dbl2big (d)
-     double d;
+scm_dbl2big (double d)
 {
   scm_sizet i = 0;
   long c;
@@ -4561,8 +4513,7 @@ scm_dbl2big (d)
 
 
 double
-scm_big2dbl (b)
-     SCM b;
+scm_big2dbl (SCM b)
 {
   double ans = 0.0;
   scm_sizet i = SCM_NUMDIGS (b);
@@ -4578,8 +4529,7 @@ scm_big2dbl (b)
 
 
 SCM
-scm_long2num (sl)
-     long sl;
+scm_long2num (long sl)
 {
   if (!SCM_FIXABLE (sl))
     {
@@ -4597,11 +4547,10 @@ scm_long2num (sl)
 }
 
 
-#ifdef LONGLONGS
+#ifdef HAVE_LONG_LONGS
 
 SCM
-scm_long_long2num (sl)
-     long_long sl;
+scm_long_long2num (long_long sl)
 {
   if (!SCM_FIXABLE (sl))
     {
@@ -4622,8 +4571,7 @@ scm_long_long2num (sl)
 
 
 SCM
-scm_ulong2num (sl)
-     unsigned long sl;
+scm_ulong2num (unsigned long sl)
 {
   if (!SCM_POSFIXABLE (sl))
     {
@@ -4642,155 +4590,183 @@ scm_ulong2num (sl)
 
 
 long
-scm_num2long (num, pos, s_caller)
-     SCM num;
-     char *pos;
-     const char *s_caller;
+scm_num2long (SCM num, char *pos, const char *s_caller)
 {
   long res;
+
   if (SCM_INUMP (num))
     {
       res = SCM_INUM (num);
       return res;
     }
-  SCM_ASRTGO (SCM_NIMP (num), errout);
+  SCM_ASRTGO (SCM_NIMP (num), wrong_type_arg);
 #ifdef SCM_FLOATS
   if (SCM_REALP (num))
     {
-      double u = SCM_REALPART (num);
+      volatile double u = SCM_REALPART (num);
+
       res = u;
-      if ((double) res == u)
-       {
-         return res;
-       }
+      if (res != u)
+       goto out_of_range;
+      return res;
     }
 #endif
 #ifdef SCM_BIGDIG
   if (SCM_BIGP (num))
     {
-      long oldres;
+      unsigned long oldres = 0;
       scm_sizet l;
-      res = 0;
-      oldres = 0;
+      /* can't use res directly in case num is -2^31.  */
+      unsigned long pos_res = 0;
+
       for (l = SCM_NUMDIGS (num); l--;)
        {
-         res = SCM_BIGUP (res) + SCM_BDIGITS (num)[l];
-         if (res < oldres)
-           goto errout;
-         oldres = res;
+         pos_res = SCM_BIGUP (pos_res) + SCM_BDIGITS (num)[l];
+         /* check for overflow.  */
+         if (pos_res < oldres) 
+           goto out_of_range;
+         oldres = pos_res;
        }
       if (SCM_TYP16 (num) == scm_tc16_bigpos)
-       return res;
+       {
+         res = pos_res;
+         if (res < 0)
+           goto out_of_range;
+       }
       else
-       return -res;
+       {
+         res = -pos_res;
+         if (res > 0)
+           goto out_of_range;
+       }
+      return res;
     }
 #endif
- errout:
-  scm_wta (num, pos, s_caller);
-  return SCM_UNSPECIFIED;
+ wrong_type_arg:
+  scm_wrong_type_arg (s_caller, (int) pos, num);
+ out_of_range:
+  scm_out_of_range (s_caller, num);
 }
 
 
 
-#ifdef LONGLONGS
+#ifdef HAVE_LONG_LONGS
 
 long_long
-scm_num2long_long (num, pos, s_caller)
-     SCM num;
-     char *pos;
-     const char *s_caller;
+scm_num2long_long (SCM num, char *pos, const char *s_caller)
 {
   long_long res;
+
   if (SCM_INUMP (num))
     {
-      res = SCM_INUM ((long_long) num);
+      res = SCM_INUM (num);
       return res;
     }
-  SCM_ASRTGO (SCM_NIMP (num), errout);
+  SCM_ASRTGO (SCM_NIMP (num), wrong_type_arg);
 #ifdef SCM_FLOATS
   if (SCM_REALP (num))
     {
       double u = SCM_REALPART (num);
-      if (((SCM_MOST_NEGATIVE_FIXNUM * 4) <= u)
-         && (u <= (SCM_MOST_POSITIVE_FIXNUM * 4 + 3)))
-       {
-         res = u;
-         return res;
-       }
+
+      res = u;
+      if ((res < 0 && u > 0) || (res > 0 && u < 0)) /* check for overflow. */
+       goto out_of_range;
+
+      return res;
     }
 #endif
 #ifdef SCM_BIGDIG
   if (SCM_BIGP (num))
     {
-      scm_sizet l = SCM_NUMDIGS (num);
-      SCM_ASRTGO (SCM_DIGSPERLONGLONG >= l, errout);
-      res = 0;
-      for (; l--;)
-       res = SCM_LONGLONGBIGUP (res) + SCM_BDIGITS (num)[l];
+      unsigned long long oldres = 0;
+      scm_sizet l;
+      /* can't use res directly in case num is -2^63.  */
+      unsigned long long pos_res = 0;
+
+      for (l = SCM_NUMDIGS (num); l--;)
+       {
+         pos_res = SCM_LONGLONGBIGUP (pos_res) + SCM_BDIGITS (num)[l];
+         /* check for overflow.  */
+         if (pos_res < oldres) 
+           goto out_of_range;
+         oldres = pos_res;
+       }
+      if (SCM_TYP16 (num) == scm_tc16_bigpos)
+       {
+         res = pos_res;
+         if (res < 0)
+           goto out_of_range;
+       }
+      else
+       {
+         res = -pos_res;
+         if (res > 0)
+           goto out_of_range;
+       }
       return res;
     }
 #endif
- errout:
-  scm_wta (num, pos, s_caller);
-  return SCM_UNSPECIFIED;
+ wrong_type_arg:
+  scm_wrong_type_arg (s_caller, (int) pos, num);
+ out_of_range:
+  scm_out_of_range (s_caller, num);
 }
 #endif
 
 
 
 unsigned long
-scm_num2ulong (num, pos, s_caller)
-     SCM num;
-     char *pos;
-     const char *s_caller;
+scm_num2ulong (SCM num, char *pos, const char *s_caller)
 {
   unsigned long res;
+
   if (SCM_INUMP (num))
     {
-      res = SCM_INUM ((unsigned long) num);
+      if (SCM_INUM (num) < 0)
+       goto out_of_range;
+      res = SCM_INUM (num);
       return res;
     }
-  SCM_ASRTGO (SCM_NIMP (num), errout);
+  SCM_ASRTGO (SCM_NIMP (num), wrong_type_arg);
 #ifdef SCM_FLOATS
   if (SCM_REALP (num))
     {
       double u = SCM_REALPART (num);
-      if ((0 <= u) && (u <= (unsigned long) ~0L))
-       {
-         res = u;
-         return res;
-       }
+
+      res = u;
+      if (res != u)
+       goto out_of_range;
+      return res;
     }
 #endif
 #ifdef SCM_BIGDIG
   if (SCM_BIGP (num))
     {
-      unsigned long oldres;
+      unsigned long oldres = 0;
       scm_sizet l;
+
       res = 0;
-      oldres = 0;
       for (l = SCM_NUMDIGS (num); l--;)
        {
          res = SCM_BIGUP (res) + SCM_BDIGITS (num)[l];
          if (res < oldres)
-           goto errout;
+           goto out_of_range;
          oldres = res;
        }
       return res;
     }
 #endif
- errout:
-  scm_wta (num, pos, s_caller);
-  return SCM_UNSPECIFIED;
+ wrong_type_arg:
+  scm_wrong_type_arg (s_caller, (int) pos, num);
+ out_of_range:
+  scm_out_of_range (s_caller, num);
 }
 
 
 #ifdef SCM_FLOATS
 #ifndef DBL_DIG
-static void add1 SCM_P ((double f, double *fsum));
 static void
-add1 (f, fsum)
-     double f, *fsum;
+add1 (double f, double *fsum)
 {
   *fsum = f + 1.0;
 }
@@ -4802,15 +4778,14 @@ add1 (f, fsum)
 void
 scm_init_numbers ()
 {
+  scm_add_feature("complex");
 #ifdef SCM_FLOATS
-  SCM_NEWCELL (scm_flo0);
+  scm_add_feature("inexact");
 #ifdef SCM_SINGLES
-  SCM_SETCAR (scm_flo0, scm_tc_flo);
-  SCM_FLO (scm_flo0) = 0.0;
+  SCM_NEWSMOB(scm_flo0,scm_tc_flo,NULL);
 #else
-  SCM_SETCDR (scm_flo0, (SCM) scm_must_malloc (1L * sizeof (double), "real"));
+  SCM_NEWSMOB(scm_flo0,scm_tc_dblr,scm_must_malloc (1L * sizeof (double), "real"));
   SCM_REAL (scm_flo0) = 0.0;
-  SCM_SETCAR (scm_flo0, scm_tc_dblr);
 #endif
 #ifdef DBL_DIG
   scm_dblprec = (DBL_DIG > 20) ? 20 : DBL_DIG;